/* =========================================================================
   AB CALENDAR OFFICIAL SHOWCASE WEBSITE & LANDING PAGE STYLESHEET
   Crafted with Luxury Islamic Aesthetics, Gold/Emerald Accents & Glassmorphism
   ========================================================================= */

/* ==========================================================================
   AUTHENTIC APP URDU FONTS: MEHR NASTALIQ WEB & ALQALAM TAJ NASTALEEQ
   ========================================================================== */
@font-face {
    font-family: 'Mehr Nastaliq Web';
    src: local('Mehr Nastaliq Web'),
         local('MehrNastaliqWeb'),
         url('fonts/Mehr_Nastaliq_Web_v2.otf') format('opentype'),
         url('fonts/MehrNastaliqWeb.ttf') format('truetype'),
         url('assets/fonts/Mehr_Nastaliq_Web_v2.otf') format('opentype'),
         url('assets/fonts/MehrNastaliqWeb.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MehrNastaliqWeb';
    src: local('Mehr Nastaliq Web'),
         local('MehrNastaliqWeb'),
         url('fonts/Mehr_Nastaliq_Web_v2.otf') format('opentype'),
         url('fonts/MehrNastaliqWeb.ttf') format('truetype'),
         url('assets/fonts/Mehr_Nastaliq_Web_v2.otf') format('opentype'),
         url('assets/fonts/MehrNastaliqWeb.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-primary: #070a12;
    --bg-surface: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-glass: rgba(15, 23, 42, 0.75);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(245, 158, 11, 0.35);
    
    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-emerald: #10b981;
    --color-emerald-light: #34d399;
    --color-cyan: #06b6d4;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 35px rgba(245, 158, 11, 0.25);
    --shadow-emerald-glow: 0 0 35px rgba(16, 185, 129, 0.2);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
    box-sizing: border-box;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
    line-height: 1.48;
    background: radial-gradient(circle at 50% 0%, #151d38 0%, #070a12 60%);
    min-height: 100vh;
    box-sizing: border-box;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}

main, section, header, footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Background Ambient Glows */
.ambient-glow-1 {
    position: fixed;
    top: -10%;
    left: 10%;
    width: 380px;
    height: 380px;
    max-width: 80vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-2 {
    position: fixed;
    top: 40%;
    right: 0%;
    width: 360px;
    height: 360px;
    max-width: 80vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-gold-light);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-theme-toggle:hover {
    border-color: var(--color-gold);
    transform: scale(1.06);
}

/* =========================================================================
   LUXURY GOOGLE PLAY STORE NAVBAR BUTTON
   ========================================================================= */
.nav-btn-playstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 16px 5px 12px;
    height: 40px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-btn-playstore:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.96) 0%, rgba(15, 23, 42, 0.96) 100%);
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(56, 189, 248, 0.28), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.nav-play-svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(66, 133, 244, 0.45));
    transition: filter 0.25s ease, transform 0.25s ease;
}

.nav-btn-playstore:hover .nav-play-svg {
    transform: scale(1.06);
    filter: drop-shadow(0 0 10px rgba(66, 133, 244, 0.7));
}

.nav-play-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.nav-play-subtitle {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #94a3b8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.25s ease;
}

.nav-play-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.25s ease;
}

/* Light Theme Styling for Navbar Play Store Button */
html[data-theme="light"] .nav-btn-playstore,
body.light-theme .nav-btn-playstore {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

html[data-theme="light"] .nav-btn-playstore:hover,
body.light-theme .nav-btn-playstore:hover {
    background: #f8fafc !important;
    border-color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.2) !important;
}

html[data-theme="light"] .nav-btn-playstore .nav-play-svg,
body.light-theme .nav-btn-playstore .nav-play-svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12)) !important;
}

html[data-theme="light"] .nav-btn-playstore:hover .nav-play-svg,
body.light-theme .nav-btn-playstore:hover .nav-play-svg {
    filter: drop-shadow(0 2px 6px rgba(2, 132, 199, 0.35)) !important;
}

html[data-theme="light"] .nav-btn-playstore .nav-play-subtitle,
body.light-theme .nav-btn-playstore .nav-play-subtitle {
    color: #64748b !important;
}

html[data-theme="light"] .nav-btn-playstore .nav-play-title,
body.light-theme .nav-btn-playstore .nav-play-title {
    color: #0f172a !important;
}

/* Dark Theme Styling for Navbar Play Store Button */
html[data-theme="dark"] .nav-btn-playstore,
body:not(.light-theme) .nav-btn-playstore {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

html[data-theme="dark"] .nav-btn-playstore .nav-play-title,
body:not(.light-theme) .nav-btn-playstore .nav-play-title {
    color: #ffffff !important;
}

html[data-theme="dark"] .nav-btn-playstore .nav-play-subtitle,
body:not(.light-theme) .nav-btn-playstore .nav-play-subtitle {
    color: #94a3b8 !important;
}

html[data-theme="dark"] .nav-btn-playstore .nav-play-svg,
body:not(.light-theme) .nav-btn-playstore .nav-play-svg {
    filter: drop-shadow(0 0 6px rgba(66, 133, 244, 0.45)) !important;
}

/* Hero Section */
.hero-section {
    padding: 38px 0 24px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.1);
}

.hero-badge-icon {
    font-size: 14px;
}

.hero-badge-text {
    line-height: 1.2;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hero-title .gradient-gold {
    background: linear-gradient(135deg, #fef08a, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-br {
    display: none;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto 18px;
    font-size: 17.5px;
    color: var(--text-secondary);
    line-height: 1.45;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.btn-play-store {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 10px 22px;
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #2a3342;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.btn-play-store:hover {
    background: #05070c;
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 16px rgba(56, 189, 248, 0.25);
}

.play-store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.play-text-col {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.play-subtext {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #94a3b8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.play-maintext {
    font-size: 17.5px;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-web-app {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.btn-web-app:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-3px);
}

.trust-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 13.5px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Phone Mockup Preview */
.mockup-wrapper {
    margin: 50px auto 0;
    max-width: 360px;
    position: relative;
}

.phone-frame {
    background: #111827;
    border: 9px solid #1e293b;
    border-radius: 46px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 18.5;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    width: 120px;
    height: 22px;
    background: #0f172a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notch-camera {
    width: 8px;
    height: 8px;
    background: #334155;
    border-radius: 50%;
}

.phone-screen-content {
    flex: 1;
    background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.mockup-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-header-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-gold);
}

.mockup-date-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}

.mockup-greg-big {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.mockup-greg-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.mockup-sync-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(245, 158, 11, 0.3);
    font-size: 11px;
}

.mockup-sync-val {
    font-weight: 700;
    color: var(--color-emerald-light);
}

.mockup-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mockup-mini-tile {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-mini-tile span {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

/* Stats Counter Section */
.stats-section {
    padding: 16px 0 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px 20px;
    backdrop-filter: blur(12px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

/* Features Grid */
.features-section {
    padding: 34px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-tag {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-emerald-light);
    margin-bottom: 4px;
}

.section-title {
    font-size: clamp(22px, 5.5vw, 36px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-desc {
    font-size: 16.5px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.44;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    backdrop-filter: blur(14px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bento-card.card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-color: rgba(245, 158, 11, 0.25);
}

.bento-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
}

.bento-card.card-emerald .bento-icon-box {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.35);
}

.bento-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.bento-text {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.44;
    flex: 1;
}

.bento-tags {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FAQ Section */
.faq-section {
    padding: 30px 0 36px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    backdrop-filter: blur(10px);
}

.faq-q {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-gold-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-a {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Bottom CTA Banner */
.cta-banner-section {
    padding: 20px 0 32px;
}

.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #064e3b 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cta-banner p {
    font-size: 16.5px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 18px;
    line-height: 1.45;
}

/* =========================================================================
   PRE-FOOTER GOOGLE PLAY STORE SHOWCASE BANNER
   ========================================================================= */
.cta-banner.cta-playstore-showcase {
    padding: 28px 24px;
    text-align: left;
}

.cta-playstore-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
}

.cta-play-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 750;
    color: var(--color-gold-light);
    margin-bottom: 16px;
}

body.light-theme .cta-play-badge {
    background: rgba(217, 119, 6, 0.12);
    border-color: rgba(217, 119, 6, 0.3);
    color: #b45309;
}

.cta-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.cta-info-col h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cta-info-col p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 520px;
}

.cta-trust-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
    max-width: 480px;
}

.cta-trust-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

body.light-theme .cta-trust-chip {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(217, 119, 6, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chip-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.chip-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.chip-text strong {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--text-primary);
}

body.light-theme .chip-text strong {
    color: #1e293b;
}

.chip-text span {
    font-size: 10.5px;
    color: var(--text-muted);
}

body.light-theme .chip-text span {
    color: #64748b;
}

.cta-actions-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-secondary {
    padding: 12px 24px;
    font-size: 14.5px;
    font-weight: 700;
}

/* Play Store Preview Phone Mockup (3D Tilted Glass Card) */
.cta-device-col {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.playstore-preview-card {
    text-decoration: none;
    display: block;
    max-width: 275px;
    width: 100%;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.playstore-preview-card:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.04);
}

.playstore-phone-frame {
    width: 100%;
    border-radius: 38px;
    border: 8px solid #1e293b;
    background: #0f172a;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(245, 158, 11, 0.25);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

body.light-theme .playstore-phone-frame {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14), 0 0 30px rgba(217, 119, 6, 0.2);
}

.playstore-screen-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.playstore-hover-badge {
    position: absolute;
    bottom: 14px;
    left: 12px;
    right: 12px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    padding: 7px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.playstore-preview-card:hover .playstore-hover-badge {
    opacity: 1;
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Showcase */
@media (max-width: 860px) {
    .cta-banner.cta-playstore-showcase {
        padding: 36px 20px;
        text-align: center;
    }
    .cta-playstore-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-info-col h2 {
        font-size: 27px;
    }
    .cta-info-col p {
        margin: 0 auto 20px;
    }
    .cta-trust-chips {
        margin: 0 auto 24px;
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .cta-actions-group {
        justify-content: center;
    }
    .playstore-preview-card {
        max-width: 250px;
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* =========================================================================
   PREMIUM AL BARKAT GRAPHICS STYLE FOOTER (DARK & LIGHT THEME)
   ========================================================================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #081020;
    padding: 24px 0 16px;
    position: relative;
    z-index: 10;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Main Grid (Desktop: Brand | Contact | Quick Links & Legal Duo) */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr 1.6fr;
    gap: 36px;
    align-items: flex-start;
}

/* 1. Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-brand-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    background: #0f172a;
}

.footer-brand-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-urdu-tagline {
    font-size: 15px;
    font-weight: 700;
    color: #f59e0b;
    font-family: 'Amiri', 'Noto Naskh Arabic', serif;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.45;
    color: #94a3b8;
    margin: 0;
    max-width: 330px;
}

/* 2. Subheadings (CONTACT, QUICK LINKS, LEGAL) */
.footer-subheading {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #f59e0b;
    margin: 0 0 6px 0;
}

/* 2. Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-address-text {
    font-size: 13px;
    line-height: 1.4;
    color: #cbd5e1;
    margin: 0;
    max-width: 360px;
}

.footer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 1px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-contact-link:hover {
    color: #38bdf8;
    transform: translateY(-1px);
}

.footer-contact-link .contact-icon {
    font-size: 14px;
    line-height: 1;
}

.footer-email-row {
    display: flex;
    align-items: center;
    margin-top: 1px;
}

.footer-creator-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #94a3b8;
    margin-top: 2px;
    padding-top: 6px;
    border-top: 1px dashed rgba(255, 255, 255, 0.09);
    max-width: 360px;
}

.creator-mini-label {
    color: #94a3b8;
}

.creator-mini-name {
    color: #f8fafc;
    font-weight: 800;
}

.creator-mini-studio {
    color: #38bdf8;
    font-weight: 600;
}

/* 3 & 4. Navigation Columns (QUICK LINKS & LEGAL Side-by-Side Duo) */
.footer-links-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.footer-col-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-link-item {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    padding: 2px 0;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link-item:hover {
    color: #f59e0b;
    transform: translateX(3px);
}

/* Divider Line */
.footer-divider-line {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0 2px;
}

/* Bottom Bar: Copyright on Left, Social Icons on Right */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright-row {
    text-align: left;
    margin: 0;
}

.footer-copyright-text {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Circular Social Icons Row */
.footer-social-circle-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social-circle-btn svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}

.social-circle-btn:hover {
    transform: translateY(-3px) scale(1.06);
}

.social-circle-btn.insta-circle:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(214, 36, 159, 0.35);
}

.social-circle-btn.wa-circle:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.social-circle-btn.fb-circle:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}

.social-circle-btn.x-circle:hover {
    background: #000000;
    color: #ffffff;
    border-color: #333333;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.social-circle-btn.yt-circle:hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35);
}

/* =========================================================================
   LIGHT THEME HARMONY FOR AL BARKAT FOOTER
   ========================================================================= */
body.light-theme .footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

body.light-theme .footer-logo-img {
    background: #ffffff;
    border-color: #d97706;
}

body.light-theme .footer-brand-title {
    color: #0f172a;
}

body.light-theme .footer-urdu-tagline {
    color: #b45309;
}

body.light-theme .footer-tagline {
    color: #475569;
}

body.light-theme .footer-subheading {
    color: #b45309;
}

body.light-theme .footer-address-text {
    color: #334155;
}

body.light-theme .footer-contact-link {
    color: #1e293b;
}

body.light-theme .footer-contact-link:hover {
    color: #0284c7;
}

body.light-theme .footer-creator-line {
    border-top-color: #e2e8f0;
    color: #64748b;
}

body.light-theme .creator-mini-label {
    color: #64748b;
}

body.light-theme .creator-mini-name {
    color: #0f172a;
}

body.light-theme .creator-mini-studio {
    color: #0284c7;
}

body.light-theme .footer-link-item {
    color: #475569;
}

body.light-theme .footer-link-item:hover {
    color: #b45309;
}

body.light-theme .footer-divider-line {
    background: #e2e8f0;
}

body.light-theme .footer-copyright-text {
    color: #64748b;
}

body.light-theme .social-circle-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* =========================================================================
   MULTILINGUAL LANGUAGE SELECTOR DROPDOWN (ENGLISH, HINDI, URDU)
   ========================================================================= */
.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.btn-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f5f9;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    flex-shrink: 0;
}

.btn-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: scale(1.06);
}

.lang-dropdown-wrapper.is-open .btn-lang-toggle {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.lang-globe-svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    display: block;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    min-width: 185px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
    animation: langMenuAnim 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    padding: 6px 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3px;
}

.lang-dropdown-wrapper.is-open .lang-dropdown-menu {
    display: flex;
}

@keyframes langMenuAnim {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: all 0.18s ease;
}

.lang-menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #38bdf8;
}

.lang-menu-item.active {
    background: rgba(2, 132, 199, 0.2);
    color: #38bdf8;
    font-weight: 800;
}

.lang-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-check {
    font-size: 13px;
    color: #38bdf8;
}

/* Light Theme overrides for Language Selector */
body.light-theme .btn-lang-toggle {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

body.light-theme .btn-lang-toggle:hover {
    background: #f8fafc;
    border-color: #0284c7;
    color: #0284c7;
}

body.light-theme .lang-dropdown-menu {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

body.light-theme .lang-menu-item {
    color: #334155;
}

body.light-theme .lang-menu-item:hover {
    background: #f1f5f9;
    color: #0284c7;
}

body.light-theme .lang-menu-item.active {
    background: #e0f2fe;
    color: #0369a1;
}

/* ==========================================================================
   URDU TYPOGRAPHY ENGINE (EXACT SAME FONT AS THE APP - MEHR NASTALIQ WEB)
   ========================================================================== */
body.lang-urdu,
body.lang-urdu *,
html[lang="ur"],
html[lang="ur"] * {
    font-family: 'Mehr Nastaliq Web', 'MehrNastaliqWeb', 'Jameel Noori Nastaleeq', 'Urdu Typesetting', serif !important;
    letter-spacing: 0 !important;
}

/* Preserve Brand & Numerical Display in Urdu Mode */
body.lang-urdu .nav-brand,
body.lang-urdu .brand-text,
body.lang-urdu .nav-logo {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif !important;
}

body.lang-urdu .stat-number {
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 1px !important;
}

/* RTL Layout Alignment Adjustments */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .navbar .nav-wrapper {
    flex-direction: row-reverse;
}

html[dir="rtl"] .lang-dropdown-menu {
    right: 0 !important;
    left: auto !important;
}

@media (max-width: 480px) {
    html[dir="rtl"] .lang-dropdown-menu {
        right: -4px !important;
        left: auto !important;
        min-width: 175px;
    }
}

html[dir="rtl"] .hero-section,
html[dir="rtl"] .section-header,
html[dir="rtl"] .stats-section,
html[dir="rtl"] .cta-banner {
    text-align: center;
}

html[dir="rtl"] .comp-card,
html[dir="rtl"] .bento-card,
html[dir="rtl"] .faq-card,
html[dir="rtl"] .cta-info-col,
html[dir="rtl"] .footer-col {
    text-align: right;
}

/* Harmonious Line-Heights & Spacing to Prevent Nastaliq Collisions */
body.lang-urdu .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px;
    background: rgba(245, 158, 11, 0.1);
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.12);
    margin-bottom: 16px;
}

body.lang-urdu .hero-badge-text {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    padding: 1px 0;
}

body.lang-urdu .hero-title {
    font-size: clamp(26px, 4.2vw, 38px) !important;
    font-weight: 700 !important;
    line-height: 1.56 !important;
    margin-bottom: 14px !important;
    padding: 2px 0 !important;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: center;
}

body.lang-urdu .hero-title .gradient-gold {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.25));
}

html[data-theme="dark"] body.lang-urdu .hero-title .gradient-gold,
body.dark-theme.lang-urdu .hero-title .gradient-gold {
    background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(245, 158, 11, 0.4));
}

@media (max-width: 768px) {
    body.lang-urdu .hero-title {
        font-size: clamp(19px, 5.2vw, 23px) !important;
        line-height: 1.55 !important;
        padding: 2px 4px !important;
        margin-bottom: 10px !important;
    }
}

body.lang-urdu .hero-subtitle {
    font-size: 16px !important;
    line-height: 1.68 !important;
    max-width: 740px;
    margin: 0 auto 18px !important;
}

@media (max-width: 768px) {
    body.lang-urdu .hero-subtitle {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 14px !important;
        padding: 0 4px;
    }
}

body.lang-urdu .trust-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 26px;
    flex-wrap: wrap;
}

body.lang-urdu .trust-item {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    padding: 7px 18px !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(217, 119, 6, 0.28) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(217, 119, 6, 0.08) !important;
    color: #334155 !important;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.lang-urdu .trust-item:hover {
    border-color: rgba(217, 119, 6, 0.55) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.16) !important;
}

html[data-theme="dark"] body.lang-urdu .trust-item,
body.dark-theme.lang-urdu .trust-item {
    background: rgba(15, 23, 42, 0.85) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.32) !important;
    color: #f1f5f9 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

html[data-theme="dark"] body.lang-urdu .trust-item:hover,
body.dark-theme.lang-urdu .trust-item:hover {
    background: rgba(30, 41, 59, 0.95) !important;
    border-color: rgba(245, 158, 11, 0.6) !important;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.22) !important;
}

@media (max-width: 680px) {
    body.lang-urdu .trust-micro {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 6px !important;
        margin-top: 12px !important;
        margin-bottom: 18px !important;
    }
    body.lang-urdu .trust-item {
        font-size: 11.5px !important;
        line-height: 1.48 !important;
        padding: 6px 8px !important;
        justify-content: center !important;
        white-space: normal !important;
        text-align: center !important;
    }
}

body.lang-urdu .section-tag {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    padding: 6px 16px !important;
}

body.lang-urdu .section-title {
    font-size: 27px !important;
    line-height: 1.58 !important;
    padding: 3px 0 !important;
    margin-bottom: 8px !important;
    word-break: normal;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    body.lang-urdu .section-title {
        font-size: clamp(18px, 5vw, 22px) !important;
        line-height: 1.55 !important;
        padding: 2px 0 !important;
    }
}

body.lang-urdu .section-desc {
    font-size: 15px !important;
    line-height: 1.68 !important;
}

@media (max-width: 768px) {
    body.lang-urdu .section-desc {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        padding: 0 4px;
    }
}

body.lang-urdu .gallery-tab-btn {
    font-size: 14px !important;
    line-height: 1.55 !important;
    padding: 7px 16px !important;
}

@media (max-width: 680px) {
    body.lang-urdu .gallery-tab-btn {
        font-size: 12px !important;
        line-height: 1.5 !important;
        padding: 6px 12px !important;
    }
}

body.lang-urdu .coverflow-caption {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

@media (max-width: 680px) {
    body.lang-urdu .coverflow-caption {
        font-size: 10.5px !important;
        line-height: 1.5 !important;
        padding: 4px 6px !important;
    }
}

body.lang-urdu .stat-label {
    font-size: 14px !important;
    line-height: 1.55 !important;
}

body.lang-urdu .comp-card-badge {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    padding: 4px 12px !important;
}

body.lang-urdu .comp-title,
body.lang-urdu .bento-title {
    font-size: 19px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
}

body.lang-urdu .comp-text,
body.lang-urdu .bento-text {
    font-size: 14.5px !important;
    line-height: 1.72 !important;
}

body.lang-urdu .tag-pill {
    font-size: 12px !important;
    line-height: 1.45 !important;
    padding: 4px 10px !important;
}

body.lang-urdu .faq-q {
    font-size: 16px !important;
    line-height: 1.65 !important;
}

body.lang-urdu .faq-a {
    font-size: 14.5px !important;
    line-height: 1.72 !important;
}

body.lang-urdu .cta-banner h2 {
    font-size: 32px !important;
    line-height: 1.6 !important;
    padding: 4px 0 !important;
}

body.lang-urdu .cta-banner p {
    font-size: 15.5px !important;
    line-height: 1.72 !important;
}

body.lang-urdu .cta-trust-chip {
    padding: 8px 14px !important;
}

body.lang-urdu .cta-trust-chip .chip-text span {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
}

body.lang-urdu .cta-trust-chip .chip-text strong {
    line-height: 1.5 !important;
}

body.lang-urdu .nav-link {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

body.lang-urdu .nav-btn-playstore {
    gap: 6px;
    padding: 4px 10px;
    direction: ltr;
}

body.lang-urdu .nav-play-subtitle {
    font-size: 10px !important;
    line-height: 1.3 !important;
}

body.lang-urdu .nav-play-title {
    font-size: 12px !important;
    line-height: 1.4 !important;
    white-space: nowrap;
}

@media (max-width: 680px) {
    body.lang-urdu .nav-btn-playstore {
        max-width: 95px;
        padding: 3px 8px;
    }
    body.lang-urdu .nav-play-content {
        max-width: 65px;
    }
    body.lang-urdu .nav-play-title {
        font-size: 11px !important;
        line-height: 1.3 !important;
        max-width: 65px !important;
    }
    body.lang-urdu .comp-title,
    body.lang-urdu .bento-title {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 8px !important;
    }
    body.lang-urdu .comp-text,
    body.lang-urdu .bento-text {
        font-size: 13.5px !important;
        line-height: 1.68 !important;
    }
    body.lang-urdu .comp-card-badge {
        font-size: 11px !important;
        line-height: 1.5 !important;
    }
    body.lang-urdu .tag-pill {
        font-size: 10.5px !important;
        line-height: 1.45 !important;
    }
    body.lang-urdu .faq-q {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
    }
    body.lang-urdu .faq-a {
        font-size: 13.5px !important;
        line-height: 1.68 !important;
    }
    body.lang-urdu .cta-banner h2 {
        font-size: clamp(19px, 5.5vw, 24px) !important;
        line-height: 1.6 !important;
    }
    body.lang-urdu .cta-banner p {
        font-size: 13.5px !important;
        line-height: 1.68 !important;
    }
    body.lang-urdu .footer-tagline,
    body.lang-urdu .footer-connect-desc,
    body.lang-urdu .creator-info,
    body.lang-urdu .footer-nav-item,
    body.lang-urdu .footer-legal-link,
    body.lang-urdu .footer-copy-text {
        font-size: 12.5px !important;
        line-height: 1.65 !important;
    }
}

body.lang-urdu .play-subtext {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

body.lang-urdu .play-maintext {
    font-size: 18px !important;
    line-height: 1.5 !important;
}

body.lang-urdu .footer-tagline,
body.lang-urdu .footer-connect-desc,
body.lang-urdu .creator-info,
body.lang-urdu .footer-nav-item,
body.lang-urdu .footer-legal-link,
body.lang-urdu .footer-copy-text {
    line-height: 1.65 !important;
}

/* Hindi Font Typography */
body.lang-hindi {
    font-family: 'Plus Jakarta Sans', 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', sans-serif;
}

body.lang-hindi .hero-title,
body.lang-hindi .section-title,
body.lang-hindi .bento-title {
    font-family: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', sans-serif;
}

/* Mobile Responsive Adjustments */
@media (max-width: 960px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .footer-links-duo {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .footer {
        padding: 22px 0 16px;
    }
    .footer-container {
        padding: 0 16px;
        gap: 14px;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-links-duo {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .footer-bottom-bar {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .footer-copyright-row {
        text-align: center;
    }
    .footer-social-circle-bar {
        justify-content: center;
    }
}


/* =========================================================================
   RESPONSIVE DESIGN & LUXURY MOBILE OPTIMIZATIONS
   ========================================================================= */
@media (max-width: 900px) {
    .hero-title {
        font-size: 38px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.card-featured {
        grid-column: span 1;
    }
    .nav-menu {
        display: none;
    }
}

@media (max-width: 680px) {
    /* Container in Mobile */
    .container {
        padding: 0 14px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Navbar in Mobile */
    .navbar {
        width: 100%;
        max-width: 100vw;
        overflow: visible !important;
    }
    .navbar .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
    }
    .nav-wrapper {
        height: 54px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible !important;
    }
    .nav-brand {
        gap: 6px;
        min-width: 0;
        flex-shrink: 1;
    }
    .nav-logo {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    .brand-text {
        font-size: 15px;
        white-space: nowrap;
    }
    .nav-cta {
        gap: 6px;
        flex-shrink: 0;
        overflow: visible !important;
    }
    .lang-dropdown-wrapper {
        position: relative;
        overflow: visible !important;
        z-index: 1200;
    }
    .btn-lang-toggle {
        width: 32px;
        height: 32px;
        padding: 0;
        flex-shrink: 0;
    }
    .lang-dropdown-menu {
        top: calc(100% + 14px);
        left: -20px;
        right: auto;
        min-width: 180px;
        z-index: 1300 !important;
    }
    .nav-btn-playstore {
        padding: 4px 8px;
        height: 32px;
        gap: 5px;
        border-radius: 9999px;
        max-width: 115px;
        overflow: hidden;
    }
    .nav-play-svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }
    .nav-play-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 80px;
        overflow: hidden;
    }
    .nav-play-subtitle {
        display: none;
    }
    .nav-play-title {
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 78px;
    }
    .btn-theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 13px;
        flex-shrink: 0;
    }

    @media (max-width: 400px) {
        .navbar .container {
            padding: 0 6px;
        }
        .nav-brand {
            gap: 4px;
        }
        .brand-text {
            font-size: 13.5px;
        }
        .nav-cta {
            gap: 4px;
        }
        .nav-btn-playstore {
            padding: 3px 6px;
            max-width: 85px;
        }
        .nav-play-content {
            max-width: 58px;
        }
        .nav-play-title {
            font-size: 10px;
            max-width: 56px;
        }
        .btn-theme-toggle, .btn-lang-toggle {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }
        .lang-dropdown-menu {
            left: -32px;
            min-width: 175px;
        }
    }

    /* Section Titles in Mobile */
    .section-title {
        font-size: clamp(20px, 5.5vw, 26px);
        line-height: 1.25;
        letter-spacing: -0.4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .section-tag {
        font-size: 11px;
        letter-spacing: 1.2px;
    }
    .section-desc {
        font-size: 14px;
        line-height: 1.45;
        padding: 0 4px;
    }

    /* Hero Section in Mobile */
    .hero-section {
        padding: 16px 0 14px;
    }
    .hero-section .container {
        padding: 0 14px;
    }
    .hero-badge {
        font-size: 11.5px;
        padding: 5px 12px;
        gap: 6px;
        margin-bottom: 10px;
        max-width: 100%;
        letter-spacing: 0.1px;
    }
    .hero-badge-icon {
        font-size: 12px;
    }
    .hero-title {
        font-size: clamp(25px, 6.8vw, 32px);
        font-weight: 800;
        line-height: 1.22;
        letter-spacing: -0.6px;
        margin-bottom: 8px;
    }
    .desktop-br {
        display: none;
    }
    .mobile-br {
        display: block;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 14px;
        padding: 0 4px;
    }

    /* Hero CTAs on Mobile */
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 330px;
        margin: 0 auto 14px;
    }
    .btn-play-store, .btn-web-app {
        width: 100%;
        justify-content: center;
        padding: 11px 18px;
        border-radius: 14px;
        box-sizing: border-box;
    }
    .play-maintext {
        font-size: 16px;
    }
    .btn-web-app {
        font-size: 14px;
        padding: 12px 18px;
    }

    /* Trust Micro Pills - 2x2 Clean Mobile Chips */
    .trust-micro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px 8px;
        max-width: 330px;
        margin: 12px auto 0;
        padding: 0 4px;
    }
    .trust-item {
        font-size: 11px;
        font-weight: 600;
        justify-content: center;
        padding: 6px 6px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: #334155;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        white-space: nowrap;
    }
    body:not(.light-theme) .trust-item {
        background: rgba(15, 23, 42, 0.75);
        border-color: rgba(255, 255, 255, 0.09);
        color: #94a3b8;
    }

    /* Stats Grid on Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px 14px;
    }
    .stat-number {
        font-size: 26px;
    }
    .stat-label {
        font-size: 11.5px;
    }

    .cta-banner {
        padding: 32px 18px;
    }
    .cta-banner h2 {
        font-size: 23px;
    }
}

/* =========================================================================
   LIGHT THEME STYLES & ACCENTS (100% CLEAN - ZERO DARK ARTIFACTS)
   ========================================================================= */
html[data-theme="light"],
body.light-theme {
    --bg-primary: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.94);
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(217, 119, 6, 0.4);
    
    --color-gold: #d97706;
    --color-gold-light: #b45309;
    --color-emerald: #059669;
    --color-emerald-light: #047857;
    --color-cyan: #0284c7;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 35px rgba(217, 119, 6, 0.15);
    --shadow-emerald-glow: 0 0 35px rgba(5, 150, 105, 0.15);
}

body.light-theme {
    background: radial-gradient(circle at 50% 0%, #e2e8f0 0%, #f8fafc 50%, #f1f5f9 100%);
}

body.light-theme .brand-text {
    background: linear-gradient(135deg, #0f172a 30%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .btn-theme-toggle {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

body.light-theme .btn-nav-cal-header {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.35);
    color: #b45309;
}

body.light-theme .btn-nav-cal-header:hover {
    background: rgba(217, 119, 6, 0.16);
    color: #78350f;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

body.light-theme .hero-badge {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.35);
    color: #b45309;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.12);
}

body.light-theme .hero-title {
    color: #0f172a;
}

body.light-theme .hero-title .gradient-gold {
    background: linear-gradient(135deg, #b45309 0%, #d97706 40%, #f59e0b 80%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .hero-subtitle {
    color: #475569;
}

body.light-theme .hero-subtitle strong {
    color: #0f172a;
    font-weight: 600;
}

body.light-theme .section-title {
    color: #0f172a;
}

body.light-theme .section-desc {
    color: #475569;
}

body.light-theme .section-tag {
    color: #059669;
}

body.light-theme .stats-grid {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body.light-theme .stat-item {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 16px 12px;
}

body.light-theme .stat-number {
    background: linear-gradient(135deg, #b45309 0%, #d97706 60%, #92400e 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #b45309;
}

body.light-theme .stat-label {
    color: #64748b;
}

body.light-theme .bento-card {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
}

body.light-theme .bento-card.card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%) !important;
    border-color: rgba(217, 119, 6, 0.35) !important;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.08) !important;
}

body.light-theme .bento-card.card-emerald {
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%) !important;
    border-color: rgba(16, 185, 129, 0.35) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08) !important;
}

body.light-theme .bento-title {
    color: #0f172a;
}

body.light-theme .bento-text {
    color: #475569;
}

body.light-theme .faq-card {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04) !important;
}

body.light-theme .faq-q {
    color: #0f172a !important;
}

body.light-theme .faq-a {
    color: #475569 !important;
}

body.light-theme .phone-frame {
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 35px rgba(217, 119, 6, 0.2) !important;
}

body.light-theme .phone-notch {
    background: #e2e8f0 !important;
}

body.light-theme .notch-camera {
    background: #94a3b8 !important;
}

body.light-theme .footer {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

body.light-theme .nav-link {
    color: #475569;
}

body.light-theme .nav-link:hover {
    color: var(--color-gold);
}

body.light-theme .tag-pill {
    background: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}

body.light-theme .trust-item {
    color: #475569;
}

body.light-theme .cta-banner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%) !important;
    border-color: rgba(217, 119, 6, 0.3) !important;
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.15) !important;
}

body.light-theme .cta-banner h2 {
    color: #78350f;
}

body.light-theme .cta-banner p {
    color: #92400e;
}

body.light-theme .btn-web-app {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

body.light-theme .btn-web-app:hover {
    background: #f8fafc;
    border-color: #d97706;
    color: #b45309;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.2);
}

/* Google Play Store Button - Clean Luxury Light Theme (White & Crisp) */
html[data-theme="light"] .btn-play-store,
body.light-theme .btn-play-store {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

html[data-theme="light"] .btn-play-store:hover,
body.light-theme .btn-play-store:hover {
    background: #f8fafc !important;
    border-color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.18) !important;
}

html[data-theme="light"] .btn-play-store .play-store-icon,
body.light-theme .btn-play-store .play-store-icon {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

html[data-theme="light"] .btn-play-store .play-subtext,
body.light-theme .btn-play-store .play-subtext {
    color: #64748b !important;
}

html[data-theme="light"] .btn-play-store .play-maintext,
body.light-theme .btn-play-store .play-maintext {
    color: #0f172a !important;
}

/* Inside Golden CTA Banner in Light Theme */
html[data-theme="light"] .cta-banner .btn-play-store,
body.light-theme .cta-banner .btn-play-store {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1.5px solid rgba(217, 119, 6, 0.35) !important;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.14) !important;
}

html[data-theme="light"] .cta-banner .btn-play-store .play-subtext,
body.light-theme .cta-banner .btn-play-store .play-subtext {
    color: #64748b !important;
}

html[data-theme="light"] .cta-banner .btn-play-store .play-maintext,
body.light-theme .cta-banner .btn-play-store .play-maintext {
    color: #0f172a !important;
}

html[data-theme="light"] .cta-banner .btn-play-store:hover,
body.light-theme .cta-banner .btn-play-store:hover {
    background: #fefce8 !important;
    border-color: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.25) !important;
}

body.light-theme .ambient-glow-1 {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

body.light-theme .ambient-glow-2 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

body.light-theme .live-preview-header {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

body.light-theme .live-badge {
    color: #b45309;
}

body.light-theme .live-frame-wrapper {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

/* =========================================================================
   3D ADVANCED ANIMATIONS & MULTI-SECTION PERSPECTIVE STYLING
   ========================================================================= */

/* Hero 3D Floating Phone Mockup */
.mockup-wrapper-3d {
    margin: 40px auto 0;
    max-width: 330px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.phone-frame-3d {
    border-radius: 46px;
    border: 10px solid #1e293b;
    background: #0f172a;
    box-shadow: 20px 30px 60px rgba(0,0,0,0.45), 0 0 40px rgba(245, 158, 11, 0.25);
    overflow: hidden;
    position: relative;
    animation: float3DPhone 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-frame-3d:hover {
    animation-play-state: paused;
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.03) translateZ(30px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.5), 0 0 60px rgba(245, 158, 11, 0.45);
}

@keyframes float3DPhone {
    0%, 100% {
        transform: perspective(1200px) rotateY(-8deg) rotateX(5deg) translateY(0px);
        box-shadow: 20px 30px 60px rgba(0,0,0,0.4), 0 0 35px rgba(245, 158, 11, 0.25);
    }
    50% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(-16px);
        box-shadow: 25px 45px 80px rgba(0,0,0,0.5), 0 0 55px rgba(245, 158, 11, 0.4);
    }
}

body.light-theme .phone-frame-3d {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: 15px 25px 50px rgba(0,0,0,0.12), 0 0 35px rgba(217, 119, 6, 0.25);
}

.phone-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 34px;
}

.phone-glass-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    pointer-events: none;
    transform: translateX(-100%);
    animation: sheenSwipe 7s infinite;
}

@keyframes sheenSwipe {
    0%, 70% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Stats 3D Isometric Cards */
.stats-grid {
    perspective: 1000px;
}
.stat-item {
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.stat-item:hover {
    transform: translateZ(25px) translateY(-6px) scale(1.05);
}

/* 3D Screenshots Showcase Gallery */
.gallery-hero-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    overflow: hidden;
}
.gallery-3d-section {
    padding: 36px 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.gallery-tab-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-width: 100%;
}
.gallery-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.gallery-tab-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}
.gallery-tab-btn.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    border-color: #f59e0b;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
    transform: translateY(-3px) scale(1.03);
}
body.light-theme .gallery-tab-btn {
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
    color: #475569;
}
body.light-theme .gallery-tab-btn.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    border-color: #d97706;
}

/* =========================================================================
   3D REAL APP SCREENSHOTS COVERFLOW CAROUSEL
   Center 100% full visible, both sides semi-transparent with 3D depth
   ========================================================================= */
.gallery-coverflow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0 40px;
    user-select: none;
    overflow: hidden;
    touch-action: pan-y;
}

.gallery-coverflow-stage {
    position: relative;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1350px;
    transform-style: preserve-3d;
    max-width: 100%;
    touch-action: pan-y;
}

.coverflow-item {
    position: absolute;
    width: 290px;
    max-width: 76vw;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), 
                opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.65s ease,
                box-shadow 0.65s ease;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.coverflow-phone {
    width: 100%;
    border-radius: 42px;
    border: 9px solid #1e293b;
    background: #0f172a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

body.light-theme .coverflow-phone {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.coverflow-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 33px;
}

.coverflow-caption {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f8fafc;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 7px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

body.light-theme .coverflow-caption {
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 1. Active Center Slide (Full Visible, Elevated, Golden Glow) */
.coverflow-item.is-active {
    transform: perspective(1350px) translateX(0) translateZ(80px) scale(1) rotateY(0deg);
    opacity: 1;
    filter: none;
    z-index: 10;
    pointer-events: auto;
}

.coverflow-item.is-active .coverflow-phone {
    border-color: #f59e0b;
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.55), 0 0 45px rgba(245, 158, 11, 0.35);
    animation: centerSubtlePulse 6s ease-in-out infinite alternate;
}

body.light-theme .coverflow-item.is-active .coverflow-phone {
    border-color: #d97706;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 35px rgba(217, 119, 6, 0.25);
}

@keyframes centerSubtlePulse {
    0% { transform: translateY(0px) rotateZ(0deg); }
    100% { transform: translateY(-8px) rotateZ(0.2deg); }
}

/* 2. Previous Slide (Left - Semi-Transparent Peek) */
.coverflow-item.is-prev {
    transform: perspective(1350px) translateX(-64%) translateZ(-45px) scale(0.85) rotateY(24deg);
    opacity: 0.45;
    filter: blur(0.4px);
    z-index: 5;
    cursor: pointer;
}

.coverflow-item.is-prev:hover {
    opacity: 0.72;
    transform: perspective(1350px) translateX(-62%) translateZ(-30px) scale(0.88) rotateY(20deg);
}

/* 3. Next Slide (Right - Semi-Transparent Peek) */
.coverflow-item.is-next {
    transform: perspective(1350px) translateX(64%) translateZ(-45px) scale(0.85) rotateY(-24deg);
    opacity: 0.45;
    filter: blur(0.4px);
    z-index: 5;
    cursor: pointer;
}

.coverflow-item.is-next:hover {
    opacity: 0.72;
    transform: perspective(1350px) translateX(62%) translateZ(-30px) scale(0.88) rotateY(-20deg);
}

/* 4. Hidden Slides (Beyond Left / Right Peek) */
.coverflow-item.is-hidden-left,
.coverflow-item.is-hidden-right {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Navigation Arrow Buttons */
.coverflow-nav-btn {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    z-index: 25;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fbbf24;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
    outline: none;
}

.coverflow-nav-btn:hover {
    background: #f59e0b;
    color: #000;
    border-color: #f59e0b;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.coverflow-nav-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.coverflow-nav-btn.prev-btn {
    left: 14px;
}

.coverflow-nav-btn.next-btn {
    right: 14px;
}

body.light-theme .coverflow-nav-btn {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #d97706;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.light-theme .coverflow-nav-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    border-color: #d97706;
}

/* Dots Indicator */
.coverflow-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    position: relative;
    z-index: 20;
}

.coverflow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.coverflow-dot.active {
    width: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.55);
}

body.light-theme .coverflow-dot {
    background: rgba(0, 0, 0, 0.2);
}

body.light-theme .coverflow-dot.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4);
}

/* Mobile Responsiveness for 3D Carousel */
@media (max-width: 680px) {
    .gallery-hero-showcase {
        overflow: hidden;
        max-width: 100vw;
    }
    .gallery-3d-section {
        overflow: hidden;
        max-width: 100vw;
    }
    .gallery-tab-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 4px 6px 12px;
        margin-bottom: 16px;
        gap: 8px;
        scrollbar-width: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .gallery-tab-nav::-webkit-scrollbar {
        display: none;
    }
    .gallery-tab-btn {
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: 12.5px;
        gap: 6px;
        white-space: nowrap;
    }
    .gallery-coverflow-container {
        overflow: hidden;
        max-width: 100vw;
    }
    .gallery-coverflow-stage {
        height: 500px;
        perspective: 900px;
        overflow: hidden;
        max-width: 100vw;
    }
    .coverflow-item {
        width: 220px;
        max-width: 68vw;
    }
    .coverflow-phone {
        border-width: 7px;
        border-radius: 34px;
    }
    .coverflow-screenshot-img {
        border-radius: 27px;
    }
    .coverflow-caption {
        font-size: 9.5px;
        padding: 5px 8px;
        bottom: 8px;
    }
    .coverflow-item.is-prev {
        transform: perspective(900px) translateX(-42%) translateZ(-35px) scale(0.8) rotateY(16deg);
        opacity: 0.35;
    }
    .coverflow-item.is-next {
        transform: perspective(900px) translateX(42%) translateZ(-35px) scale(0.8) rotateY(-16deg);
        opacity: 0.35;
    }
    .coverflow-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .coverflow-nav-btn.prev-btn {
        left: 4px;
    }
    .coverflow-nav-btn.next-btn {
        right: 4px;
    }
}

/* Bento Cards 3D Tilt Hover */
.bento-grid {
    perspective: 1200px;
}
.bento-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}
.bento-card:hover {
    transform: perspective(1200px) translateY(-10px) rotateX(2deg) rotateY(-1deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 30px rgba(245, 158, 11, 0.25);
}
body.light-theme .bento-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 25px rgba(217, 119, 6, 0.2);
}

/* FAQ 3D Stagger Cards */
.faq-grid {
    perspective: 1000px;
}
.faq-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform-style: preserve-3d;
}
.faq-card:hover {
    transform: perspective(1000px) translateZ(15px) translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* CTA 3D Card Floating */
.cta-banner {
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: ctaFloat 6s ease-in-out infinite;
}
@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* =========================================================================
   WHY DIFFERENT / AURON SE ALAG KAISE HAI SECTION
   ========================================================================= */
.why-different-section {
    padding: 34px 0 28px;
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
    perspective: 1200px;
}

.comp-card {
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.comp-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 158, 11, 0.2);
}

.comp-card-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: 12px;
}

.comp-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(217, 119, 6, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.12);
}

.comp-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.comp-text {
    font-size: 14.5px;
    line-height: 1.45;
    color: #94a3b8;
    margin: 0;
    flex-grow: 1;
}

.comp-text strong {
    color: #f8fafc;
    font-weight: 600;
}

/* Light Theme Overrides for Why-Us Section */
html[data-theme="light"] .comp-card,
body.light-theme .comp-card {
    background: #ffffff;
    border-color: rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .comp-card:hover,
body.light-theme .comp-card:hover {
    border-color: #d97706;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), 0 0 25px rgba(217, 119, 6, 0.16);
}

html[data-theme="light"] .comp-card-badge,
body.light-theme .comp-card-badge {
    background: rgba(217, 119, 6, 0.09);
    color: #b45309;
    border-color: rgba(217, 119, 6, 0.28);
}

html[data-theme="light"] .comp-icon-box,
body.light-theme .comp-icon-box {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9), rgba(253, 230, 138, 0.5));
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.1);
}

html[data-theme="light"] .comp-title,
body.light-theme .comp-title {
    color: #0f172a;
}

html[data-theme="light"] .comp-text,
body.light-theme .comp-text {
    color: #475569;
}

html[data-theme="light"] .comp-text strong,
body.light-theme .comp-text strong {
    color: #0f172a;
}

/* Responsive Overrides */
@media (max-width: 960px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .why-different-section {
        padding: 24px 0 18px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
    }
    .comp-card {
        padding: 18px 16px 16px;
        border-radius: 18px;
    }
    .comp-title {
        font-size: 17.5px;
        margin-bottom: 6px;
    }
    .comp-text {
        font-size: 13.5px;
        line-height: 1.45;
    }
    .comp-icon-box {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 10px;
    }
}


/* =========================================================================
   COMPREHENSIVE MOBILE NAVIGATION, DRAWER & HERO CTA ENHANCEMENTS
   ========================================================================= */

/* Mobile Hamburger Toggle Button */
.btn-mobile-menu {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.12));
    background: var(--bg-surface, #11141e);
    color: var(--text-primary, #ffffff);
    cursor: pointer;
    padding: 0;
    gap: 4px;
    transition: all 0.25s ease;
    flex-shrink: 0;
    z-index: 1005;
}

.btn-mobile-menu:hover, .btn-mobile-menu:active {
    border-color: var(--color-gold, #d4af37);
    background: rgba(212, 175, 55, 0.12);
    transform: scale(1.05);
}

.hamburger-bar {
    display: block;
    width: 17px;
    height: 2px;
    background-color: var(--text-primary, #ffffff);
    border-radius: 2px;
    transition: all 0.25s ease;
}

body.light-theme .hamburger-bar {
    background-color: #1e293b;
}

body.light-theme .btn-mobile-menu {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
}

.btn-mobile-menu.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.btn-mobile-menu.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.btn-mobile-menu.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Backdrop */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    z-index: 998;
}

.nav-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-only-nav-item {
    display: none;
}

/* Hero CTA Group Styles */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 18px auto 16px;
    width: 100%;
    max-width: 580px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.hero-btn-webcal {
    background: linear-gradient(135deg, #d4af37 0%, #f59e0b 50%, #b45309 100%);
    color: #0b0f19 !important;
    font-weight: 800;
    font-size: 15.5px;
    padding: 13px 26px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-btn-webcal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5), 0 0 16px rgba(245, 158, 11, 0.4);
    filter: brightness(1.05);
}

.hero-btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 8px 22px;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-play:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(56, 189, 248, 0.35);
}

.hero-play-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(66, 133, 244, 0.5));
    transition: filter 0.25s ease, transform 0.25s ease;
}

.hero-btn-play:hover .hero-play-icon {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(66, 133, 244, 0.75));
}

.hero-play-texts {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.hero-play-sub {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #94a3b8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.25s ease;
}

.hero-play-main {
    font-size: 16.5px;
    font-weight: 800;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.25s ease;
}

/* Light Theme Styling for Hero Play Store Button */
html[data-theme="light"] .hero-btn-play,
body.light-theme .hero-btn-play {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

html[data-theme="light"] .hero-btn-play:hover,
body.light-theme .hero-btn-play:hover {
    background: #f8fafc !important;
    border-color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.2) !important;
}

html[data-theme="light"] .hero-btn-play .hero-play-icon,
body.light-theme .hero-btn-play .hero-play-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12)) !important;
}

html[data-theme="light"] .hero-btn-play:hover .hero-play-icon,
body.light-theme .hero-btn-play:hover .hero-play-icon {
    filter: drop-shadow(0 4px 8px rgba(2, 132, 199, 0.35)) !important;
}

html[data-theme="light"] .hero-btn-play .hero-play-sub,
body.light-theme .hero-btn-play .hero-play-sub {
    color: #64748b !important;
}

html[data-theme="light"] .hero-btn-play .hero-play-main,
body.light-theme .hero-btn-play .hero-play-main {
    color: #0f172a !important;
}

/* Dark Theme Styling for Hero Play Store Button */
html[data-theme="dark"] .hero-btn-play,
body:not(.light-theme) .hero-btn-play {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

html[data-theme="dark"] .hero-btn-play .hero-play-main,
body:not(.light-theme) .hero-btn-play .hero-play-main {
    color: #ffffff !important;
}

html[data-theme="dark"] .hero-btn-play .hero-play-sub,
body:not(.light-theme) .hero-btn-play .hero-play-sub {
    color: #94a3b8 !important;
}

html[data-theme="dark"] .hero-btn-play .hero-play-icon,
body:not(.light-theme) .hero-btn-play .hero-play-icon {
    filter: drop-shadow(0 0 8px rgba(66, 133, 244, 0.5)) !important;
}

/* RTL / Urdu Typography Optimization */
html[lang="urdu"], body[dir="rtl"] {
    line-height: 1.85;
}
html[lang="urdu"] .hero-title, body[dir="rtl"] .hero-title {
    line-height: 1.7 !important;
    font-size: clamp(22px, 5.8vw, 36px) !important;
}
html[lang="urdu"] .section-title, body[dir="rtl"] .section-title {
    line-height: 1.65 !important;
}
html[lang="urdu"] .bento-desc, body[dir="rtl"] .bento-desc,
html[lang="urdu"] .hero-subtitle, body[dir="rtl"] .hero-subtitle {
    line-height: 1.9 !important;
}
.bento-stat-num {
    direction: ltr !important;
    unicode-bidi: isolate !important;
}

/* Tablet & Mobile Breakpoint (max-width: 860px) */
@media (max-width: 860px) {
    .btn-mobile-menu {
        display: inline-flex !important;
    }
    .navbar .nav-btn-playstore {
        display: none !important;
    }
    .mobile-only-nav-item {
        display: block !important;
    }
    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 64px !important;
        right: 12px !important;
        left: 12px !important;
        background: var(--bg-surface-elevated, #131722) !important;
        border: 1px solid var(--border-gold-subtle, rgba(212, 175, 55, 0.28)) !important;
        border-radius: 20px !important;
        padding: 14px 12px 16px !important;
        gap: 6px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-14px) scale(0.97) !important;
        transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 999 !important;
        max-height: calc(100vh - 84px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }
    .nav-menu li {
        width: 100% !important;
        list-style: none !important;
    }
    .nav-menu .nav-link {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 11px 16px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        color: var(--text-primary, #f1f5f9) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
    }
    .nav-menu .nav-link:hover, .nav-menu .nav-link:active {
        background: rgba(212, 175, 55, 0.15) !important;
        color: var(--color-gold-light, #fbbf24) !important;
        border-color: rgba(212, 175, 55, 0.4) !important;
    }
    .nav-menu .nav-link-highlight {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(245, 158, 11, 0.12)) !important;
        color: var(--color-gold-light, #fbbf24) !important;
        border-color: rgba(212, 175, 55, 0.5) !important;
    }
    .nav-menu .nav-link-play-mobile {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(5, 150, 105, 0.1)) !important;
        color: #34d399 !important;
        border-color: rgba(52, 211, 153, 0.4) !important;
        font-weight: 700 !important;
    }
    body.light-theme .nav-menu {
        background: #ffffff !important;
        border-color: rgba(212, 175, 55, 0.4) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    }
    body.light-theme .nav-menu .nav-link {
        background: #f8fafc !important;
        border-color: #e2e8f0 !important;
        color: #1e293b !important;
    }
    body.light-theme .nav-menu .nav-link:hover {
        background: #fef3c7 !important;
        color: #b45309 !important;
        border-color: #f59e0b !important;
    }
}

/* Mobile Screen <= 680px */
@media (max-width: 680px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 330px;
        margin: 14px auto 14px;
    }
    .hero-cta-btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
    }
    .hero-btn-webcal {
        font-size: 15px;
    }
    .hero-play-main {
        font-size: 15.5px;
    }
    .hero-title {
        font-size: clamp(22px, 6.2vw, 32px) !important;
    }
}

/* =========================================================================
   Numeric PIN Security Modal (Web Calendar Access Gatekeeper)
   ========================================================================= */
.pin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.pin-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.pin-modal-card {
    position: relative;
    width: 100%;
    max-width: 370px;
    background: #0f172a;
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    border-radius: 26px;
    padding: 28px 24px 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 35px rgba(245, 158, 11, 0.18);
    text-align: center;
    transform: scale(0.92) translateY(16px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.pin-modal-overlay.active .pin-modal-card {
    transform: scale(1) translateY(0);
}

/* Light Theme PIN Modal */
html[data-theme="light"] .pin-modal-card,
body.light-theme .pin-modal-card {
    background: #ffffff;
    border: 1.5px solid rgba(217, 119, 6, 0.35);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.22), 0 0 32px rgba(217, 119, 6, 0.15);
}

.pin-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

html[data-theme="light"] .pin-close-btn,
body.light-theme .pin-close-btn {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #64748b;
}

.pin-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.pin-badge-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.08));
    border: 1.5px solid rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15);
}

.pin-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 5px;
    letter-spacing: -0.3px;
}

html[data-theme="light"] .pin-title,
body.light-theme .pin-title {
    color: #0f172a;
}

.pin-desc {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 18px;
    line-height: 1.45;
}

html[data-theme="light"] .pin-desc,
body.light-theme .pin-desc {
    color: #64748b;
}

/* 4 PIN Digit Slots */
.pin-slots-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    cursor: pointer;
}

.pin-slot {
    width: 52px;
    height: 54px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: #f59e0b;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

html[data-theme="light"] .pin-slot,
body.light-theme .pin-slot {
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    color: #d97706;
}

.pin-slot.active {
    border-color: #f59e0b;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.12);
}

.pin-slot.filled {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.18);
}

.pin-slot.success {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.16) !important;
    color: #10b981 !important;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.45) !important;
}

.pin-slot.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.16) !important;
    color: #ef4444 !important;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.45) !important;
}

/* Shake Animation on Error */
@keyframes pinCardShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

.pin-shake {
    animation: pinCardShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.pin-status-msg {
    min-height: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ef4444;
    transition: opacity 0.2s;
}

.pin-status-msg.success-msg {
    color: #10b981;
}

/* Tactile Numeric Keypad */
.pin-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 6px;
}

.keypad-btn {
    height: 50px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: all 0.15s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .keypad-btn,
body.light-theme .keypad-btn {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.keypad-btn:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-1px);
}

html[data-theme="light"] .keypad-btn:hover,
body.light-theme .keypad-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.keypad-btn:active {
    transform: scale(0.95);
    background: rgba(245, 158, 11, 0.35);
}

.keypad-btn.action-btn {
    font-size: 15px;
    color: #94a3b8;
}

html[data-theme="light"] .keypad-btn.action-btn,
body.light-theme .keypad-btn.action-btn {
    color: #64748b;
}

/* Hidden input for physical keyboard input */
.pin-hidden-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

