/* ================================
   TRANSINDIA EXPRESS - MAIN STYLESHEET
   ================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-orange: #FF8C00;
    --primary-maroon: #8B1538;
    --dark-maroon: #6B0F2A;
    --light-orange: #FFA500;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #212529;
    --text-gray: #6C757D;
    --border-color: #DEE2E6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

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

.nav-menu li a.btn-contact {
    background: var(--primary-orange);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
}

.nav-menu li a.btn-contact:hover {
    background: var(--primary-maroon);
}

.nav-menu li a.btn-contact.active {
    background: var(--primary-maroon);
}

.nav-menu li a.btn-contact::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-maroon);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

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

.btn-cta {
    background: white;
    color: var(--primary-maroon);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

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

.btn-track:hover {
    background: var(--dark-maroon);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

/* ===== QUICK TRACK SECTION ===== */
.quick-track {
    background: var(--bg-light);
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.track-box {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.track-box h2 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.track-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

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

.track-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.track-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

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

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.8rem;
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: white;
    padding: 4rem 0;
}

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

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

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

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

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

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 5rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.about-highlights {
    margin-top: 2rem;
}

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

.highlight-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.mission-vision {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.why-choose {
    padding: 5rem 0;
}

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

.choose-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-orange);
    background: var(--bg-light);
    border-radius: 5px;
}

.choose-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.choose-item h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
}

.company-stats {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.stat-box i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-intro h2 {
    color: var(--primary-maroon);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.main-services {
    padding: 3rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-detail-content h2 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.service-features i {
    color: var(--primary-orange);
}

.additional-services {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.addon-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.addon-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
}

.service-process {
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    text-align: center;
    min-width: 180px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.step-info h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.process-arrow {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* ===== RATES PAGE ===== */
.rates-intro {
    padding: 4rem 0;
    text-align: center;
}

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

.intro-content h2 {
    color: var(--primary-maroon);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rate-calculator {
    background: var(--bg-light);
    padding: 4rem 0;
}

.calculator-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.calculator-box h2 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calculator-form {
    margin-top: 2rem;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

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

.btn-calculate {
    width: 100%;
    margin-top: 1rem;
}

.calculator-result {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.result-box {
    text-align: center;
}

.result-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 1rem 0;
}

.pricing-tables {
    padding: 5rem 0;
}

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

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-orange);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-orange);
    color: white;
    padding: 0.3rem 2rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pricing-icon i {
    font-size: 1.8rem;
}

.pricing-body {
    padding: 2rem;
}

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

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-unit {
    display: block;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.pricing-features i {
    color: var(--primary-orange);
}

.pricing-body .btn {
    width: 100%;
}

.weight-pricing {
    background: var(--bg-light);
    padding: 5rem 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.pricing-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table thead {
    background: var(--primary-maroon);
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
}

.pricing-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.contact-cell {
    text-align: center !important;
    color: var(--primary-orange);
    font-weight: 600;
}

.pricing-note {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-orange);
    border-radius: 5px;
    margin-top: 2rem;
}

.additional-charges {
    padding: 5rem 0;
}

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

.charge-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.charge-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.charge-item h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.bulk-discounts {
    background: var(--bg-light);
    padding: 5rem 0;
}

.discount-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.discount-box h2 {
    color: var(--primary-maroon);
    margin-bottom: 2rem;
}

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

.discount-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 5px;
}

.discount-item h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
}

/* ===== TRACKING PAGE ===== */
.tracking-section {
    padding: 4rem 0;
}

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

.tracking-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.tracking-header i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.tracking-header h2 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.tracking-form .input-group {
    display: flex;
    gap: 1rem;
}

.tracking-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.tracking-hint {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.tracking-loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.tracking-error {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

.tracking-error i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.tracking-results {
    margin-top: 2rem;
}

.shipment-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.summary-header h3 {
    color: var(--primary-maroon);
}

.status-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-item .label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.summary-item .value {
    color: var(--text-dark);
    font-size: 1.1rem;
}

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

.progress-tracker h3 {
    color: var(--primary-maroon);
    margin-bottom: 2rem;
}

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

.progress-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    z-index: 0;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.progress-step .step-icon {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.progress-step .step-icon i {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.progress-step.completed .step-icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.progress-step.completed .step-icon i {
    color: white;
}

.progress-step.active .step-icon {
    border-color: var(--primary-orange);
    animation: pulse 2s infinite;
}

.progress-step.active .step-icon i {
    color: var(--primary-orange);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-info h4 {
    color: var(--primary-maroon);
    margin-bottom: 0.3rem;
}

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

.tracking-history {
    margin-bottom: 2rem;
}

.tracking-history h3 {
    color: var(--primary-maroon);
    margin-bottom: 1.5rem;
}

.history-timeline {
    position: relative;
    padding-left: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.history-item {
    position: relative;
    padding-bottom: 2rem;
}

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

.history-date {
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 0.3rem;
}

.history-status {
    color: var(--text-dark);
    font-weight: 500;
}

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

.tracking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tracking-help {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.tracking-help h3 {
    color: var(--primary-maroon);
    margin-bottom: 1.5rem;
}

.help-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.help-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 0.3rem;
}

.help-item h4 {
    color: var(--primary-maroon);
    margin-bottom: 0.3rem;
}

.help-item a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0;
}

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

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro h2 {
    color: var(--primary-maroon);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.info-content a {
    color: var(--primary-orange);
    font-weight: 600;
}

.info-hours {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.social-connect {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.social-connect h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 5px;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-container h2 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.form-container p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.contact-form textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    resize: vertical;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    color: var(--primary-maroon);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.business-hours {
    padding: 4rem 0;
}

.business-hours h2 {
    color: var(--primary-maroon);
    text-align: center;
    margin-bottom: 2rem;
}

.hours-grid {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--primary-orange);
    font-weight: 600;
}

.hours-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    display: flex;
    gap: 1rem;
}

.hours-note i {
    color: var(--primary-orange);
    margin-top: 0.2rem;
}

/* ===== FAQ SECTION ===== */
.rates-faq,
.tracking-faq {
    padding: 5rem 0;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question h3 {
    color: var(--primary-maroon);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-orange);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.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-gray);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-maroon);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

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

.footer-section ul li a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-orange);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info i {
    margin-top: 0.3rem;
    color: var(--primary-orange);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .tracking-container {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 1rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .track-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tracking-actions {
        flex-direction: column;
    }
    
    .tracking-actions .btn {
        width: 100%;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .calculator-box,
    .tracking-box,
    .form-container {
        padding: 1.5rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
    }
}

/* ===== NEW RATE TABLES STYLES ===== */
.rate-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.rate-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 600px;
}

.rate-table thead {
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: white;
}

.rate-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.rate-table td {
    padding: 0.9rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.rate-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.rate-table tbody tr:hover {
    background: #fff3e0;
}

.rate-table td:first-child {
    font-weight: 600;
    color: var(--primary-maroon);
    text-align: left;
    padding-left: 1.5rem;
}

.rate-notes {
    background: #fff3cd;
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.rate-notes h4 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.rate-notes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.rate-notes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.rate-notes ul ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.rate-notes ul ul li::before {
    content: "•";
    color: var(--primary-maroon);
}

.rate-notes strong {
    color: var(--primary-maroon);
}

@media (max-width: 768px) {
    .rate-table {
        font-size: 0.85rem;
    }
    
    .rate-table th,
    .rate-table td {
        padding: 0.6rem 0.4rem;
    }
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Tablets and smaller */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Hero section */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Features grid */
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Quick track */
    .track-form {
        flex-direction: column;
    }
    
    .track-form input {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .track-form button {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Section padding */
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-icon,
    .service-icon,
    .stat-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info li {
        font-size: 0.85rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Tracking page responsiveness */
@media (max-width: 768px) {
    .tracking-box {
        padding: 1.5rem;
    }
    
    #trackingForm {
        flex-direction: column;
    }
    
    #trackingNumber {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .tracking-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .progress-tracker {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .progress-step {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .progress-line {
        display: none;
    }
    
    .history-item {
        padding: 1rem;
    }
}

/* Rates page responsiveness */
@media (max-width: 768px) {
    .rate-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .rate-table {
        min-width: 600px;
    }
    
    .rate-notes {
        padding: 1rem;
        font-size: 0.9rem;
    }
}


/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Tablets and below */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        flex-direction: column;
    }
    
    .service-detail.reverse {
        flex-direction: column;
    }
    
    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .about-intro {
        flex-direction: column;
    }
    
    .about-image,
    .about-text {
        width: 100%;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .track-form {
        flex-direction: column;
    }
    
    .track-form input {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .track-form button {
        width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .rate-table th,
    .rate-table td {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-menu li a {
        padding: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .feature-card,
    .service-card,
    .addon-card {
        min-height: auto;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Better mobile menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        z-index: 999;
    }

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

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }
}
