/* ============================================================
   SONDAX TRAVEL - Home Page Styles
   ============================================================ */

/* ---- HERO ---- */
.st-hero { position: relative; height: 90vh; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 0; }
.st-hero-bg { position: absolute; inset: 0; }
.st-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.st-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,41,91,0.7) 0%, rgba(6,41,91,0.5) 40%, rgba(6,41,91,0.82) 100%); }
.st-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 16px; max-width: 820px; margin: 0 auto; }
.st-hero-title { font-size: clamp(2rem, 6vw, 4.5rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.st-hero-desc { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.st-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- CATEGORY CARDS ---- */
.st-categories-section { position: relative; margin-top: -64px; z-index: 20; padding-bottom: 24px; }
.st-categories-grid { display: flex; flex-wrap: nowrap; gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.st-categories-grid::-webkit-scrollbar { display: none; }
.st-categories-grid .st-category-card { flex: 1 1 0; min-width: 190px; }
.st-category-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--color-border); padding: 22px 20px; display: flex; align-items: center; gap: 16px; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.st-category-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.st-category-icon { width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.st-category-icon svg { width: 28px; height: 28px; }
.st-category-icon-blue { background: rgba(30,90,133,0.12); color: var(--color-secondary); }
.st-category-icon-amber { background: rgba(245,166,35,0.12); color: var(--color-accent); }
.st-category-icon-green { background: rgba(31,163,96,0.12); color: var(--color-success); }
.st-category-icon-red { background: rgba(220,38,38,0.12); color: #dc2626; }
.st-category-icon-teal { background: rgba(13,148,136,0.12); color: #0d9488; }
.st-category-title { font-weight: 700; font-size: 0.9375rem; color: var(--color-text); }
.st-category-desc { font-size: 0.75rem; color: var(--color-muted); margin-top: 2px; }
.st-category-count { font-size: 0.75rem; color: var(--color-secondary); font-weight: 600; margin-top: 4px; }

/* ---- DESTINATIONS CAROUSEL ---- */
.st-dest-carousel-wrap { position: relative; }
.st-dest-carousel { overflow: hidden; }
.st-dest-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.st-dest-item { flex: 0 0 calc(25% - 18px); }
.st-dest-card { position: relative; height: 288px; border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; }
.st-dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.st-dest-card:hover img { transform: scale(1.1); }
.st-dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
.st-dest-name { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.st-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 40px; height: 40px; background: #fff; border: 1px solid var(--color-border); border-radius: 50%; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; transition: all var(--transition); cursor: pointer; }
.st-carousel-btn:hover { background: var(--color-muted-bg); }
.st-carousel-btn:disabled { opacity: 0.3; cursor: default; }
.st-carousel-btn svg { width: 18px; height: 18px; }
.st-carousel-prev { left: -20px; }
.st-carousel-next { right: -20px; }

/* ---- STATS ---- */
.st-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.st-stat-icon { width: 36px; height: 36px; color: var(--color-accent); margin: 0 auto 12px; display: block; overflow: visible; }
.st-stat-value { font-size: 2.2rem; font-weight: 800; color: #fff; }
.st-stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 4px; }

/* ---- PARTNERS ---- */
.st-partners-label { text-align: center; font-size: 0.8125rem; font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 28px; }
.st-partners-carousel-wrap { position: relative; }
.st-partners-track { display: flex; gap: 14px; transition: transform 0.5s ease; }
.st-partner-item { flex: 0 0 calc(16.666% - 11.67px); display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); font-size: 0.8125rem; font-weight: 600; color: var(--color-muted); white-space: nowrap; }
.st-partner-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- FAST TRACK CARDS (home section) ---- */
.st-fast-track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.st-fast-track-card { display: flex; flex-direction: column; }
.st-fast-track-img { position: relative; height: 192px; overflow: hidden; }
.st-fast-track-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.st-card:hover .st-fast-track-img img { transform: scale(1.08); }
.st-fast-track-badge { position: absolute; top: 12px; right: 12px; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.st-fast-track-badge-premium { background: #f59e0b; color: #fff; }
.st-fast-track-badge-standard { background: rgba(255,255,255,0.88); color: #374151; border: 1px solid #d1d5db; }
.st-fast-track-badge-vip { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #e0c97f; border: 1px solid #c9a84c; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.st-fast-track-badge-elite { background: linear-gradient(135deg, #2c2c2c, #1a1a1a); color: #d4d4d8; border: 1px solid #a1a1aa; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.st-fast-track-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.st-fast-track-airport { font-size: 0.75rem; color: var(--color-secondary); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.st-fast-track-title { font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-fast-track-location { font-size: 0.8125rem; color: var(--color-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.st-fast-track-location svg { flex-shrink: 0; }
.st-fast-track-desc { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 16px; flex: 1; }
.st-fast-track-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.st-fast-track-code { display: flex; align-items: center; gap: 4px; font-size: 0.8125rem; color: var(--color-muted); }
.st-fast-track-price-wrap { text-align: right; }
.st-fast-track-price { font-size: 1.25rem; font-weight: 800; color: var(--color-text); display: block; }
.st-fast-track-per { font-size: 0.75rem; color: var(--color-muted); }

/* ---- BLOG CARDS (home preview) ---- */
.st-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.st-blog-card-img { height: 192px; overflow: hidden; }
.st-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.st-card:hover .st-blog-card-img img { transform: scale(1.05); }
.st-blog-card-body { padding: 20px; }
.st-blog-title { font-size: 1.0625rem; font-weight: 700; margin: 8px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-blog-excerpt { font-size: 0.875rem; color: var(--color-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: var(--color-muted); margin-top: 12px; }

/* Responsive */
@media (max-width: 1100px) {
    .st-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .st-dest-item { flex: 0 0 calc(33.333% - 16px); }
    .st-partner-item { flex: 0 0 calc(25% - 10.5px); }
    .st-fast-track-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .st-hero { height: 70vh; min-height: 420px; margin-top: 0; }
    .st-hero-title { margin-bottom: 14px; }
    .st-hero-desc { margin-bottom: 24px; }
    .st-hero-actions { flex-direction: column; align-items: center; gap: 10px; }
    .st-hero-actions .st-btn { width: 100%; max-width: 280px; justify-content: center; }
    .st-categories-section { margin-top: -32px; }
    .st-categories-grid { gap: 10px; }
    .st-categories-grid .st-category-card { flex: 0 0 200px; padding: 16px 14px; gap: 12px; }
    .st-category-icon { width: 44px; height: 44px; }
    .st-category-icon svg { width: 22px; height: 22px; }
    .st-category-title { font-size: 0.8125rem; }
    .st-category-desc { font-size: 0.6875rem; }
    .st-dest-item { flex: 0 0 calc(50% - 12px); }
    .st-dest-card { height: 220px; }
    .st-dest-name { font-size: 1.1rem; }
    .st-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .st-stat-value { font-size: 1.6rem; }
    .st-stat-label { font-size: 0.75rem; }
    .st-partner-item { flex: 0 0 calc(33.333% - 9.33px); padding: 10px 12px; font-size: 0.75rem; }
    .st-fast-track-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .st-fast-track-grid::-webkit-scrollbar { display: none; }
    .st-fast-track-grid > * { flex: 0 0 85%; scroll-snap-align: start; min-width: 0; }
    .st-fast-track-img { height: 160px; }
    .st-blog-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .st-blog-grid::-webkit-scrollbar { display: none; }
    .st-blog-grid > * { flex: 0 0 85%; scroll-snap-align: start; min-width: 0; }
    .st-blog-card-img { height: 160px; }
    .st-carousel-prev { left: -6px; }
    .st-carousel-next { right: -6px; }
    .st-carousel-btn { width: 34px; height: 34px; }
}
@media (max-width: 480px) {
    .st-hero { height: 60vh; min-height: 360px; }
    .st-categories-grid { gap: 8px; }
    .st-categories-grid .st-category-card { flex: 0 0 160px; padding: 12px 10px; gap: 10px; flex-direction: column; text-align: center; }
    .st-category-icon { width: 40px; height: 40px; margin: 0 auto; }
    .st-dest-item { flex: 0 0 calc(80% - 12px); }
    .st-dest-card { height: 180px; }
    .st-partner-item { flex: 0 0 calc(50% - 7px); }
    .st-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .st-stat-value { font-size: 1.4rem; }
    .st-fast-track-img { height: 140px; }
}
