/* ==========================================================
MR SHOP WORLD - TRAVEL SERVICES
VERSION 1.0 - Premium App Look
========================================================== */

* { margin:0; padding:0; box-sizing:border-box; }

#travel-services-page {
    font-family: Inter, Segoe UI, Arial, sans-serif;
    background: #f0f9ff;
    color: #0f172a;
}

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

/* Hero */
.ts-hero {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    padding: 70px 0 50px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

.ts-badge {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255,255,255,0.18);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ts-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ts-hero p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search */
.ts-search-box {
    position: relative;
    max-width: 480px;
    margin: 0 auto 40px;
}

.ts-search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.6;
}

.ts-search-box input {
    width: 100%;
    padding: 15px 20px 15px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ts-search-box input:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 4px rgba(2,132,199,0.12);
}

/* Stats */
.ts-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

.ts-stat-box {
    background: #fff;
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.ts-stat-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0284c7;
    margin-bottom: 6px;
}

.ts-stat-box p {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

/* Section Title */
.ts-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.ts-section-title h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ts-section-title p {
    color: #64748b;
    font-size: 15px;
}

/* Grid */
.ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.ts-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ts-card.color-1 { background: linear-gradient(145deg, #0284c7, #0ea5e9); }
.ts-card.color-2 { background: linear-gradient(145deg, #059669, #10b981); }
.ts-card.color-3 { background: linear-gradient(145deg, #7c3aed, #a855f7); }
.ts-card.color-4 { background: linear-gradient(145deg, #ea580c, #f97316); }
.ts-card.color-5 { background: linear-gradient(145deg, #db2777, #ec4899); }
.ts-card.color-6 { background: linear-gradient(145deg, #0891b2, #06b6d4); }

.ts-icon {
    font-size: 42px;
    margin-bottom: 14px;
    transition: 0.35s;
}

.ts-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.ts-count {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.95;
}

.ts-btn {
    padding: 8px 18px;
    background: rgba(255,255,255,0.2);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.ts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.ts-card:hover .ts-icon {
    transform: scale(1.15);
}

.ts-card:hover .ts-btn {
    background: #fff;
    color: #111;
}

/* CTA */
.ts-cta {
    margin: 60px 0 40px;
    padding: 45px 30px;
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-radius: 24px;
    text-align: center;
    color: #fff;
}

.ts-cta h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ts-cta p {
    margin-bottom: 24px;
    opacity: 0.95;
}

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

.ts-cta-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.ts-cta-btn.primary {
    background: #fff;
    color: #0284c7;
}

.ts-cta-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.ts-cta-btn:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .ts-grid { grid-template-columns: repeat(3, 1fr); }
    .ts-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ts-hero h1 { font-size: 28px; }
    .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ts-card { padding: 22px 14px; }
    .ts-icon { font-size: 36px; }
    .ts-card h3 { font-size: 16px; }
    .ts-stats { grid-template-columns: repeat(2, 1fr); }
    .ts-cta { padding: 35px 20px; }
    .ts-cta h3 { font-size: 22px; }
}