/* =============================================
   Coaching by May - Shared Styles
   ============================================= */

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

:root {
    --gold: #C9A227;
    --gold-glow: rgba(201, 162, 39, 0.4);
    --bg: #06060A;
    --card: #0C0C12;
    --surface: #12121A;
    --border: rgba(255,255,255,0.08);
    --text: #FFFFFF;
    --text-2: rgba(255,255,255,0.75);
    --text-3: rgba(255,255,255,0.5);
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* =============================================
   Navigation Links (Back, Blog, etc.)
   ============================================= */
.nav-link {
    position: fixed;
    top: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(12,12,18,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
}
.nav-link:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,162,39,0.15);
}
.nav-link:hover .nav-link-text {
    color: var(--gold);
}
.nav-link-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(201,162,39,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-link-icon i {
    font-size: 9px;
    color: var(--gold);
}
.nav-link-text {
    transition: color 0.3s;
}
.nav-link-arrow {
    font-size: 10px;
    color: var(--text-3);
    transition: all 0.3s;
}
.nav-link:hover .nav-link-arrow {
    color: var(--gold);
    transform: translateX(-3px);
}

/* Position variants */
.nav-link--right { right: 16px; }
.nav-link--left { left: 70px; } /* Clear language dropdown */

/* LTR adjustments */
html[dir="ltr"] .nav-link--right { right: auto; left: 70px; }
html[dir="ltr"] .nav-link--left { left: auto; right: 16px; }
html[dir="ltr"] .nav-link-arrow { transform: rotate(180deg); }
html[dir="ltr"] .nav-link:hover .nav-link-arrow {
    transform: rotate(180deg) translateX(-3px);
}

/* Legacy .back class - now uses nav-link styling */
.back {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(12,12,18,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
}
.back:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,162,39,0.15);
}
.back i {
    font-size: 10px;
    transition: transform 0.3s;
}
.back:hover i {
    transform: translateX(3px);
}
html[dir="ltr"] .back {
    right: auto;
    left: 70px;
}
html[dir="ltr"] .back i {
    transform: rotate(180deg);
}
html[dir="ltr"] .back:hover i {
    transform: rotate(180deg) translateX(3px);
}

@media (max-width: 480px) {
    .nav-link, .back {
        padding: 6px 12px;
        gap: 6px;
        font-size: 11px;
    }
    .nav-link-icon {
        width: 18px;
        height: 18px;
    }
    .nav-link-icon i {
        font-size: 8px;
    }
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.8);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(6,6,10,0.4) 0%,
        rgba(6,6,10,0.6) 50%,
        rgba(6,6,10,1) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 80px 24px 48px;
    max-width: 1000px;
}
.hero-portrait {
    position: relative;
    flex-shrink: 0;
}
.hero-portrait::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--gold) 0%, rgba(201,162,39,0.3) 50%, var(--gold) 100%);
    border-radius: 20px;
    z-index: -1;
}
.hero-portrait::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -2;
    filter: blur(20px);
}
.hero-portrait img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
}
.hero-text {
    flex: 1;
}
.hero-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}
.hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 30px;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.hero h1 span {
    display: block;
    color: var(--gold);
    text-shadow: 0 0 60px var(--gold-glow);
}
.hero-sub {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.6;
    max-width: 420px;
}

/* =============================================
   Container & Section
   ============================================= */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 48px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 32px;
}
.section-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}
.section-subtitle {
    font-size: 14px;
    color: var(--text-3);
    margin-top: 8px;
}

/* =============================================
   Service Cards
   ============================================= */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s;
    grid-column: span 2;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    border-radius: 0 14px 14px 0;
    opacity: 0.6;
}
.service-card:hover {
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-4px);
}
.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--card) 0%, rgba(201,162,39,0.08) 100%);
}
.service-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: var(--bg);
    background: var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.service-meta {
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 14px;
}
.service-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.service-label.gold {
    color: var(--gold);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}
.service-list.single {
    grid-template-columns: 1fr;
}
.service-list li {
    font-size: 12px;
    color: var(--text-2);
    padding-right: 14px;
    position: relative;
    line-height: 1.5;
}
.service-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 1px;
    transform: rotate(45deg);
    opacity: 0.6;
}
.service-note {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

/* =============================================
   Info Box
   ============================================= */
.info-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
}
.info-box::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 3px;
    height: 24px;
    background: var(--gold);
    border-radius: 3px 0 0 3px;
}
.info-box p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-2);
}
.info-box p + p {
    margin-top: 10px;
}
.info-box strong {
    color: var(--gold);
}

/* =============================================
   CTA Box
   ============================================= */
.cta-box {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 14px;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--bg);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201,162,39,0.35);
}

/* =============================================
   Expect Section (Poker page)
   ============================================= */
.expect-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
}
.expect-image {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
}
.expect-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.expect-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s;
}
.expect-card:hover {
    border-color: rgba(201,162,39,0.3);
    transform: translateX(-4px);
}
.expect-card h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 6px;
}
.expect-card p {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.5;
}

/* =============================================
   FAQ Grid - Collapsible Accordion
   ============================================= */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover,
.faq-item.active {
    border-color: rgba(201,162,39,0.3);
}
.faq-item.full {
    grid-column: span 2;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.faq-question:active {
    background: rgba(255,255,255,0.03);
}
.faq-question i:first-child {
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
}
.faq-question .faq-toggle {
    margin-right: auto;
    font-size: 10px;
    color: var(--text-3);
    transition: transform 0.2s;
}
.faq-item.active .faq-question .faq-toggle {
    transform: rotate(180deg);
    color: var(--gold);
}
.faq-answer {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 16px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 16px 16px;
}
.faq-answer strong {
    color: var(--gold);
}

/* =============================================
   Price Box
   ============================================= */
.price-box {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.price-tag {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.price-tag .amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}
.price-tag .label {
    font-size: 10px;
    color: var(--text-3);
    margin-top: 4px;
}
.price-tag.special {
    position: relative;
    border-color: rgba(201,162,39,0.5);
    background: linear-gradient(180deg, rgba(201,162,39,0.08) 0%, var(--surface) 100%);
}
.price-tag .badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--gold);
    color: var(--bg);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}
[dir="ltr"] .price-tag .badge {
    right: auto;
    left: 10px;
}
.price-tag .original {
    font-size: 13px;
    color: var(--text-3);
    text-decoration: line-through;
    margin-bottom: 2px;
    font-weight: 500;
}

/* =============================================
   Podcast Grid (Poker page)
   ============================================= */
.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.podcast-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}
.podcast-card:hover {
    border-color: rgba(201,162,39,0.3);
    transform: translateX(-4px);
}
.podcast-card.featured {
    grid-column: span 2;
}
.podcast-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.podcast-info {
    flex: 1;
    text-align: right;
}
.podcast-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 4px;
}
.podcast-name {
    font-size: 9px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.podcast-ep {
    font-size: 10px;
    color: var(--text-3);
}
.podcast-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    transition: color 0.3s;
}
.podcast-card:hover .podcast-title {
    color: var(--gold);
}
.podcast-desc {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.4;
}

/* =============================================
   Booking Section
   ============================================= */
.booking-section {
    padding: 48px 0 64px;
}
.booking-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking-info p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 20px;
}
.booking-info strong {
    color: var(--gold);
}
.booking-widget {
    margin-bottom: 20px;
}
.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}
.booking-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}
.booking-alternative p {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 10px;
}
.booking-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-2);
    transition: all 0.3s;
}
.booking-whatsapp:hover {
    border-color: rgba(37,211,102,0.4);
    color: var(--text);
}
.booking-whatsapp i {
    color: #25D366;
}

/* =============================================
   Floating Actions
   ============================================= */
/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.floating-wa i {
    font-size: 28px;
    color: #fff;
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hero animations - load immediately */
.hero-portrait {
    animation: fadeInScale 1s ease-out forwards;
}
.hero-portrait::before {
    animation: borderGlow 3s ease-in-out infinite;
}
.hero-text {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}
.hero-glow {
    animation: pulse 4s ease-in-out infinite;
}
.hero-label {
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Scroll reveal - hidden by default */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Enhanced hover transitions */
.service-card, .faq-item, .podcast-card, .expect-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover, .expect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(201,162,39,0.1);
}
.btn-gold {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-gold:hover::after {
    transform: translateX(100%);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201,162,39,0.4);
}
.hero-portrait img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-portrait:hover img {
    transform: scale(1.03);
}

/* =============================================
   Responsive Breakpoints
   ============================================= */
@media (max-width: 900px) {
    .hero { min-height: auto; }
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 48px;
        gap: 32px;
    }
    .hero-portrait img {
        width: 220px;
        height: 280px;
    }
    .hero-sub { margin: 0 auto; }
    .hero h1 { font-size: 38px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card.featured { grid-column: span 1; }
    .service-list { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
    .faq-item.full { grid-column: span 1; }
    .podcast-grid { grid-template-columns: 1fr; }
    .podcast-card.featured { grid-column: span 1; }
}
@media (max-width: 600px) {
    .hero-content { padding: 80px 20px 40px; gap: 24px; }
    .hero-portrait img {
        width: 180px;
        height: 230px;
    }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 14px; }
    .section { padding: 40px 0; }
    .section-title { font-size: 26px; }
    .price-box { flex-direction: column; }
    .crosslink { padding: 24px 16px; }
    .crosslink-content { flex-direction: column; gap: 12px; text-align: center; }
}

/* Cross-link Banner */
.crosslink {
    padding: 32px 24px;
    background: rgba(12,12,18,0.8);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.crosslink .container {
    max-width: 700px;
    margin: 0 auto;
}
.crosslink-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.crosslink-text {
    font-size: 14px;
    color: var(--text-2);
}
.crosslink-text strong {
    color: var(--text);
}
.crosslink-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    transition: all 0.3s;
}
.crosslink-btn:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}
.crosslink-btn i {
    font-size: 10px;
    transition: transform 0.3s;
}
.crosslink-btn:hover i {
    transform: translateX(-4px);
}

/* Media Strip (shared) */
.media-strip {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.media-label {
    font-size: 11px;
    color: var(--text-3);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.media-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.media-item:hover {
    opacity: 1;
}
.media-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}
.media-item span {
    font-size: 9px;
    color: var(--text-3);
    max-width: 80px;
    text-align: center;
    line-height: 1.3;
}

/* ── LTR Overrides (English) ── */
html[dir="ltr"] .service-list li {
    padding-right: 0;
    padding-left: 14px;
}
html[dir="ltr"] .service-list li::before {
    right: auto;
    left: 0;
}
html[dir="ltr"] .service-card::before {
    right: auto;
    left: 0;
    border-radius: 14px 0 0 14px;
}
html[dir="ltr"] .info-box::before {
    right: auto;
    left: 0;
    border-radius: 0 3px 3px 0;
}
html[dir="ltr"] .podcast-info {
    text-align: left;
}
html[dir="ltr"] .faq-question .faq-toggle {
    margin-right: 0;
    margin-left: auto;
}
html[dir="ltr"] .floating-wa {
    right: auto;
    left: 24px;
}
