@charset "UTF-8";
/* ============================================================
   ATHIR SOUND V2.0 — Premium Design System
   ============================================================ */

/* ── 1. Design Tokens ── */
:root {
    --bg-primary: #0A0E14;
    --bg-secondary: #0F1520;
    --bg-card: #111822;
    --bg-elevated: #161E2A;
    --accent: #14B8A6;
    --accent-hover: #0D9488;
    --accent-glow: rgba(20,184,166,0.18);
    --gold: #F59E0B;
    --gold-hover: #D97706;
    --gold-glow: rgba(245,158,11,0.14);
    --text-primary: #E8E8EA;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(20,184,166,0.10);
    --border-strong: rgba(20,184,166,0.22);
    --card-shadow: 0 8px 32px rgba(0,0,0,0.28);
    --glass-bg: rgba(15,21,32,0.72);
    --glass-border: rgba(20,184,166,0.08);
    --glass-blur: blur(18px);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;
    --font: 'Cairo', sans-serif;
    --container: 1400px;
}

/* Light mode overrides */
body:not(.dark-mode) {
    --bg-primary: #F0FAFA;
    --bg-secondary: #E8F5F4;
    --bg-card: #FFFFFF;
    --bg-elevated: #F0FAFA;
    --text-primary: #0A0E14;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border: rgba(10,14,20,0.07);
    --border-strong: rgba(10,14,20,0.14);
    --card-shadow: 0 8px 32px rgba(0,0,0,0.06);
    --glass-bg: rgba(255,255,255,0.78);
    --glass-border: rgba(20,184,166,0.10);
    --accent-glow: rgba(20,184,166,0.10);
    --gold-glow: rgba(245,158,11,0.08);
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { min-height: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, button, input, select, textarea { font-family: var(--font); color: var(--text-primary); }

body {
    margin: 0; padding: 0;
    background: var(--bg-primary);
    display: flex; justify-content: center; align-items: stretch;
    min-height: 100vh; min-height: 100dvh;
    overflow: hidden;
    transition: background-color var(--duration-normal) var(--ease);
    font-size: 15px; line-height: 1.7;
}

/* Audio download prevention */
audio::-webkit-media-controls-download-button,
audio::-internal-media-controls-download-button { display: none !important; }
#IDMVideoDownloadPanel, #IDMDownloadPanel, [id*="IDM"], [class*="IDM"], [id*="idm"], [class*="idm"] {
    display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important;
}

/* SVG sprite */
.icon-svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ui-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: currentColor; flex-shrink: 0; }
a .ui-icon, button .ui-icon { pointer-events: none; }

/* ── 3. Layout Shell ── */
.youtube-canvas {
    width: 100%; height: 100vh; height: 100dvh; min-height: 100vh;
    background: var(--bg-primary);
    position: relative; overflow-y: auto; overflow-x: hidden;
    display: flex; flex-direction: column;
    scroll-behavior: smooth;
}

.content-area { padding: 32px 48px; flex-grow: 1; display: flex; flex-direction: column; max-width: var(--container); margin: 0 auto; width: 100%; }
.content-section { display: none; animation: fadeIn var(--duration-normal) var(--ease); margin-bottom: auto; }
.content-section.active-section { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── 4. Ticker Bar ── */
.announcement-bar {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #fff; display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 700; position: relative; z-index: 10;
    overflow: hidden; min-height: 40px; padding: 4px 0; flex-shrink: 0;
}
.ticker-label {
    background: rgba(0,0,0,0.22); color: #fff;
    padding: 0 16px; height: 30px; border-radius: var(--radius-pill);
    display: flex; align-items: center; font-size: 12px; font-weight: 900;
    white-space: nowrap; flex-shrink: 0; z-index: 2; gap: 6px;
    backdrop-filter: blur(6px);
}
.ticker-track {
    flex: 1; overflow: hidden; position: relative; height: 30px;
    display: flex; align-items: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-content {
    display: flex; align-items: center; height: 100%; white-space: nowrap;
    position: absolute; top: 0; right: 100%; width: max-content;
    direction: ltr; gap: 30px;
    animation: tickerScroll 35s linear infinite; will-change: transform;
}
.ticker-item {
    display: inline-flex; align-items: center; direction: rtl; gap: 10px;
    flex: 0 0 auto; height: 100%; color: #fff;
    transition: opacity var(--duration-fast) var(--ease);
}
.ticker-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); flex-shrink: 0; }
.ticker-link { color: inherit; text-decoration: none; cursor: pointer; transition: opacity var(--duration-fast); }
.ticker-link:hover { opacity: 0.85; text-decoration: underline; text-underline-offset: 4px; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    93.75%, 100% { transform: translateX(calc(100% + 100vw)); }
}
.ticker-content:hover { animation-play-state: running; }

/* ── 5. Main Header ── */
.main-header {
    background: var(--bg-card);
    padding: 6px 40px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.brand-section { display: flex; align-items: center; gap: 12px; }
.brand-logo {
    height: 90px; width: 90px; object-fit: contain;
    border-radius: 50%; padding: 4px;
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.2);
    border: 2px solid var(--border-strong);
    background: var(--bg-secondary);
}
.brand-text-wrapper { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { color: var(--accent); font-size: 22px; font-weight: 900; }
.brand-slogan { color: var(--gold); font-size: 14px; font-weight: 700; }

.header-center-text { text-align: center; flex: 1; margin: 0 20px; }
.header-center-text h1 { color: var(--accent); font-size: 20px; font-weight: 900; margin: 0 0 4px; }
.header-center-text p { font-size: 13px; opacity: 0.7; font-weight: 700; margin: 0; color: var(--text-secondary); }

.action-section { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; direction: ltr; }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
    font-size: 14px; font-weight: 700; color: var(--text-primary);
    display: flex; align-items: center; gap: 8px; text-decoration: none;
    transition: color var(--duration-fast);
}
.contact-item:hover { color: var(--accent); }
.icon-whatsapp { color: #25D366; font-size: 18px; }
.location-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    padding: 1px 8px; border-radius: var(--radius-pill);
    font-size: 10px; font-weight: 900; color: var(--accent); margin-left: 5px;
}
.location-badge i { color: var(--gold); font-size: 9px; }

.social-icons { display: flex; gap: 8px; margin-top: 5px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    color: #fff; font-size: 14px; text-decoration: none;
    transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast);
}
.social-icons a:hover { transform: translateY(-2px) scale(1.08); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.social-icons a .ui-icon, .contact-social-links a .ui-icon { width: 16px; height: 16px; }
.contact-info-icon .ui-icon { width: 22px; height: 22px; }
#backToTop .ui-icon { width: 20px; height: 20px; }

.bg-facebook { background: #1877F2; } .bg-youtube { background: #FF0000; }
.bg-telegram { background: #229ED9; } .bg-whatsapp { background: #25D366; }
.bg-email { background: var(--accent); }

/* ── 6. Navigation ── */
.main-navigation {
    position: sticky; top: 0; z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--duration-normal), box-shadow var(--duration-normal);
}
.nav-tabs-container {
    display: flex; align-items: center; gap: 6px;
    flex-wrap: nowrap; flex: 1; justify-content: center;
}
.nav-tools { position: static !important; transform: none !important; margin-inline-start: 8px; flex-shrink: 0; display: flex; align-items: center; gap: 6px; z-index: 3; }

.nav-tab {
    text-decoration: none; color: var(--text-secondary);
    font-size: 14px; font-weight: 800; padding: 8px 18px;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease); cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex; align-items: center; gap: 6px;
    position: relative; white-space: nowrap;
}
.nav-tab:hover:not(.active) {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.nav-tab.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.nav-tab.active::after {
    content: ""; position: absolute;
    left: 12px; right: 12px; bottom: -5px;
    height: 3px; border-radius: var(--radius-pill);
    background: var(--gold); opacity: 0.9;
}

/* Dropdown toggle */
.nav-dropdown-toggle { white-space: nowrap; }
.nav-dropdown-caret { font-size: 11px; transition: transform var(--duration-fast) var(--ease); }
.nav-dropdown-toggle.is-open { border-color: var(--accent); color: var(--accent); }
.nav-dropdown-toggle.is-open .nav-dropdown-caret,
.nav-dropdown-toggle.active .nav-dropdown-caret { transform: rotate(180deg); }

/* Works gallery dropdown */
.works-gallery-dropdown {
    position: absolute; top: calc(100% + 10px);
    left: 50%; transform: translateX(-50%) translateY(-8px);
    width: min(920px, calc(100vw - 28px));
    padding: 16px; border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease), visibility var(--duration-fast);
    z-index: 1006;
}
.main-navigation.gallery-menu-open .works-gallery-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.works-gallery-title { margin: 0 0 12px; color: var(--accent); font-size: 15px; font-weight: 900; text-align: right; }
.works-gallery-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px; max-height: min(62vh, 390px); overflow-y: auto; padding-left: 2px;
}
.works-gallery-grid::-webkit-scrollbar { width: 6px; }
.works-gallery-grid::-webkit-scrollbar-thumb { background: var(--accent-glow); border-radius: var(--radius-pill); }

.works-gallery-link {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 11px 12px; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-primary); font-size: 13px; font-weight: 800;
    text-align: right; cursor: pointer;
    transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast), border-color var(--duration-fast);
}
.works-gallery-link:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 8px 24px var(--accent-glow);
}
.works-gallery-icon {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-glow); border: 1px solid var(--border-strong);
}
.works-gallery-icon i { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; font-size: 17px; line-height: 1; }
.works-gallery-icon svg { display: block; width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.works-gallery-text { flex: 1; line-height: 1.35; }

/* Theme toggle btn */
.theme-toggle-btn {
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-secondary); border-radius: 50%;
    width: 38px; height: 38px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; padding: 0;
    transition: all var(--duration-fast);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.theme-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle-btn .ui-icon { width: 18px; height: 18px; color: currentColor; }

/* ── 7. Section Titles ── */
.section-title {
    color: var(--text-primary); font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900; margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--border-strong); position: relative;
    display: flex; align-items: center; gap: 10px;
}
.section-title i, .section-title .fas { color: var(--gold); font-size: 0.85em; }

/* Sticky Section Header */
.sticky-section-header {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    margin: -12px -16px 20px; /* extend to edges */
    position: sticky; top: 52px; z-index: 90;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-strong);
    border-radius: 0;
}
.sticky-section-header h2 {
    flex: 1; margin: 0; font-size: 18px; font-weight: 900;
    color: var(--text-primary); display: flex; align-items: center; gap: 10px;
}
.section-heading-icon { color: var(--gold); font-size: 18px; display: inline-flex; align-items: center; }
.section-heading-icon i { font-size: inherit; }
.section-heading-text { font-size: inherit; }
.sticky-back-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    color: var(--accent); cursor: pointer; flex-shrink: 0;
    transition: all var(--duration-fast);
}
.sticky-back-btn:hover { background: var(--accent); color: #fff; }
.sticky-back-btn .ui-icon { width: 18px; height: 18px; transform: rotate(180deg); }

/* ── 8. Home Hero ── */
.home-hero-shell { margin-bottom: 40px; }
.home-hero-panel {
    display: grid; grid-template-columns: 1fr 370px; gap: 32px;
    padding: 40px 36px; border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border-strong);
    box-shadow: var(--card-shadow);
    position: relative; overflow: hidden;
}
.home-hero-panel::before {
    content: ''; position: absolute; top: -80px; right: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none; opacity: 0.7;
}
.home-hero-panel::after {
    content: ''; position: absolute; bottom: -80px; left: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none; opacity: 0.6;
}
.home-hero-copy { position: relative; z-index: 1; }
.home-hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    padding: 6px 16px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 800; color: var(--accent); margin-bottom: 16px;
}
.home-hero-kicker i { color: var(--gold); }
.home-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900;
    line-height: 1.5; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.home-hero-lead {
    color: var(--text-secondary); font-size: 15px; line-height: 1.9;
    font-weight: 600; margin-bottom: 20px; max-width: 650px;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.home-hero-primary, .home-hero-secondary {
    padding: 12px 22px; border-radius: var(--radius-md); font-size: 14px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    transition: all var(--duration-fast) var(--ease); cursor: pointer; border: none;
}
.home-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; box-shadow: 0 8px 24px var(--accent-glow);
}
.home-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); color: #fff; }
.home-hero-secondary {
    background: var(--bg-card); color: var(--accent); border: 1px solid var(--border-strong);
}
.home-hero-secondary:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px var(--accent-glow); }
.home-hero-secondary .ui-icon { color: #25D366; }
.home-hero-whatsapp-alt .ui-icon { color: #25D366; }
.home-hero-points { display: flex; flex-wrap: wrap; gap: 18px; }
.home-hero-point {
    display: flex; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: 13px; font-weight: 700;
}
.home-hero-point i { color: var(--accent); font-size: 12px; }

/* Hero side cards */
.home-hero-side { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; }
.home-hero-side-card {
    padding: 20px; border-radius: var(--radius-lg);
    background: var(--bg-elevated); border: 1px solid var(--border-strong);
}
.home-hero-side-card.accent { border-color: var(--gold); border-left-width: 3px; }
.home-hero-side-label { display: flex; align-items: center; gap: 8px; color: var(--accent); font-size: 14px; font-weight: 900; margin-bottom: 12px; }
.home-hero-side-label i { color: var(--gold); font-size: 14px; }
.home-hero-side-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.home-hero-side-list li { display: flex; align-items: flex-start; gap: 8px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; font-weight: 600; }
.home-hero-side-list li i { color: var(--accent); margin-top: 4px; font-size: 12px; flex-shrink: 0; }
.home-hero-side-note { color: var(--text-secondary); font-size: 14px; line-height: 1.8; font-weight: 600; margin: 0; }

/* Process Steps */
.home-process-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.home-process-card {
    padding: 24px 20px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    text-align: center; position: relative; overflow: hidden;
    transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}
.home-process-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--accent-glow); border-color: var(--accent); }
.home-process-number {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; font-size: 18px; font-weight: 900;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 12px; box-shadow: 0 6px 16px var(--accent-glow);
}
.home-process-card h4 { color: var(--text-primary); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.home-process-card p { color: var(--text-secondary); font-size: 13.5px; line-height: 1.7; font-weight: 600; margin: 0; }

/* Featured works card */
.featured-works-card {
    display: flex; align-items: center; gap: 20px;
    padding: 22px 28px; border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border-strong); cursor: pointer;
    transition: all var(--duration-fast); margin-bottom: 32px;
}
.featured-works-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 32px var(--gold-glow); }
.featured-works-icon i { font-size: 32px; color: var(--gold); }
.featured-works-text h3 { font-size: 17px; font-weight: 900; color: var(--text-primary); margin-bottom: 4px; }
.featured-works-text p { font-size: 14px; color: var(--text-secondary); font-weight: 600; line-height: 1.6; margin: 0; }

/* ── 9. Home Side Panel ── */
.home-left-panel {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-bottom: 32px;
}
.home-side-block {
    padding: 22px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
}
.home-side-title { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 900; color: var(--accent); margin-bottom: 14px; }
.home-side-title i { color: var(--gold); }
.home-side-text { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 14px; font-weight: 600; }
.home-side-action {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; font-weight: 800; font-size: 13px; text-decoration: none;
    transition: all var(--duration-fast); margin-bottom: 8px;
}
.home-side-action:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--accent-glow); color: #fff; }
.home-side-alt {
    display: block; font-size: 13px; color: var(--accent); text-decoration: none; font-weight: 700;
    padding: 6px 0; transition: color var(--duration-fast);
}
.home-side-alt:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.home-side-mini-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.home-side-mini-list li a {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary); font-weight: 700;
    text-decoration: none; padding: 4px 0;
    transition: color var(--duration-fast);
}
.home-side-mini-list li a:hover { color: var(--accent); }
.home-side-mini-list li a i { color: var(--accent); font-size: 11px; flex-shrink: 0; }

/* Book items */
.home-side-book-link { display: flex; flex-direction: column; gap: 16px; }
.home-side-book-item { display: flex; flex-direction: column; gap: 8px; }
.home-side-book-entry {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
    padding: 10px; border-radius: var(--radius-md);
    background: var(--bg-secondary); border: 1px solid var(--border);
    transition: all var(--duration-fast);
}
.home-side-book-entry:hover { border-color: var(--accent); }
.home-side-book-cover { width: 50px; height: 65px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.home-side-book-title { display: block; font-size: 14px; font-weight: 800; color: var(--text-primary); line-height: 1.4; }
.home-side-book-subtitle { display: block; font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.home-side-book-action { font-size: 12px; padding: 8px 14px; border-radius: var(--radius-sm); text-align: center; }

/* ── 10. Most Requested Panel ── */
.most-requested-panel {
    padding: 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 32px;
}
.most-requested-title { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 900; color: var(--gold); margin-bottom: 14px; }
.most-requested-title i { color: var(--gold); }
.most-requested-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 8px; }
.most-requested-link {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: var(--radius-md);
    background: var(--bg-secondary); border: 1px solid var(--border);
    color: var(--text-secondary); font-weight: 700; font-size: 13px;
    text-decoration: none; transition: all var(--duration-fast);
}
.most-requested-link:hover { border-color: var(--accent); color: var(--accent); transform: translateX(-4px); }
.most-requested-link i { color: var(--accent); font-size: 11px; flex-shrink: 0; }

/* ── 11. Quick Services ── */
.quick-services {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px; margin-bottom: 32px;
}
.qs-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    padding: 20px 14px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    cursor: pointer; text-align: center;
    transition: all var(--duration-fast) var(--ease);
}
.qs-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px var(--accent-glow); }
.qs-icon { font-size: 24px; }
.qs-icon i { color: var(--accent); }
.qs-label { font-size: 13px; font-weight: 800; color: var(--text-primary); }
.bd-blue .qs-icon i { color: var(--accent); }
.bd-red .qs-icon i { color: #EF4444; }
.bd-yellow .qs-icon i { color: var(--gold); }


/* ── 12. Trust Strip & Stats ── */
.header-trust-strip {
    display: flex !important; max-width: 700px; padding: 10px 12px;
    background: var(--bg-card) !important; border-radius: var(--radius-md) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--card-shadow) !important;
}
.header-trust-item { display: flex; align-items: center; gap: 8px; }
.header-trust-icon { font-size: 20px; }
.header-trust-icon i { color: var(--accent) !important; }
.header-trust-label { font-size: 13px !important; font-weight: 800; color: var(--text-primary); }
.home-trust-note { text-align: center; font-size: 13px; color: var(--text-muted); font-weight: 700; margin-bottom: 24px; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
    padding: 26px 20px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    text-align: center;
    transition: all var(--duration-fast);
}
.stat-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px var(--accent-glow); }
.stat-number { display: block; font-size: 32px; font-weight: 900; color: var(--accent) !important; margin-bottom: 6px; }
.stat-label { display: block; font-size: 14px; font-weight: 800; color: var(--text-secondary); }

/* ── 13. Testimonials ── */
.testimonials-wrapper { margin-bottom: 32px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.testimonial-card {
    padding: 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: all var(--duration-fast);
}
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px var(--accent-glow); }
.testimonial-icon { color: var(--accent); font-size: 22px; margin-bottom: 12px; opacity: 0.4; }
.testimonial-quote { color: var(--text-secondary); font-size: 14px; line-height: 1.85; font-weight: 600; margin-bottom: 14px; font-style: italic; }
.testimonial-author {
    display: flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 14px; font-weight: 800; margin: 0;
}
.testimonial-author i { color: var(--gold); }

/* ── 14. Work Cards & Audio Items ── */
.work-card {
    padding: 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-primary); line-height: 1.7;
    transition: all var(--duration-fast) var(--ease);
}
.work-card h3 { color: var(--text-primary) !important; }
.work-card p { color: var(--text-secondary) !important; }
.work-card i { display: block; }
.work-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 28px var(--accent-glow); }

/* ── 15. Compact Audio Cards ── */
.compact-audio-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 10px !important;
}
.compact-audio-card {
    padding: 0 !important; border-radius: var(--radius-md) !important;
    overflow: hidden;
}
.compact-audio-card .testibg {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
    min-height: 52px;
}
.compact-audio-card .testibg:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.audio-file-icon {
    color: var(--accent) !important; font-size: 18px !important;
    margin: 0 !important; width: 18px; height: 18px;
    display: inline-flex !important; align-items: center; justify-content: center;
}
.audio-item__title {
    font-size: 14px !important; font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin: 0 !important; padding: 0;
    min-width: 0; overflow: hidden;
    display: flex; align-items: center; line-height: 1.35;
}
.audio-item__title-viewport { display: block; overflow: hidden; width: 100%; }
.audio-item__title-marquee { display: inline-block; white-space: nowrap; will-change: transform; }
.audio-item__title-text { display: inline-block; }
.audio-item__title.is-marquee .audio-item__title-marquee {
    animation: marqueeScroll var(--marquee-duration, 8s) linear infinite alternate;
}
@keyframes marqueeScroll {
    0%, 15% { transform: translateX(0); }
    85%, 100% { transform: translateX(calc(-1 * var(--marquee-distance, 100px))); }
}
.audio-item__sequence-btn {
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); border-radius: 50%;
    width: 32px; height: 32px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; padding: 0;
    transition: all var(--duration-fast); flex-shrink: 0;
}
.audio-item__sequence-btn:hover { border-color: var(--accent); color: var(--accent); }
.audio-item__sequence-btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.audio-item__sequence-btn .ui-icon { width: 15px; height: 15px; }
.audio-item__secondary { display: none !important; }
.audio-item__player { display: none !important; }

/* Card playing state */
.testibg.playing-active {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0 var(--accent-glow) !important;
    animation: active-audio-pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1) !important;
}
.testibg.playing-active > i,
.testibg.playing-active .audio-file-icon {
    color: var(--accent) !important;
    animation: bounce-music-icon 1s infinite alternate ease-in-out;
}
@keyframes active-audio-pulse { to { box-shadow: 0 0 0 15px rgba(20,184,166,0) !important; } }
@keyframes bounce-music-icon { 0%{transform:scale(1)} 100%{transform:scale(1.15) translateY(-3px)} }

.testibg.targeted-audio-card {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0 var(--gold-glow) !important;
    animation: target-audio-pulse 1.2s ease-out 4;
}
.testibg.targeted-audio-card > i { color: var(--gold) !important; }
@keyframes target-audio-pulse { 0%{box-shadow:0 0 0 0 rgba(245,158,11,0.35)} 100%{box-shadow:0 0 0 14px rgba(245,158,11,0)} }

/* ── 16. Custom Audio Player ── */
.audio-custom-player {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 10px; margin-top: 6px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}
.audio-custom-player__button {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--duration-fast); flex-shrink: 0;
    box-shadow: 0 4px 12px var(--accent-glow);
}
.audio-custom-player__button:hover { transform: scale(1.08); box-shadow: 0 6px 18px var(--accent-glow); }
.audio-custom-player__button i { font-size: 13px; }
.audio-custom-player__seek {
    flex: 1; height: 6px; -webkit-appearance: none; appearance: none;
    background: var(--border); border-radius: var(--radius-pill);
    outline: none; cursor: pointer;
}
.audio-custom-player__seek::-webkit-slider-thumb {
    -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); cursor: pointer;
    box-shadow: 0 2px 6px var(--accent-glow);
}
.audio-custom-player__seek::-moz-range-thumb {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); border: none; cursor: pointer;
}
.audio-custom-player__time {
    font-size: 12px; font-weight: 700; color: var(--text-muted);
    font-family: monospace; direction: ltr; flex-shrink: 0;
}

.atheer-native-audio { display: none !important; width: 0 !important; height: 0 !important; }


/* ── 17. Floating Audio Widget ── */
.floating-audio-widget {
    position: fixed; bottom: 20px; left: 20px; z-index: 9999;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg); padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    width: 56px; height: 56px; overflow: hidden;
    transition: width var(--duration-normal) var(--ease), height var(--duration-normal), border-radius var(--duration-normal);
    opacity: 0; visibility: hidden; pointer-events: none;
}
.floating-audio-widget.show { opacity: 1; visibility: visible; pointer-events: auto; }
.floating-audio-widget.expanded { width: min(380px, calc(100vw - 40px)); height: auto; }

.floating-audio-expand {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform var(--duration-fast);
}
.floating-audio-expand:hover { transform: scale(1.1); }
.floating-audio-expand .ui-icon { width: 16px; height: 16px; }

.floating-audio-controls {
    display: flex; align-items: center; gap: 8px;
    flex: 1; min-width: 0; opacity: 0; transition: opacity var(--duration-fast);
}
.floating-audio-widget.expanded .floating-audio-controls { opacity: 1; }

.floating-audio-toggle, .floating-audio-close {
    width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all var(--duration-fast);
}
.floating-audio-toggle { background: var(--accent); color: #fff; }
.floating-audio-toggle:hover { transform: scale(1.08); }
.floating-audio-close { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.floating-audio-close:hover { color: #EF4444; border-color: #EF4444; }
.floating-audio-toggle .ui-icon, .floating-audio-close .ui-icon { width: 14px; height: 14px; }

/* ── 18. Services Section ── */
#services-section h3 { color: var(--accent) !important; border-bottom-color: var(--border) !important; }
#services-section .work-card { border-bottom: 3px solid var(--accent) !important; }
#services-section .work-card i { color: var(--accent) !important; }

/* ── 19. Search Section ── */
#search-section { padding-top: 20px; }
.search-wrapper { max-width: 700px; margin: 0 auto 24px; }
.search-input-row { display: flex; align-items: center; gap: 10px; }
#globalSearchInput {
    flex: 1; padding: 14px 20px; border-radius: var(--radius-lg);
    border: 2px solid var(--border-strong); background: var(--bg-card);
    color: var(--text-primary); font-size: 16px; font-weight: 700;
    font-family: var(--font); outline: none;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
#globalSearchInput::placeholder { color: var(--text-muted); }
#globalSearchInput:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
#resultCount { color: var(--text-muted); font-size: 13px; font-weight: 700; margin-top: 10px; }
#noResultsMsg { color: var(--text-muted); text-align: center; padding: 30px; font-weight: 700; }
.search-result-card {
    cursor: pointer; text-align: right;
    transition: all var(--duration-fast);
}
.search-result-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.search-result-title { font-size: 15px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.search-result-meta { font-size: 12px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.search-result-snippet { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ── 20. Poems Section ── */
.poem-card {
    padding: 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 16px;
}
.poem-title { color: var(--accent); font-size: 18px; font-weight: 900; margin-bottom: 12px; }
.verse-container { color: var(--text-secondary); font-size: 15px; line-height: 2.2; font-weight: 600; }

/* ── 21. Offers ── */
.offer-card, .offers-announcement-card {
    padding: 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: all var(--duration-fast);
}
.offer-card:hover, .offers-announcement-card:hover { border-color: var(--gold); }
.offer-chip { display: inline-block; background: var(--gold-glow); color: var(--gold); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 800; margin-bottom: 10px; }

/* ── 22. Contact Section ── */
.contact-section-shell { max-width: 1100px; margin: 0 auto; }
.contact-hero {
    padding: 32px; border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border-strong);
    box-shadow: var(--card-shadow); margin-bottom: 28px;
}
.contact-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-hero-copy h3 { color: var(--accent); font-size: 26px; font-weight: 900; margin-bottom: 10px; }
.contact-hero-copy p { color: var(--text-secondary); font-size: 15px; line-height: 1.85; font-weight: 600; }
.contact-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    padding: 6px 14px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 800; color: var(--accent); margin-bottom: 14px;
}
.contact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.contact-stat-card {
    padding: 14px; border-radius: var(--radius-md);
    background: var(--bg-elevated); border: 1px solid var(--border);
    text-align: center;
}
.contact-stat-value { display: block; font-size: 22px; font-weight: 900; color: var(--accent); }
.contact-stat-label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-top: 2px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-info-panel, .contact-form-panel {
    padding: 28px; border-radius: var(--radius-xl);
    background: var(--bg-card); border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}
.contact-panel-title { color: var(--accent) !important; font-size: 20px; font-weight: 900; margin-bottom: 18px; }
.contact-info-card {
    padding: 16px; border-radius: var(--radius-md);
    background: var(--bg-secondary); border: 1px solid var(--border);
    margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}
.contact-info-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-label { font-size: 12px; font-weight: 700; color: var(--text-muted); }
.contact-info-value { font-size: 16px; font-weight: 900; color: var(--text-primary); margin-top: 2px; }
.contact-info-meta { font-size: 13px; color: var(--text-secondary); opacity: 0.8; margin-top: 4px; line-height: 1.7; }
.contact-guidance {
    margin-top: 18px; padding: 16px; border-radius: var(--radius-md);
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    border-right: 4px solid var(--accent); color: var(--text-secondary); font-size: 14px; line-height: 1.9;
}
.contact-guidance strong { color: var(--accent); }
.contact-social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.contact-social-links a {
    width: 42px; height: 42px; border-radius: var(--radius-md);
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}
.contact-social-links a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }

.contact-form-head { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.contact-form-shell { display: grid; gap: 16px; margin-top: 20px; }
.contact-grid-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-field { display: grid; gap: 8px; }
.contact-field span { font-size: 14px; font-weight: 800; color: var(--text-primary); }
.contact-field input, .contact-field select, .contact-field textarea {
    width: 100%; box-sizing: border-box; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--bg-secondary);
    color: var(--text-primary); padding: 14px 16px; font-size: 15px;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    outline: none; font-family: var(--font);
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow);
}
.contact-field textarea { min-height: 150px; resize: vertical; line-height: 1.9; }
.contact-hint { font-size: 12px; color: var(--text-muted); margin-top: -2px; line-height: 1.7; }
.contact-consent {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 13px 14px; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--accent-glow);
    font-size: 13px; line-height: 1.85; color: var(--text-secondary);
}
.contact-consent input { accent-color: var(--accent); margin-top: 4px; width: 16px; height: 16px; flex-shrink: 0; }
.contact-form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.contact-submit-btn {
    border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; font-size: 15px; font-weight: 900;
    box-shadow: 0 10px 24px var(--accent-glow);
    transition: transform var(--duration-fast), box-shadow var(--duration-fast);
    font-family: var(--font);
}
.contact-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px var(--accent-glow); }
.contact-inline-link {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 18px; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--accent); text-decoration: none; font-weight: 800;
    transition: all var(--duration-fast);
}
.contact-inline-link:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 24px var(--accent-glow); }
.contact-form-feedback { min-height: 22px; font-size: 13px; font-weight: 800; line-height: 1.7; }
.contact-form-feedback.is-success { color: #10B981; }
.contact-form-feedback.is-error { color: #EF4444; }

/* ── 23. Footer ── */
.modern-footer {
    background: var(--bg-secondary); border-top: 1px solid var(--border);
    padding: 40px 48px 20px; margin-top: auto; flex-shrink: 0;
}
.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand-logo { width: 50px; height: 50px; border-radius: 50%; }
.footer-brand-name { font-size: 18px; font-weight: 900; color: var(--accent); }
.footer-brand-tagline { font-size: 13px; color: var(--text-muted); }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; margin-bottom: 24px; }
.footer-col-title { font-size: 14px; font-weight: 900; color: var(--accent); margin-bottom: 12px; }
.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li { margin-bottom: 8px; }
.footer-link-list a { color: var(--text-secondary); text-decoration: none; font-size: 13px; font-weight: 700; transition: color var(--duration-fast); }
.footer-link-list a:hover { color: var(--accent); }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}
.footer-counter { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--text-muted); }
.footer-counter i { color: var(--accent); }

/* ── 24. Back to Top ── */
#backToTop {
    position: fixed; bottom: 90px; left: 20px; z-index: 9998;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px var(--accent-glow);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--duration-fast);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); }

/* ── 25. BG Glows ── */
.bg-glow { position: fixed; pointer-events: none; z-index: 0; border-radius: 50%; filter: blur(120px); }
.bg-glow-1 { width: 400px; height: 400px; top: -100px; right: -100px; background: var(--accent-glow); opacity: 0.4; }
.bg-glow-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; background: var(--gold-glow); opacity: 0.3; }

/* ── 26. Splash & Intro ── */
#intro-screen {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 1000000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 20px; box-sizing: border-box;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow-y: auto;
}
.intro-logo { width: 150px; margin-bottom: 25px; animation: introFadeDown 1s ease; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2)); }
.intro-title { color: var(--accent); font-size: 24px; font-weight: 900; max-width: 780px; margin-bottom: 25px; line-height: 1.6; animation: introFadeUp 1s ease 0.2s both; }
.intro-text-main { color: var(--text-secondary); font-size: 16px; line-height: 1.9; max-width: 850px; margin-bottom: 15px; font-weight: 700; animation: introFadeUp 1s ease 0.4s both; }
.intro-text-main span { color: var(--accent) !important; }
.intro-text-main strong { color: var(--gold) !important; }
.intro-text-sub { color: var(--text-secondary); font-size: 15px; line-height: 1.8; max-width: 800px; margin-bottom: 35px; font-weight: 600; opacity: 0.8; animation: introFadeUp 1s ease 0.6s both; }
.intro-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white; border: none; padding: 15px 40px; border-radius: var(--radius-pill);
    font-size: 18px; font-weight: 900; font-family: var(--font); cursor: pointer;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: all 0.3s ease; animation: introFadeUp 1s ease 0.8s both;
    display: inline-flex; align-items: center; gap: 10px;
}
.intro-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--accent-glow); color: var(--gold); }
.intro-contact { margin-top: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; animation: introFadeUp 1s ease 1s both; }
.intro-contact-item {
    font-size: 14.5px; font-weight: 800; color: var(--text-primary);
    background: var(--bg-card); padding: 8px 20px; border-radius: var(--radius-pill);
    border: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
    direction: ltr; box-shadow: var(--card-shadow);
}
@keyframes introFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introFadeDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

#splash-screen { background: var(--bg-primary) !important; }
@keyframes bounceWave { 0%{height:10px} 50%{height:40px} 100%{height:10px} }
#splash-screen h1 { color: var(--accent) !important; }
#splash-screen p { color: var(--text-secondary) !important; }
.splash-wave span:nth-child(1) { background: var(--accent) !important; }
.splash-wave span:nth-child(2) { background: var(--gold) !important; }
.splash-wave span:nth-child(3) { background: var(--accent) !important; }
.splash-wave span:nth-child(4) { background: var(--gold) !important; }
.splash-wave span:nth-child(5) { background: var(--accent) !important; }

/* ── 27. Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── 28. FAQ ── */
.faq-item {
    padding: 18px 20px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 10px; cursor: pointer;
    transition: all var(--duration-fast);
}
.faq-item:hover{ border-color: var(--accent); }
.faq-question { font-size: 15px; font-weight: 800; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; }
.faq-answer { color: var(--text-secondary); font-size: 14px; line-height: 1.8; padding-top: 12px; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ── 29. Font Awesome SVG Fallback ── */
.fa-svg-fallback-active { display: inline-flex !important; align-items: center; justify-content: center; }
.fa-svg-fallback-active svg.icon-fallback-svg { width: 1em; height: 1em; fill: currentColor; stroke: none; display: block; }
.fa-svg-fallback-active svg.icon-fallback-svg path,
.fa-svg-fallback-active svg.icon-fallback-svg circle,
.fa-svg-fallback-active svg.icon-fallback-svg rect { fill: currentColor; stroke: none; }
.section-heading-icon .fa-svg-fallback-active svg.icon-fallback-svg,
.works-gallery-icon .fa-svg-fallback-active svg.icon-fallback-svg { fill: currentColor; stroke: none; }
.audio-custom-player__button .fa-svg-fallback-active { font-size: 13px; }
.qs-icon .fa-svg-fallback-active { font-size: 24px; }

/* ── 30. Floating Music Notes ── */
.floating-note {
    position: fixed; z-index: 0; pointer-events: none;
    color: var(--accent); opacity: 0.08; font-size: 22px;
    animation: floatNote 18s linear infinite;
}
@keyframes floatNote {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ── 31. Scrollbar ── */
.youtube-canvas::-webkit-scrollbar { width: 8px; }
.youtube-canvas::-webkit-scrollbar-track { background: var(--bg-primary); }
.youtube-canvas::-webkit-scrollbar-thumb { background: var(--accent-glow); border-radius: var(--radius-pill); }
.youtube-canvas::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .main-header { padding: 6px 20px; flex-wrap: wrap; gap: 10px; }
    .header-center-text { display: none; }
    .brand-logo { height: 60px; width: 60px; }
    .brand-name { font-size: 18px; }
    .content-area { padding: 20px 20px; }

    .home-hero-panel { grid-template-columns: 1fr; padding: 28px 22px; }
    .home-process-strip { grid-template-columns: 1fr; }

    .main-navigation { padding: 8px 16px; overflow-x: auto; }
    .nav-tabs-container { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-inline-end: 12px !important; }
    .nav-tabs-container::-webkit-scrollbar { display: none; }
    .nav-tabs-container::after { display: none !important; }

    .works-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-hero-grid, .contact-layout { grid-template-columns: 1fr; }
    .contact-stats { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }

    .modern-footer { padding: 30px 20px 16px; }
    .sticky-section-header { top: 52px; margin: -8px -8px 16px; padding: 10px 12px; }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
    .content-area { padding: 16px 14px; }
    .main-header { padding: 6px 14px; }
    .brand-logo { height: 50px; width: 50px; }
    .brand-name { font-size: 16px; }
    .brand-slogan { font-size: 12px; }
    .action-section { display: none; }

    .nav-tab { font-size: 13px; padding: 7px 14px; }

    .home-hero-panel { padding: 22px 16px; }
    .home-hero-title { font-size: 1.3rem; }
    .home-hero-actions { flex-direction: column; }
    .home-hero-primary, .home-hero-secondary { width: 100%; justify-content: center; }
    .home-hero-points { flex-direction: column; gap: 8px; }

    .home-left-panel { grid-template-columns: 1fr; }
    .quick-services { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .works-gallery-grid { grid-template-columns: 1fr; }

    .contact-hero, .contact-info-panel, .contact-form-panel { padding: 20px 16px; border-radius: var(--radius-lg); }
    .contact-hero-copy h3, .contact-panel-title { font-size: 22px !important; }
    .contact-grid-two, .contact-stats { grid-template-columns: 1fr; }
    .contact-form-actions { flex-direction: column; align-items: stretch; }
    .contact-submit-btn, .contact-inline-link { width: 100%; }

    .modern-footer { padding: 24px 14px 14px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .intro-title { font-size: 19px; }
    .intro-text-main { font-size: 14.5px; }
    .intro-text-sub { font-size: 13.5px; margin-bottom: 25px; }
    .intro-logo { width: 120px; }
    .intro-btn { padding: 12px 30px; font-size: 16px; }
    .intro-contact { flex-direction: column; gap: 10px; align-items: center; }

    .floating-audio-widget { bottom: 14px; left: 14px; }
    #backToTop { bottom: 80px; left: 14px; }
}

/* ── Small phones (max 480px) ── */
@media (max-width: 480px) {
    .content-area { padding: 12px 10px; }
    .quick-services { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .qs-item { padding: 14px 10px; }
    .compact-audio-list { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .home-process-strip { gap: 12px; }
    .most-requested-list { grid-template-columns: 1fr; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .ticker-content { animation: none; }
    .floating-note { display: none; }
}

/* ── Nav mobile overflow fix ── */
@media (max-width: 1024px) {
    .main-navigation { padding-inline-end: 12px !important; }
}


/* ============================================================
   BACKWARD COMPATIBILITY — Old Variable Aliases
   Maps old V1 variable names to V2 design tokens so inline
   styles in HTML don't break.
   ============================================================ */
:root {
    --primary-blue: var(--accent);
    --primary-red: #EF4444;
    --primary-yellow: var(--gold);
    --bg-light: var(--bg-secondary);
    --bg-white: var(--bg-card);
    --text-dark: var(--text-primary);
    --border-color: var(--border);
    --card-shadow: var(--card-shadow);
    --badge-bg: var(--bg-elevated);
    --badge-border: var(--border-strong);
}

/* Additional legacy class support */
.contact-badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.contact-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: var(--radius-pill);
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    font-size: 13px; font-weight: 700; color: var(--text-secondary);
}
.contact-badge i { color: var(--accent); font-size: 12px; }
.contact-panel-intro { color: var(--text-secondary); font-size: 14px; line-height: 1.8; font-weight: 600; margin-bottom: 16px; }
.contact-info-stack { display: flex; flex-direction: column; gap: 12px; }
.contact-info-card { text-decoration: none; }
.contact-info-card:hover { border-color: var(--accent); }
.contact-showcase { }

.contact-stat-number { display: block; font-size: 22px; font-weight: 900; }
.contact-stat-number[style*="primary-blue"] { color: var(--accent) !important; }
.contact-stat-number[style*="primary-red"] { color: #EF4444 !important; }
.contact-stat-number[style*="primary-yellow"] { color: var(--gold) !important; }

/* Footer legacy */
.footer-content { }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; }
.footer-title { font-size: 18px; font-weight: 900; color: var(--accent); }
.footer-links {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; font-weight: 700; transition: color var(--duration-fast); }
.footer-links a:hover { color: var(--accent); }
.copyright { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.footer-meta-panel { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.visitor-counter-chip {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: var(--radius-pill);
    background: var(--accent-glow); border: 1px solid var(--border-strong);
    font-size: 13px; font-weight: 700;
}
.counter-label { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.counter-label i { color: var(--accent); }
.counter-number { color: var(--accent); font-weight: 900; }
.launch-date-pill {
    padding: 4px 12px; border-radius: var(--radius-pill);
    background: var(--gold-glow); border: 1px solid rgba(245,158,11,0.2);
    font-size: 12px; font-weight: 700; color: var(--gold);
}

/* Poems grid */
.poems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.poem-badge {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
    background: var(--accent-glow); color: var(--accent); font-size: 12px; font-weight: 800; margin-bottom: 10px;
}
.poem-excerpt { color: var(--text-secondary); font-size: 14px; line-height: 2; max-height: 120px; overflow: hidden; }
.poem-full-text { display: none; color: var(--text-secondary); font-size: 14px; line-height: 2; }
.poem-card.expanded .poem-excerpt { display: none; }
.poem-card.expanded .poem-full-text { display: block; }
.read-more-btn {
    background: transparent; border: 1px solid var(--border); color: var(--accent);
    padding: 6px 14px; border-radius: var(--radius-md);
    font-size: 13px; font-weight: 700; cursor: pointer; margin-top: 10px;
    transition: all var(--duration-fast); font-family: var(--font);
}
.read-more-btn:hover { background: var(--accent-glow); border-color: var(--accent); }

/* FAQ category */
.faq-category-title { color: var(--accent); font-size: 16px; font-weight: 900; margin: 24px 0 12px; }

/* Cards grid fallback */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

/* Floating widget mini-btn */
.floating-audio-mini-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all var(--duration-fast); flex-shrink: 0; padding: 0;
}
.main-expand-btn { background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: #fff; }
.main-expand-btn:hover { transform: scale(1.1); }
.floating-audio-mini-btn.close { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.floating-audio-mini-btn.close:hover { color: #EF4444; border-color: #EF4444; }
.floating-audio-mini-btn .ui-icon { width: 16px; height: 16px; }

.spinning-disc { animation: spinDisc 3s linear infinite; }
@keyframes spinDisc { to { transform: rotate(360deg); } }
.floating-audio-widget.paused .spinning-disc { animation-play-state: paused; }

/* WhatsApp icon colors */
.is-whatsapp-ye .contact-info-icon { background: rgba(37,211,102,0.15); color: #25D366; }
.is-whatsapp-sa .contact-info-icon { background: rgba(37,211,102,0.15); color: #25D366; }
.is-email .contact-info-icon { background: var(--accent-glow); color: var(--accent); }

/* Search input wrapper */
.search-container { max-width: 600px; margin: 0 auto; }
#globalSearchInput { border-color: var(--border-strong) !important; background: var(--bg-card) !important; color: var(--text-primary) !important; }

/* Offers section legacy */
#offers-section .section-title { border-bottom: none; }
.offers-intro-panel {
    padding: 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 20px;
}
.timeline-item {
    padding: 18px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    margin-bottom: 12px;
}


/* ============================================================
   HERO LOGO ANIMATION & AUDIO CARD FIXES
   ============================================================ */
.hero-logo-container {
    position: relative; width: 140px; height: 140px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.hero-main-logo { height: 75px; width: auto; z-index: 10; position: relative; }
.hero-wave {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%; border: 2px solid var(--accent);
    animation: wavePulse 3s cubic-bezier(0.36, 0.11, 0.3, 1) infinite;
    opacity: 0;
}
.hero-wave-2 { animation-delay: 1s; border-color: var(--gold); }
.hero-wave-3 { animation-delay: 2s; }
@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Fix Audio Cards Grid to display title properly */
.compact-audio-card .testibg {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
        "icon title seq"
        "player player player" !important;
    padding: 10px 14px !important;
}
.compact-audio-card .audio-file-icon { grid-area: icon !important; }
.compact-audio-card .audio-item__title { grid-area: title !important; align-self: center !important; }
.compact-audio-card .audio-item__sequence-btn { grid-area: seq !important; align-self: center !important; }
.compact-audio-card .audio-custom-player { grid-area: player !important; margin-top: 6px !important; }

/* Simple Animation for Audio Icons */
.audio-item .audio-file-icon {
    animation: simpleFloat 4s ease-in-out infinite alternate;
}
@keyframes simpleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}


/* ============================================================
   USER REQUESTED TWEAKS
   ============================================================ */

/* 1. Make the logo bigger */
.hero-logo-container { width: 180px !important; height: 180px !important; }
.hero-main-logo { height: 95px !important; }

/* 2. Soften the white cards in Light Mode */
body:not(.dark-mode) {
    --bg-card: #CDEAEA !important;
    --border: rgba(20,184,166,0.18) !important;
}

/* 3. Animation for Icons in cards (Wobble/Tilt) */
.audio-file-icon {
    animation: iconShineTilt 4s ease-in-out infinite alternate !important;
}
@keyframes iconShineTilt {
    0% { transform: rotate(0deg) scale(1); filter: brightness(1); }
    25% { transform: rotate(-5deg) scale(1.05); filter: brightness(1.2); }
    50% { transform: rotate(5deg) scale(1); filter: brightness(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); filter: brightness(1.2); }
    100% { transform: rotate(0deg) scale(1); filter: brightness(1); }
}

/* Additional icon pulse/tilt for other cards */
.work-card i, .featured-works-icon i, .qs-icon i {
    transition: transform 0.3s ease;
}
.work-card:hover i, .featured-works-card:hover .featured-works-icon i, .qs-item:hover .qs-icon i {
    animation: simpleTilt 0.5s ease-in-out;
}
@keyframes simpleTilt {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}


/* Arrange 12 Audio Cards: 6 Top, 6 Bottom */
@media (min-width: 1024px) {
    .quick-services {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 12px !important;
    }
}
@media (max-width: 1023px) and (min-width: 768px) {
    .quick-services {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
    }
}

/* Footer override to center items correctly on desktop */
@media (min-width: 768px) {
    .footer-content { align-items: center; }
    .footer-brand { flex: 0 0 auto; }
    .footer-links { flex: 1 1 auto; margin: 0 !important; }
    .footer-meta-panel { flex: 0 0 auto; margin-top: 15px; }
}
@media (min-width: 1024px) {
    .footer-meta-panel { margin-top: 0; }
}

/* SOUND WAVES ANIMATION & LARGER LOGO */
.hero-logo-container { width: 220px !important; height: 220px !important; margin-bottom: 10px !important; }
.hero-main-logo { height: 125px !important; }
.hero-sound-waves {
    display: flex; gap: 6px; align-items: flex-end; justify-content: center; height: 24px; margin-bottom: 20px;
}
.hero-sound-waves span {
    display: inline-block; width: 4px; border-radius: 2px;
    background: var(--gold);
    animation: waveBarsAnim 1.2s ease-in-out infinite alternate;
}
.hero-sound-waves span:nth-child(even) { background: var(--accent); }
.hero-sound-waves span:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.hero-sound-waves span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.hero-sound-waves span:nth-child(3) { height: 24px; animation-delay: 0.3s; }
.hero-sound-waves span:nth-child(4) { height: 14px; animation-delay: 0.4s; }
.hero-sound-waves span:nth-child(5) { height: 8px; animation-delay: 0.5s; }
@keyframes waveBarsAnim { 
    0% { transform: scaleY(0.5); opacity: 0.5; } 
    100% { transform: scaleY(1.3); opacity: 1; } 
}
/* Hero Panel Complete Re-Balance */
.home-hero-panel {
    align-items: center !important;
    gap: 40px !important;
}
.home-hero-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-hero-side-card {
    width: 100%;
}
.hero-logo-container {
    margin: 0 auto 10px !important;
}
/* Center All Section Titles */
.section-title {
    justify-content: center !important;
    text-align: center !important;
}

/* Professional Services Tab Layout */
#services-section h3 {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 24px; border-radius: var(--radius-pill);
    background: var(--bg-elevated); border: 1px solid var(--border-strong);
    color: var(--accent) !important;
    border-bottom: none !important; margin: 50px auto 30px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
#services-section h3::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
}
#services-section > div { text-align: center; } /* Center the H3 headers wrapper */
#services-section .work-card {
    transition: transform var(--duration-normal), box-shadow var(--duration-normal);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
}
#services-section .work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--accent-glow);
    border-color: var(--accent);
}
