/* ============================================
   POPULAR ROUTES V3.2 - COMPLETE CSS
   ============================================ */

/* ---------- SECTION 1: PREMIUM HERO ---------- */
.routes-hero-v3 {
    position: relative;
    padding: 80px 20px 90px;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 30%, #2d1b4e 60%, #1a0a2e 100%);
    text-align: center;
    overflow: hidden;
}

.routes-hero-overlay-v3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255,107,53,0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46,196,182,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,107,53,0.05) 0%, transparent 70%);
}

.routes-hero-pattern-v3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: routesHeroPattern 25s linear infinite;
}

@keyframes routesHeroPattern {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(40px) translateY(40px) rotate(2deg); }
}

.routes-hero-content-v3 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.routes-hero-badge-v3 {
    display: inline-block;
    padding: 8px 28px;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.05));
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 20px;
    animation: routesFadeDownV3 0.8s ease;
}

.routes-hero-content-v3 h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    animation: routesFadeDownV3 1s ease;
}

.routes-hero-content-v3 h1 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: routesGradientV3 5s ease-in-out infinite;
}

@keyframes routesGradientV3 {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.routes-hero-content-v3 p {
    font-size: 19px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: routesFadeDownV3 1.2s ease;
}

@keyframes routesFadeDownV3 {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

.routes-hero-stats-v3 {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 40px;
    animation: routesFadeUpV3 1.4s ease;
}

@keyframes routesFadeUpV3 {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.routes-stat-v3 {
    text-align: center;
}

.routes-stat-v3 span {
    display: block;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35, #F7C59F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.routes-stat-v3 label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

.routes-hero-btn-v3 {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
    animation: routesFadeUpV3 1.6s ease;
}

.routes-hero-btn-v3:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255,107,53,0.4);
    color: white;
}

/* ============================================
   SECTION: FEATURED ROUTES (NEW)
   ============================================ */
.featured-routes-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.featured-routes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-routes-header {
    text-align: center;
    margin-bottom: 45px;
}

.featured-badge {
    display: inline-block;
    padding: 6px 22px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.featured-routes-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.featured-routes-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-routes-header p {
    color: #666;
    font-size: 17px;
}

.featured-routes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.featured-route-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.featured-route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,107,53,0.12);
    border-color: #FF6B35;
}

.featured-route-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.featured-route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-route-card:hover .featured-route-image img {
    transform: scale(1.08);
}

.featured-route-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.featured-route-body {
    padding: 14px 16px 18px;
}

.featured-route-cities {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.featured-from,
.featured-to {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.featured-arrow {
    color: #FF6B35;
    font-size: 14px;
}

.featured-route-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.featured-route-meta span {
    font-size: 12px;
    color: #888;
}

.featured-book-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #FF6B35, #004E89);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
    color: white;
}

/* ============================================
   SECTION: OFFICE LOCATIONS (NEW)
   ============================================ */
.offices-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offices-header {
    text-align: center;
    margin-bottom: 45px;
}

.offices-badge {
    display: inline-block;
    padding: 6px 22px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.offices-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.offices-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offices-header p {
    color: #666;
    font-size: 17px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.office-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #FF6B35;
}

.office-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 10px;
}

.office-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.office-card p {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

.office-address {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.office-phone {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.office-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
    color: white;
}

/* ---------- SECTION 2: FILTER + FORM ---------- */
.routes-filter-section-v3 {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.routes-filter-container-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.routes-filter-left-v3 {
    padding-top: 10px;
}

.routes-filter-badge-v3 {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.routes-filter-left-v3 h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.routes-filter-left-v3 h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.routes-filter-left-v3 p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.routes-tabs-v3 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.routes-tab-v3 {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.routes-tab-v3:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

.routes-tab-v3.active {
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 25px rgba(255,107,53,0.3);
}

/* ---------- QUICK FORM ---------- */
.routes-filter-right-v3 {
    background: white;
    padding: 30px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.routes-quick-form-v3 h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.routes-form-row-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.routes-form-group-v3 {
    margin-bottom: 14px;
}

.routes-form-group-v3 label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.routes-form-group-v3 input,
.routes-form-group-v3 select {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
    color: #1a1a2e;
}

.routes-form-group-v3 input:focus,
.routes-form-group-v3 select:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
    background: white;
}

/* ---------- FIX: SELECT DROPDOWN TEXT CROPPING ---------- */
.routes-form-group-v3 select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    padding-left: 14px;
    cursor: pointer;
    min-height: 46px;
    height: auto;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.routes-form-group-v3 select:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
    background: white;
}

.routes-form-group-v3 select option {
    padding: 12px 16px;
    font-size: 14px;
    color: #1a1a2e;
    background: white;
    min-height: 40px;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
}

.routes-form-btn-v3 {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.routes-form-btn-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.3);
}

/* ---------- SECTION 3: ROUTES GRID ---------- */
.routes-grid-v3 {
    padding: 60px 0 80px;
    background: #f5f6fa;
}

.routes-grid-container-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---------- ROUTE CARD ---------- */
.routes-card-v3 {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    border: 1px solid #f0f0f0;
}

.routes-card-v3:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 70px rgba(255,107,53,0.12);
    border-color: #FF6B35;
}

.routes-card-image-v3 {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.routes-card-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.routes-card-v3:hover .routes-card-image-v3 img {
    transform: scale(1.08) rotate(-1deg);
}

.routes-card-badge-v3 {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 18px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(255,107,53,0.3);
}

.routes-card-type-v3 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 4px 16px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.routes-card-body-v3 {
    padding: 22px 22px 25px;
}

.routes-card-cities-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.routes-city-from-v3,
.routes-city-to-v3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.routes-arrow-v3 {
    color: #FF6B35;
    font-size: 18px;
    font-weight: 700;
}

.routes-card-meta-v3 {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.routes-card-meta-v3 span {
    font-size: 13px;
    color: #666;
}

.routes-card-price-v3 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.routes-amount-v3 {
    font-size: 28px;
    font-weight: 800;
    color: #004E89;
}

.routes-label-v3 {
    font-size: 13px;
    color: #999;
}

.routes-card-vehicles-v3 {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.routes-card-vehicles-v3 span {
    padding: 3px 14px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e8e8e8;
}

.routes-card-features-v3 {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.routes-card-features-v3 span {
    font-size: 13px;
    color: #25D366;
    font-weight: 600;
}

.routes-book-btn-v3 {
    display: block;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #FF6B35, #004E89);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.routes-book-btn-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.routes-book-btn-v3:hover::before {
    left: 100%;
}

.routes-book-btn-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.35);
    color: white;
}

/* ---------- SECTION 4: WHY CHOOSE ---------- */
.routes-why-v3 {
    padding: 70px 0;
    background: white;
}

.routes-why-container-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.routes-why-header-v3 {
    text-align: center;
    margin-bottom: 45px;
}

.routes-why-badge-v3 {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.routes-why-header-v3 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
}

.routes-why-header-v3 h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.routes-why-header-v3 p {
    color: #666;
    font-size: 16px;
    margin-top: 5px;
}

.routes-why-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.routes-why-card-v3 {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.routes-why-card-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #2EC4B6);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.routes-why-card-v3:hover::before {
    transform: scaleX(1);
}

.routes-why-card-v3:hover {
    background: white;
    border-color: #FF6B35;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255,107,53,0.1);
}

.routes-why-icon-v3 {
    font-size: 48px;
    display: block;
    margin-bottom: 14px;
}

.routes-why-card-v3 h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.routes-why-card-v3 p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.routes-why-tag-v3 {
    display: inline-block;
    padding: 3px 14px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- SECTION 5: TESTIMONIALS ---------- */
.routes-testimonials-v3 {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.routes-test-container-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.routes-test-header-v3 {
    text-align: center;
    margin-bottom: 45px;
}

.routes-test-badge-v3 {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #E71D36, #FF6B35);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.routes-test-header-v3 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
}

.routes-test-header-v3 h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.routes-test-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.routes-test-card-v3 {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.routes-test-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #FF6B35;
}

.routes-test-stars-v3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 12px;
}

.routes-test-card-v3 p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}

.routes-test-user-v3 strong {
    display: block;
    color: #1a1a2e;
    font-size: 15px;
}

.routes-test-user-v3 span {
    color: #666;
    font-size: 13px;
}

/* ---------- SECTION 6: CTA ---------- */
.routes-cta-v3 {
    padding: 65px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 30%, #2d1b4e 60%, #1a0a2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.routes-cta-v3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: routesGlowV3 8s ease-in-out infinite;
}

.routes-cta-v3::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,196,182,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: routesGlowV3 10s ease-in-out infinite reverse;
}

@keyframes routesGlowV3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.routes-cta-container-v3 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.routes-cta-container-v3 h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.routes-cta-container-v3 h2 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: routesGradientV3 5s ease-in-out infinite;
}

.routes-cta-container-v3 p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 30px;
}

.routes-cta-buttons-v3 {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.routes-cta-book-v3 {
    padding: 15px 40px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
}

.routes-cta-book-v3:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255,107,53,0.4);
    color: white;
}

.routes-cta-chat-v3 {
    padding: 15px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(37,211,102,0.3);
}

.routes-cta-chat-v3:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37,211,102,0.4);
    color: white;
}

/* ---------- FILTER ANIMATION ---------- */
.routes-card-v3 {
    transition: all 0.5s ease;
    animation: routesFadeInV3 0.6s ease forwards;
}

@keyframes routesFadeInV3 {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.routes-card-v3.hide {
    display: none;
}

.routes-card-v3.show {
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ---------- LAPTOP / TABLET ---------- */
@media (max-width: 1200px) {
    .featured-routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .routes-filter-container-v3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .routes-grid-container-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .routes-why-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .routes-test-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- TABLET / MOBILE ---------- */
@media (max-width: 768px) {
    .routes-hero-content-v3 h1 {
        font-size: 36px;
    }
    .routes-hero-stats-v3 {
        gap: 20px;
        flex-wrap: wrap;
    }
    .routes-stat-v3 span {
        font-size: 30px;
    }
    .routes-grid-container-v3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .routes-why-grid-v3 {
        grid-template-columns: 1fr;
    }
    .routes-test-grid-v3 {
        grid-template-columns: 1fr;
    }
    .routes-tabs-v3 {
        justify-content: center;
    }
    .routes-tab-v3 {
        padding: 8px 18px;
        font-size: 13px;
    }
    .routes-form-row-v3 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .routes-cta-container-v3 h2 {
        font-size: 30px;
    }
    .routes-cta-buttons-v3 {
        flex-direction: column;
        align-items: center;
    }
    .routes-cta-book-v3,
    .routes-cta-chat-v3 {
        width: 100%;
        text-align: center;
    }
    .routes-card-image-v3 {
        height: 180px;
    }
    .routes-city-from-v3,
    .routes-city-to-v3 {
        font-size: 16px;
    }
    .routes-amount-v3 {
        font-size: 24px;
    }
    .routes-filter-right-v3 {
        padding: 20px 16px;
    }
    .routes-form-group-v3 select {
        min-height: 42px;
        font-size: 14px;
        padding: 9px 34px 9px 12px;
    }
    .routes-form-group-v3 select option {
        font-size: 13px;
        padding: 10px 12px;
    }

    /* Featured Routes */
    .featured-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .featured-routes-header h2 {
        font-size: 30px;
    }
    .featured-route-image {
        height: 130px;
    }

    /* Offices */
    .offices-grid {
        grid-template-columns: 1fr 1fr;
    }
    .offices-header h2 {
        font-size: 30px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 480px) {
    .routes-hero-content-v3 h1 {
        font-size: 28px;
    }
    .routes-hero-content-v3 p {
        font-size: 15px;
    }
    .routes-tab-v3 {
        font-size: 12px;
        padding: 6px 14px;
    }
    .routes-card-body-v3 {
        padding: 16px 14px 18px;
    }
    .routes-card-image-v3 {
        height: 160px;
    }
    .routes-why-header-v3 h2 {
        font-size: 28px;
    }
    .routes-test-header-v3 h2 {
        font-size: 28px;
    }
    .routes-cta-container-v3 h2 {
        font-size: 24px;
    }
    .routes-filter-left-v3 h2 {
        font-size: 26px;
    }
    .routes-form-group-v3 select {
        min-height: 38px;
        font-size: 13px;
        padding: 7px 30px 7px 10px;
    }
    .routes-form-group-v3 select option {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Featured Routes */
    .featured-routes-grid {
        grid-template-columns: 1fr;
    }
    .featured-route-price {
        font-size: 14px;
        padding: 4px 12px;
    }

    /* Offices */
    .offices-grid {
        grid-template-columns: 1fr;
    }
    .office-card {
        padding: 20px 18px;
    }
    .office-card h3 {
        font-size: 19px;
    }

    /* Why Choose */
    .routes-why-grid-v3 {
        gap: 15px;
    }
    .routes-why-card-v3 {
        padding: 25px 18px;
    }

    /* Testimonials */
    .routes-test-grid-v3 {
        gap: 15px;
    }
    .routes-test-card-v3 {
        padding: 20px;
    }
}

/* ---------- EXTRA SMALL (360px and below) ---------- */
@media (max-width: 360px) {
    .routes-hero-content-v3 h1 {
        font-size: 24px;
    }
    .routes-hero-badge-v3 {
        font-size: 10px;
        padding: 5px 16px;
    }
    .routes-stat-v3 span {
        font-size: 24px;
    }
    .routes-tab-v3 {
        font-size: 10px;
        padding: 4px 10px;
    }
    .featured-route-cities {
        flex-wrap: wrap;
    }
    .featured-from,
    .featured-to {
        font-size: 12px;
    }
}