/* Transport Page Specific Styles */
body {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: white;
}

.transport-page-wrapper {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 70vh;
    padding-bottom: 100px;
    margin-bottom: -50px; /* Blend into footer */
    overflow: hidden; /* Prevent margin collapse */
}

.transport-hero {
    padding: 100px 20px 100px 20px;
    text-align: center;
    color: white;
}

.popular-routes {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.route-chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-chip:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: #f97316;
    transform: translateY(-2px);
}


.transport-container {
    max-width: 1200px;
    margin: -60px auto 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .transport-container {
        grid-template-columns: 1fr;
    }
}

.planner-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.planner-input-group {
    margin-bottom: 20px;
    position: relative;
}

.planner-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.planner-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.planner-input::placeholder {
    color: #94a3b8;
}

.planner-input:focus {
    border-color: #f97316;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.btn-search {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-top: 5px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #e2e8f0;
}

.autocomplete-item:hover {
    background: rgba(255,255,255,0.05);
}

.results-area {
    margin-top: 30px;
}

.trip-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.trip-leg {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.leg-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #f97316;
}

.cross-sell-widget {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 24px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: sticky;
    top: 100px;
}

.cross-sell-widget img {
    width: 100px;
    margin-bottom: 20px;
}

.btn-buy-esim {
    display: inline-block;
    background: white;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-buy-esim:hover {
    background: #f97316;
    color: white;
}

/* SEO Content Styles */
.seo-content-container {
    max-width: 1200px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
    color: #e2e8f0;
    line-height: 1.6;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
}

.seo-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.seo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.seo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.seo-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.seo-card p {
    color: #cbd5e1;
    font-size: 16px;
}

.faq-section h2 {
    color: #f97316;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-summary {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none; /* remove default arrow */
    position: relative;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 24px;
    color: #f97316;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.faq-summary h4 {
    color: white;
    font-size: 20px;
    margin: 0;
    flex-grow: 1;
}

.faq-chevron {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

details[open] .faq-chevron {
    transform: rotate(180deg);
    color: #f97316;
}

.faq-content {
    padding: 0 25px 25px 75px; /* align with text */
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-content {
        padding: 0 20px 20px 20px;
    }
}
