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

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
    }
    
    .form-control {
        min-height: 44px;
    }
    
    .package-select {
        min-height: 44px;
    }
    
    .btn-copy {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

/* Mobile and tablet settings */
@media (max-width: 991px) {
    body {
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    html {
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .container {
        max-width: 100% !important;
    }
}

/* Hide top header on mobile and tablet */
@media (max-width: 991px) {
    .header-top {
        display: none;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: #ffc107;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.language-selector:hover {
    background-color: #e9ecef;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.header-link:hover {
    color: #495057;
}

.header-main {
    padding: 20px 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.menu-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.menu-btn:hover {
    background-color: #f8f9fa;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #ffcc00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: width 0.2s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background-color: black;
    color: #fff;
}

.btn-primary:hover {
  
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #6c707d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.btn-warning {
    background-color: #ffc107;
    color: #000;
    border: 2px solid #ffc107;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-1px);
}

.btn-calculate {
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    padding: 15px 30px;
}

.btn-calculate:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffcc00 0%, #ffd633 100%);
    padding: 80px 0;
    text-align: center;
    color: #000;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Shipping Packages Section */
.shipping-packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.package-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover:not(.blocked) {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ffcc00;
}

.package-card.blocked {
    opacity: 0.6;
    background: #f8f9fa;
    border: 2px solid #dc3545;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffcc00 0%, #ffd633 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.package-card.blocked .package-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.package-icon i {
    font-size: 1.8rem;
    color: #000;
}

.package-card.blocked .package-icon i {
    color: #fff;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
}

.delivery-time {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.blocked-badge {
    background: #dc3545;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.package-features {
    margin-bottom: 25px;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #495057;
}

.package-features i {
    color: #28a745;
    font-size: 0.9rem;
}

.package-actions {
    text-align: center;
}

.package-select {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.package-select.selected {
    background-color: #28a745;
    color: #fff;
    transform: scale(1.02);
}

.package-select.selected:hover {
    background-color: #218838;
}

.fee-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.fee-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #856404;
    font-weight: 600;
}

.fee-alert i {
    color: #dc3545;
    font-size: 1.2rem;
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list li {
    padding: 5px 0;
    color: #856404;
    position: relative;
    padding-left: 20px;
}

.fee-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 5px;
}

/* Billing Section */
.billing-section {
    padding: 80px 0;
    background: #fff;
}

.billing-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.billing-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
}

.billing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.billing-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.billing-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffcc00;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-control.valid {
    border-color: #e9ecef;
}

.form-control.invalid {
    border-color: #dc3545;
}

select.form-control {
    cursor: pointer;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Billing Result */
.billing-result {
    background: #f8f9fa;
    padding: 30px;
    border-top: 1px solid #e9ecef;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.result-header h3 {
    font-size: 1.5rem;
    color: #495057;
}

.result-price {
    text-align: right;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
}

.result-details {
    margin-bottom: 25px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.item-label {
    font-weight: 600;
    color: #495057;
}

.item-value {
    color: #6c757d;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffcc00 0%, #ffd633 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: #000;
    display: inline-block;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome", sans-serif;
    font-weight: 900;
}

/* Fallback for when Font Awesome doesn't load */
.feature-icon i:before {
    content: attr(title);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.5rem;
}

/* Hide emoji fallback when Font Awesome loads */
.feature-icon i.fas:before {
    content: "";
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #495057;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #343a40;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffcc00;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-link:hover {
    background-color: #ffcc00;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

    .footer-bottom-links a:hover {
        color: #fff;
    }
}

/* Tracking Section */
.tracking-section {
    padding: 80px 0;
    background: #fff;
}

.tracking-container {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tracking-header {
    background:#d3d3d3;
    color: #000;
    padding: 40px;
    text-align: center;
}

.tracking-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.tracking-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.tracking-number-header {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tracking-number-header label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracking-number-header .tracking-number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tracking-number-header .tracking-code {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.tracking-number-header .btn-copy {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tracking-number-header .btn-copy:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.tracking-content {
    padding: 40px;
}

.tracking-journey {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    position: relative;
    border: 2px solid #000;
    overflow-x: hidden;
    width: 100%;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.step-icon.problem-icon {
    background: #dc3545;
    animation: pulse 2s infinite;
}

.step-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 5px;
}

.step-time {
    font-size: 0.8rem;
    color: #000;
    font-weight: 500;
}

.journey-line {
    height: 3px;
    background: #000;
    flex: 1;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.center-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #000;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.logo-icon i {
    font-size: 2rem;
    color: #fff;
}

.logo-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }
}

.tracking-details {
    margin-bottom: 10px;
}

.tracking-number {
    margin-bottom: 15px;
}

.tracking-number label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tracking-number-display {
    display: flex;
    align-items: left;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #000;
}

.tracking-code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
}

.btn-copy {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-copy:hover {
    background: #333;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #000;
}

.info-item i {
    color: #000;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: #000;
    font-size: 1rem;
}

.fee-warning {
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

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

.warning-header i {
    color: #000;
    font-size: 1.5rem;
}

.warning-header h4 {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.warning-content p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.fee-breakdown {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.fee-item.total {
    border-top: 2px solid #000;
    padding-top: 15px;
    margin-top: 10px;
    font-weight: 600;
}

.fee-label {
    color: #000;
    font-size: 1rem;
}

.fee-amount {
    font-weight: 600;
    color: #000;
}

.fee-amount.fee-extra {
    color: #000;
}

.fee-amount.fee-total {
    color: #000;
    font-size: 1.2rem;
}

.fee-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-pay-fee {
    background: #000;
    color: #fff;
}

.btn-pay-fee:hover {
    background: #333;
}

.btn-contact {
    background: #6c757d;
    color: #fff;
}

.btn-contact:hover {
    background: #5a6268;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
    .container {
        max-width: 720px;
    }
    
    .header-main-content {
        gap: 30px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .tracking-journey {
        gap: 20px;
        padding: 20px 15px;
    }
    
    .center-logos {
        gap: 30px;
        padding: 25px;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100% !important;
    }
    
    .header-main-content {
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .logo {
        flex: 1;
        text-align: center;
    }
    
    .header-top {
        display: none;
    }
    
    /* Ensure overflow-x is hidden on mobile */
    body, html {
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .tracking-journey {
        flex-direction: row;
        gap: 15px;
        padding: 20px 10px;
        overflow-x: hidden;
        justify-content: space-between;
        width: 100%;
    }
    
    .journey-step {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .journey-line {
        width: 20px;
        height: 3px;
        margin: 0 5px;
        flex-shrink: 0;
    }
    
    .center-logos {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .tracking-container {
        margin: 0 10px;
    }
    
    .tracking-content {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .billing-header {
        padding: 30px 20px;
    }
    
    .billing-form {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Medium */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
        max-width: 100% !important;
    }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .mobile-menu-content {
        max-width: 100%;
        padding: 15px;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 12px;
    }
    
    /* Ensure overflow-x is hidden on small mobile */
    body, html {
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .tracking-journey {
        padding: 15px 8px;
        gap: 12px;
        overflow-x: hidden;
        width: 100%;
    }
    
    .journey-step {
        min-width: 100px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-info h4 {
        font-size: 0.9rem;
    }
    
    .step-info p {
        font-size: 0.7rem;
    }
    
    .step-time {
        font-size: 0.6rem;
    }
    
    .center-logos {
        padding: 15px;
        gap: 20px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-icon i {
        font-size: 1.5rem;
    }
    
    .logo-item span {
        font-size: 0.9rem;
    }
    
    .tracking-content {
        padding: 20px 15px;
    }
    
    .tracking-number-display {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .delivery-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .fee-warning {
        padding: 20px 15px;
    }
    
    .warning-header h4 {
        font-size: 1.2rem;
    }
    
    .warning-content p {
        font-size: 1rem;
    }
    
    .fee-breakdown {
        padding: 15px;
    }
    
    .fee-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .billing-container {
        margin: 0 5px;
    }
    
    .billing-header {
        padding: 25px 15px;
    }
    
    .billing-header h2 {
        font-size: 2rem;
    }
    
    .billing-form {
        padding: 25px 15px;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

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

.mobile-menu-content {
    background: #fff;
    width: 100%;
    max-width: 400px;
    height: 100%;
    overflow: visible;
    padding: 20px;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
}

.mobile-menu-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.close-menu-btn:hover {
    background-color: #f8f9fa;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    display: block;
    padding: 15px;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    border-color: #000;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-container {
    text-align: center;
    color: #000;
    max-width: 400px;
    padding: 40px;
}

.loading-spinner {
    margin-bottom: 30px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.loading-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

.loading-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: #000;
    border-radius: 3px;
    width: 0%;
    transition: width 1s ease;
}


/* SMS Section Styles */
.sms-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.sms-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sms-header {
    background: #d3d3d3;
    color: #000;
    padding: 40px;
    text-align: center;
}

.sms-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sms-icon i {
    font-size: 2rem;
    color: #d3d3d3;
}

.sms-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sms-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.sms-content {
    padding: 40px;
}


.otp-form {
    margin-bottom: 30px;
}

.otp-form label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.otp-input {
    width: 100%;
    max-width: 300px;
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
    margin: 0 auto 30px;
    display: block;
    padding: 0 15px;
}

.otp-input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.otp-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-timer {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.otp-timer i {
    color: #ffc107;
}

.help-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.help-section h4 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.help-section p {
    color: #6c757d;
    margin-bottom: 15px;
}

.help-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.help-section li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.help-section li::before {
    content: '•';
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* SMS Error Page Styles */

.app-suggestion {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.app-suggestion p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.app-suggestion i {
    color: #ffc107;
    font-size: 1rem;
}

/* Error Notice */
.error-notice {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-notice i {
    color: #dc3545;
    font-size: 1.1rem;
}

.error-notice span {
    color: #721c24;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Alternative Verification Options */
.alternative-options {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.alternative-options h4 {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.verification-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-bank {
    background: black;
    color: white;
    border: 2px solid black;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}




/* Mobile Small */
@media (max-width: 375px) {
    .container {
        padding: 0 5px;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .tracking-journey {
        padding: 12px 5px;
        gap: 10px;
        overflow-x: hidden;
        width: 100%;
    }
    
    .journey-step {
        min-width: 90px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .center-logos {
        padding: 10px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon i {
        font-size: 1.3rem;
    }
    
    .billing-header h2 {
        font-size: 1.8rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Ensure overflow-x is hidden on small mobile */
    body, html {
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .sms-container {
        margin: 0 10px;
    }
    
    .sms-content {
        padding: 25px 20px;
    }
    
    .sms-header {
        padding: 30px 20px;
    }
    
    .sms-header h2 {
        font-size: 2rem;
    }
    
    .otp-input {
        max-width: 250px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .verification-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-bank {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Bank Approval Page Styles */
.bank-approval-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.approval-container {
    text-align: center;
    color: #000;
    max-width: 500px;
    padding: 40px;
}

.approval-icon {
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.approval-icon i {
    font-size: 3rem;
    color: #fff;
}

.approval-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.approval-container p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #6c757d;
}

.approval-progress {
    margin-bottom: 40px;
}

.progress-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.progress-ring {
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-fill {
    stroke: #000;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.approval-status {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.status-item.active {
    background: #e7f3ff;
    border-color: #000;
}

.status-item.completed {
    background: #d4edda;
    border-color: #28a745;
}

.status-item i {
    font-size: 1.2rem;
    color: #6c757d;
}

.status-item.active i {
    color: #000;
}

.status-item.completed i {
    color: #28a745;
}

.status-item span {
    font-weight: 500;
    color: #495057;
}

/* Approval Success Section */
.approval-success-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.success-header {
    background: #28a745;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 2rem;
    color: #28a745;
}

.success-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.success-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.success-content {
    padding: 40px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.success-message h3 {
    color: #155724;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.success-message p {
    color: #155724;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Approval Declined Section */
.approval-declined-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.declined-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.declined-header {
    background: #dc3545;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.declined-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.declined-icon i {
    font-size: 2rem;
    color: #dc3545;
}

.declined-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.declined-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.declined-content {
    padding: 40px;
}

.declined-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.declined-message h3 {
    color: #721c24;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.declined-message p {
    color: #721c24;
    margin-bottom: 20px;
}

.declined-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.declined-reasons li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #721c24;
}

.declined-reasons i {
    color: #dc3545;
    font-size: 1rem;
}

.declined-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bank Success Page */
.bank-success-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.payment-details {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.payment-details h4 {
    color: #004085;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

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

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #b8daff;
}

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

.detail-label {
    color: #004085;
    font-weight: 600;
}

.detail-value {
    color: #004085;
    font-weight: 500;
}

.success-status {
    color: #28a745 !important;
    font-weight: 700;
}

.next-steps {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.next-steps h4 {
    color: #155724;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
}

.step-item i {
    color: #28a745;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.step-item span {
    color: #155724;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Approval Failed Section */
.approval-failed-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.failed-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.failed-header {
    background: #dc3545;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.failed-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.failed-icon i {
    font-size: 2rem;
    color: #dc3545;
}

.failed-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.failed-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.failed-content {
    padding: 40px;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.error-message h3 {
    color: #721c24;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.error-message p {
    color: #721c24;
    margin-bottom: 20px;
}

.error-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-reasons li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #721c24;
}

.error-reasons i {
    color: #dc3545;
    font-size: 1rem;
}

.retry-options {
    margin-bottom: 30px;
}

.retry-options h4 {
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.option-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-tips {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 25px;
}

.help-tips h4 {
    color: #004085;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

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

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #b8daff;
}

.tip-item i {
    color: #004085;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.tip-item span {
    color: #004085;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .tracking-section,
    .billing-section,
    .features-section {
        padding: 40px 0;
    }
    
    .tracking-journey {
        gap: 20px;
        padding: 20px 15px;
    }
    
    .center-logos {
        gap: 20px;
        padding: 20px;
    }
}

/* Bank Approval Section in SMS Page */
.bank-approval-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
}

.bank-approval-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

.bank-approval-timer i {
    color: #ffc107;
    font-size: 1.2rem;
}

.bank-approval-timer span {
    color: #000;
    font-weight: 600;
}

.btn-bank-approval {
    background: #ffc107;
    color: #000;
    border: 2px solid #ffc107;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-bank-approval:hover:not(:disabled) {
    background: #e0a800;
    border-color: #e0a800;
    transform: translateY(-1px);
}

.btn-bank-approval:disabled {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Mobile responsive for bank approval section */
@media (max-width: 768px) {
    .bank-approval-section {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .bank-approval-timer {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .btn-bank-approval {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 1rem;
    }
}
