/* Global Typography */
body, html {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, .display-1, .display-5, .display-6 { font-weight: 700; }
h2, h3, h4 { font-weight: 600; }

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}

/* ===== COMPACT MOBILE QUOTE FORM ===== */
.quote-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 16px;
    margin: 16px 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,123,255,0.1);
    max-width: 100%;
    overflow: hidden;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 16px;
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 3px 12px rgba(0,123,255,0.3);
}

.quote-icon i {
    color: white;
    font-size: 20px;
}

.quote-form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.quote-form-header p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.half {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #007bff;
    width: 14px;
    font-size: 12px;
}

.form-group input,
.form-group select {
    padding: 10px 12px;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
    transform: scale(1.01);
}

.quote-submit-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(37,211,102,0.3);
    min-height: 44px;
}

.quote-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.quote-submit-btn:active {
    transform: translateY(0);
}

.quote-submit-btn i {
    font-size: 16px;
}

.privacy-note {
    text-align: center;
    font-size: 11px;
    color: #6c757d;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
}

.privacy-note i {
    color: #28a745;
    font-size: 10px;
}

.quote-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.quote-success-modal {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 280px;
    margin: 20px;
    animation: slideIn 0.3s ease;
}

.quote-success-modal i {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 12px;
}

.quote-success-modal h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}

.quote-success-modal p {
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.4;
    font-size: 14px;
}

.quote-success-modal button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quote-success-modal button:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* Mobile Optimizations */
@media (max-width: 576px) {
    .quote-form-container {
        margin: 12px 6px;
        padding: 14px;
        border-radius: 14px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .quote-icon {
        width: 42px;
        height: 42px;
    }
    
    .quote-icon i {
        font-size: 18px;
    }
    
    .quote-form-header h3 {
        font-size: 1.15rem;
    }
    
    .quote-form-header p {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 9px 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .quote-submit-btn {
        padding: 11px 18px;
        font-size: 13px;
    }
    
    .privacy-note {
        font-size: 10px;
    }
    
    .quote-success-modal {
        max-width: 260px;
        padding: 20px 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .quote-form-container {
        margin: 10px 4px;
        padding: 12px;
    }
    
    .quote-form {
        gap: 10px;
    }
    
    .form-group {
        gap: 5px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
    }
    
    .quote-submit-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Focus and interaction improvements */
.form-group input:focus,
.form-group select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

.quote-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,211,102,0.3);
}

/* Loading state for submit button */
.quote-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== MODERN POPULAR ROUTES & RATES ===== */
.popular-routes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.routes-header {
    text-align: center;
    margin-bottom: 20px;
}

.routes-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.routes-header p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.routes-container {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.route-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,123,255,0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.route-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.route-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    line-height: 1.2;
}

.route-link {
    color: #007bff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.route-link:hover {
    color: #0056b3 !important;
    text-decoration: underline;
}

.route-distance {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.route-pricing {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.price-option {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,123,255,0.1);
}

.vehicle-type {
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
}

.price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #007bff;
}

.route-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature {
    font-size: 0.75rem;
    background: rgba(40,167,69,0.1);
    color: #28a745;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.local-routes-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 16px;
    padding: 16px;
    color: white;
}

.local-routes-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.local-routes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.local-route {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.local-destination {
    font-size: 0.8rem;
    font-weight: 500;
}

.local-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.routes-cta {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cta-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.cta-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 8px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn.whatsapp {
    background: rgba(255,255,255,0.2);
    color: white;
}

.cta-btn.call {
    background: white;
    color: #25d366;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .popular-routes-section {
        padding: 16px;
        border-radius: 16px;
        margin: 16px 0;
    }
    
    .routes-header h3 {
        font-size: 1.25rem;
    }
    
    .routes-container {
        gap: 12px;
    }
    
    .route-card {
        padding: 14px;
    }
    
    .route-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .route-info h4 {
        font-size: 0.95rem;
    }
    
    .price-option {
        padding: 6px 8px;
    }
    
    .local-routes-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .routes-cta {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .popular-routes-section {
        padding: 12px;
        margin: 12px 0;
    }
    
    .route-pricing {
        flex-direction: column;
        gap: 6px;
    }
    
    .price-option {
        padding: 8px 10px;
    }
    
    .feature {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .cta-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Desktop Enhancements */
@media (min-width: 769px) {
    .routes-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .local-routes-card {
        grid-column: span 2;
    }
    
    .local-routes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .routes-cta {
        padding: 20px;
    }
}

@media (min-width: 1200px) {
    .routes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== AWESOME MOBILE LOCAL TRIPS SECTION ===== */
.super-local-trips-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.super-local-trips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.local-trips-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.local-icon-container {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.local-icon-container i {
    font-size: 24px;
    color: #ffd700;
    animation: lightning 2s infinite;
}

.local-trips-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.local-trips-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.local-trips-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.local-trip-card {
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.local-trip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.local-trip-card:hover::before {
    left: 100%;
}

.local-trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

.trip-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.trip-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.trip-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.trip-detail {
    font-size: 0.8rem;
    opacity: 0.8;
}

.trip-pricing {
    margin-bottom: 12px;
}

.price-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 12px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}

.price-from {
    font-size: 0.7rem;
    font-weight: 500;
}

.price-amount {
    font-size: 1.1rem;
}

.trip-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.trip-features span {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.trip-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}

.trip-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.trip-addons {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
}

.trip-addons h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.addon-item {
    background: rgba(255,255,255,0.1);
    padding: 8px 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.addon-price {
    color: #ffd700;
    font-weight: 600;
}

/* ===== SPECTACULAR GET INSTANT QUOTE SECTION ===== */
.mega-quote-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 24px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.quote-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.quote-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.quote-particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.quote-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.quote-particle:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 2s;
}

.mega-quote-content {
    position: relative;
    z-index: 2;
}

.quote-main-header {
    text-align: center;
    margin-bottom: 24px;
    color: white;
}

.quote-main-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 16px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
}

.quote-main-icon i {
    font-size: 28px;
    color: #ffd700;
    animation: pulse 2s infinite;
}

.quote-main-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.quote-main-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.quote-methods-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.quote-method-card {
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 18px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.quote-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.method-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.call-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.method-time {
    font-size: 0.8rem;
    opacity: 0.8;
    color: white;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.method-features span {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
}

.method-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.method-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.method-btn:hover .btn-shine {
    left: 100%;
}

.quick-quote-form {
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
}

.quick-quote-form h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.quick-quote-form p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    text-align: center;
}

.mini-quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row-mini {
    display: flex;
    gap: 8px;
}

.form-row-mini input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.form-row-mini input::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-row-mini input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255,215,0,0.3);
}

.mini-submit-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.mini-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-btn 2s infinite;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
}

.trust-item {
    background: rgba(255,255,255,0.1);
    padding: 12px 8px;
    border-radius: 12px;
    color: white;
    font-size: 0.8rem;
}

.trust-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.trust-text {
    font-weight: 600;
}

.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.success-toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Animations */
@keyframes lightning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-btn {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 100px; height: 100px; opacity: 0; }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .super-local-trips-section,
    .mega-quote-section {
        margin: 16px 0;
        padding: 16px;
        border-radius: 16px;
    }
    
    .local-trips-grid,
    .quote-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .local-icon-container,
    .quote-main-icon {
        width: 50px;
        height: 50px;
    }
    
    .local-icon-container i,
    .quote-main-icon i {
        font-size: 20px;
    }
    
    .local-trips-header h4,
    .quote-main-header h3 {
        font-size: 1.2rem;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .form-row-mini {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .super-local-trips-section,
    .mega-quote-section {
        padding: 12px;
        margin: 12px 0;
    }
    
    .local-trip-card,
    .quote-method-card,
    .quick-quote-form {
        padding: 14px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .success-toast {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .success-toast.show {
        transform: translateY(0);
    }
}

/* Desktop Enhancements */
@media (min-width: 769px) {
    .local-trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addon-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 40vh;
    max-height: 40vh;
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 50vh;
        max-height: 50vh;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        margin-top: 0;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: -40px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: -40px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
        bottom: 20px;
    }

    .carousel-header .carousel-caption {
        bottom: 20%;
    }

    .carousel-header .carousel-caption h1,
    .carousel-header .carousel-caption h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0,0,0,.5);
    }

    .carousel-header .carousel-caption p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .carousel-header .carousel-caption .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/

/* ===== RESPONSIVE DESIGN ENHANCEMENTS ===== */

/* Mobile First - Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .display-1 {
        font-size: 2.5rem !important;
    }
    
    .display-4 {
        font-size: 1.8rem !important;
    }
    
    .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    
    .navbar-brand h1 {
        font-size: 1.5rem !important;
    }
    
    .section-title h1 {
        font-size: 2rem !important;
    }
    
    .carousel-header .carousel-caption {
        padding: 10px !important;
    }
    
    .carousel-header .carousel-caption .text-center {
        max-width: 100% !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 45vh;
        max-height: 45vh;
    }
    
    .display-1 {
        font-size: 3rem !important;
    }
    
    .carousel-caption h2 {
        font-size: 2.2rem !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 40vh;
        max-height: 40vh;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px !important;
    }
    
    .carousel-caption h2 {
        font-size: 2.5rem !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 40vh;
        max-height: 40vh;
    }
    
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 40vh;
        max-height: 40vh;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Ultra wide screens (1400px and up) */
@media (min-width: 1400px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 35vh;
        max-height: 35vh;
    }
    
    .container {
        max-width: 1320px;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        margin-top: 10px;
        border-radius: 10px;
        padding: 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        padding: 10px 15px !important;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--bs-primary);
        color: white !important;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve spacing for touch */
    .row > * {
        margin-bottom: 1rem;
    }
    
    /* Better text readability on mobile */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    p {
        margin-bottom: 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators,
    .btn {
        display: none !important;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 300px;
        max-height: 300px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .navbar-light .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 1) !important;
    }
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/

.card.h-100 {
  display: flex;
  flex-direction: column;
}
.card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.card-body .btn {
  margin-top: auto;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.mobile-safe-area-bottom {
        padding-bottom: env(safe-area-inset-bottom);
}

/* Avoid iOS 300ms click delay and input zoom */
html { -webkit-text-size-adjust: 100%; }
input, select, textarea { font-size: 16px; }

/* Improve tap targets globally on mobile */
@media (max-width: 768px) {
    .btn, .nav-link, .dropdown-item, a { min-height: 44px; }
    .navbar .dropdown-menu { font-size: 16px; }
        /* Mobile contact buttons - force single row */
        @media (max-width: 575.98px) {
            .mobile-top-bar .contact-actions {
                flex-wrap: nowrap !important;
                flex-direction: row !important;
                gap: 0.5rem;
                overflow: hidden;
            }
            .mobile-top-bar .contact-actions .mobile-contact-btn {
                min-width: 46%;
                max-width: 48%;
                flex: 1 1 0;
            }
            .mobile-top-bar .contact-actions .contact-btn-wrapper {
                padding: 8px 10px !important;
                min-width: unset !important;
            }
            .mobile-top-bar .contact-actions .contact-label {
                font-size: 10px !important;
            }
            .mobile-top-bar .contact-actions .contact-number {
                font-size: 11px !important;
            }
        }
}

/* ===== SPECTACULAR CAR RENTAL SERVICES SECTION ===== */
.premium-rental-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.premium-rental-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cars" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 2 2 L 18 2 L 18 18 L 2 18 Z" fill="none" stroke="rgba(0,102,204,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cars)"/></svg>');
    opacity: 0.5;
}

.rental-header {
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
    position: relative;
    z-index: 2;
}

.rental-main-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
    border: 3px solid #ffffff;
    animation: carFloat 3s infinite ease-in-out;
}

.rental-main-icon i {
    font-size: 36px;
    color: #ffffff;
}

.rental-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    text-shadow: none;
}

.rental-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.rental-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rental-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,102,204,0.1), transparent);
    transition: left 0.6s ease;
}

.rental-card:hover::before {
    left: 100%;
}

.rental-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,102,204,0.2);
    border-color: #0066cc;
}

.rental-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rental-card:hover .rental-image img {
    transform: scale(1.05);
}

.rental-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.rental-badge.budget {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: white;
}

.rental-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.rental-badge.premium {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.rental-badge.business {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.rental-badge.group {
    background: linear-gradient(135deg, #fd7e14, #e55100);
    color: white;
}

.rental-badge.luxury {
    background: linear-gradient(135deg, #343a40, #495057);
    color: #ff6b35;
}

.rental-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;
}

.vehicle-emoji {
    font-size: 3rem;
    background: rgba(255,255,255,0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.rental-content {
    padding: 25px;
    color: #333333;
}

.rental-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: #333333;
}

.rental-description {
    text-align: center;
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
    font-style: italic;
}

.rental-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.rental-features .feature {
    font-size: 0.8rem;
    background: #f8f9fa;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 15px;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
    font-weight: 600;
}

.rental-pricing {
    margin-bottom: 25px;
}

.price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.price-option {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #666666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-divider {
    font-size: 1rem;
    color: #999999;
    font-weight: 600;
}

.rental-buttons {
    display: flex;
    gap: 10px;
}

.btn-details,
.btn-book {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-details {
    background: #f8f9fa;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-details:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-book {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: white;
}

.rental-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.service-feature {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    color: #333333;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-feature:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,102,204,0.15);
    border-color: #0066cc;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 20px rgba(0,102,204,0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-feature h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
}

.service-feature p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.rental-cta {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #333333;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s infinite;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 20px rgba(0,102,204,0.2);
}

.cta-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.cta-text {
    flex: 1;
}

.cta-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
}

.cta-text p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-call,
.btn-enquire {
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-call {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: white;
}

.btn-enquire {
    background: #f8f9fa;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-enquire:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes carFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .premium-rental-section {
        padding: 40px 0;
    }
    
    .rental-header h2 {
        font-size: 1.8rem;
    }
    
    .rental-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .rental-main-icon {
        width: 60px;
        height: 60px;
    }
    
    .rental-main-icon i {
        font-size: 28px;
    }
    
    .rental-image {
        height: 160px;
    }
    
    .vehicle-emoji {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .rental-content {
        padding: 20px;
    }
    
    .rental-content h4 {
        font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    .rental-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .service-feature {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .rental-cta {
        padding: 25px 20px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-text h4 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-call,
    .btn-enquire {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .rental-card {
        border-radius: 20px;
    }
    
    .rental-content {
        padding: 16px;
    }
    
    .rental-features {
        gap: 6px;
    }
    
    .rental-features .feature {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .price-options {
        padding: 12px;
        gap: 10px;
    }
    
    .rental-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-details,
    .btn-book {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .rental-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-feature {
        padding: 16px 12px;
    }
    
    .rental-cta {
        padding: 20px 15px;
    }
}

/* Desktop Enhancements */
@media (min-width: 1200px) {
    .rental-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rental-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ======================= DISCOVER AMAZING TOURS SECTION ======================= */
.discover-tours-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.discover-tours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
  pointer-events: none;
}

.discover-tours-section .container {
  position: relative;
  z-index: 1;
}

/* Section Header Styles */
.tours-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tours-main-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.tours-main-icon i {
  font-size: 32px;
  color: white;
}

.tours-subtitle {
  color: #667eea;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.tours-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tours-description {
  font-size: 18px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Amazing Tours Grid */
.amazing-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Tour Package Card */
.tour-package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Tour Image Container */
.tour-image-container {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-package-card:hover .tour-image {
  transform: scale(1.1);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

/* Tour Badges */
.tour-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-badge.popular {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tour-badge.authentic {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tour-badge.premium {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tour-badge.spiritual {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.tour-badge.adventure {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #2d3748;
}

.tour-badge.pilgrimage {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  color: #2d3748;
}

/* Tour Duration */
.tour-duration {
  background: rgba(255, 255, 255, 0.95);
  color: #2d3748;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-duration i {
  font-size: 12px;
}

/* Tour Card Content */
.tour-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.tour-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  line-height: 1.3;
  flex: 1;
  margin-right: 15px;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: #fbbf24;
  white-space: nowrap;
}

.tour-rating span {
  color: #718096;
  margin-left: 5px;
  font-weight: 600;
}

/* Tour Highlights */
.tour-highlights {
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
}

.highlight-item i {
  color: #667eea;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Tour Features */
.tour-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature {
  background: #f7fafc;
  color: #4a5568;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

/* Tour Pricing */
.tour-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.price-section {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 12px;
  color: #718096;
  margin-bottom: 2px;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #059669;
}

.price-unit {
  font-size: 12px;
  color: #718096;
}

.tour-book-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.tour-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  color: white;
  text-decoration: none;
}

/* Tour Benefits Section */
.tour-benefits-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 50px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tour-benefits-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.benefit-icon i {
  font-size: 24px;
  color: white;
}

.benefit-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

/* Tours CTA Section */
.tours-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  text-align: center;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.cta-content-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-icon-section i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-text-section h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text-section p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.cta-buttons-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-call-btn, .cta-contact-btn {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.cta-call-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-call-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.cta-contact-btn {
  background: white;
  color: #667eea;
  border: 2px solid white;
}

.cta-contact-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #667eea;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .discover-tours-section {
    padding: 60px 0;
  }

  .tours-main-title {
    font-size: 2rem;
  }

  .tours-description {
    font-size: 16px;
  }

  .amazing-tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .tour-image-container {
    height: 220px;
  }

  .tour-card-content {
    padding: 20px;
  }

  .tour-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tour-header h4 {
    margin-right: 0;
  }

  .tour-pricing {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .tour-book-btn {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tour-benefits-section h3 {
    font-size: 1.5rem;
  }

  .cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .cta-text-section h4 {
    font-size: 20px;
  }

  .cta-text-section p {
    font-size: 14px;
  }

  .cta-buttons-section {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .tours-main-title {
    font-size: 1.75rem;
  }

  .amazing-tours-grid {
    grid-template-columns: 1fr;
  }

  .tour-features {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons-section {
    flex-direction: column;
  }

  .tours-cta-section {
    padding: 30px 20px;
  }
}