/* Cargo & Freight Page Specific Styles */

/* Premium Cargo Hero */
.cargo-hero-section {
    position: relative;
    height: 45vh;
    min-height: 350px;
    background: linear-gradient(rgba(1, 27, 71, 0.7), rgba(1, 27, 71, 0.7)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.cargo-hero-content h1 {
    font-size: 39px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: auto;
    color: #E9A301;
}

.cargo-hero-content h1 span {
    color: #E9A301;
}

/* V11 Style Calculator adapted for Cargo */
.calculator-container-cargo {
    margin-top: -120px;
    padding-bottom: 60px;
    position: relative;
    z-index: 100;
    padding-left: 15px;
    padding-right: 15px;
}

.booking-card-v11 {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 756px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #eee;
}

.tab-nav-v11 {
    display: flex;
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
}

.tab-btn-v11 {
    padding: 20px 30px;
    border: none;
    background: none;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: auto;
}

.tab-btn-v11.active {
    color: #011b47;
    border-bottom: 3px solid #E9A301;
}

.card-body-v11 {
    padding: 40px;
}

.form-title-green {
    color: #008b8b;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.form-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

.label-v11 {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.select-v11, .input-v11 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.form-row-v11 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-box-v11 {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-pre-v11 {
    background: #f8fafc;
    padding: 12px 15px;
    border-right: 1px solid #ccc;
    font-weight: 600;
    color: #666;
}

.mobile-in-v11 {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
}

.btn-submit-green {
    width: 100%;
    background: #011b47;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    font-family: auto;
}

.btn-submit-green:hover {
    background: #011b47;
}

.pane-v11 {
    display: none;
}

.pane-v11.active {
    display: block;
}

/* Content Sections Styling */
.content-section {
    padding: 60px 0;
    background: white;
}

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

.section-title {
    font-size: 2.2rem;
    color: #011B47;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: auto;
}

.section-desc {
    text-align: center;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.option-card {
    background: #f9fbff;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #E9A301;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.option-card i {
    font-size: 2.5rem;
    color: #011B47;
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 1.4rem;
    color: #011B47;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.benefit-item i {
    color: #011B47;
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.cargo-info-box {
    background: #011B47;
    color: white;
    padding: 50px;
    border-radius: 30px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cargo-info-box h2 {
    color: #E9A301;
    margin-bottom: 20px;
}

.cargo-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cargo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.cargo-item h4 {
    margin-bottom: 10px;
    color: #E9A301;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.7;
}

.partner-name {
    font-weight: 800;
    color: #999;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* PAN India Section */
.pan-india-section {
    background: #f8fafc;
    padding: 80px 0;
    border-radius: 50px;
    margin: 40px 0;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.network-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.network-card i {
    font-size: 2rem;
    color: #E9A301;
    margin-bottom: 15px;
}

.network-card h4 {
    color: #011B47;
    margin-bottom: 10px;
    font-weight: 800;
}

/* Pricing Table Styling */
.pricing-table-v11 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.pricing-table-v11 th {
    background: #011B47;
    color: white;
    padding: 20px;
    font-weight: 700;
    text-align: left;
}

.pricing-table-v11 td {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-table-v11 tr:last-child td {
    border-bottom: none;
}

.rate-badge {
    background: #fff8e6;
    color: #b37400;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 800;
}

.cta-final {
    background: linear-gradient(135deg, #011B47 0%, #0a2d6b 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 50px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #E9A301;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #E9A301;
    color: #011B47;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    margin-top: 30px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(233,163,1,0.2);
}

.btn-call-now:hover {
    background: white;
    transform: scale(1.05);
}

.values-reviews-section {
    margin-top: 100px;
    padding: 100px 20px;
    background: linear-gradient(rgba(1, 27, 71, 0.9), rgba(1, 27, 71, 0.9)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.core-values p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.reviews-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.google-logo { width: 80px; }
.stars { color: #f1c40f; }

.review-content {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviewer-name h5 { color: #E9A301; font-size: 1.2rem; margin: 0; }
.reviewer-name p { font-size: 0.9rem; opacity: 0.7; }

.flex-wrap { display: flex; flex-wrap: wrap; }
.gap-1rem { gap: 1rem; }
.w-auto { width: auto !important; }
.p-1-2rem { padding: 1.2rem 2rem; }

.btn-primary-v2 { background: #E9A301; color: #011B47; text-decoration: none; border-radius: 8px; font-weight: 700; }
.btn-secondary-v2 { background: transparent; border: 1px solid white; color: white; text-decoration: none; border-radius: 8px; font-weight: 700; }

@media (max-width: 768px) {
    .form-row-v11 { grid-template-columns: 1fr; }
    .cargo-hero-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .cargo-info-box { padding: 30px 20px; }
    .pricing-table-v11 { font-size: 0.85rem; }
    .cta-final h2 { font-size: 2rem; }
    .cta-final { padding: 60px 15px; border-radius: 30px; }
    
    .values-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .google-header { justify-content: center; }
    .core-values p { font-size: 1.2rem; }
    .reviews-container { padding: 25px; }
    .flex-wrap { justify-content: center; }
    
    .calculator-container-cargo { margin-top: -80px; }
    .tab-btn-v11 { padding: 15px 10px; font-size: 0.8rem; flex: 1; justify-content: center; }
    .card-body-v11 { padding: 25px 15px; }
}
