/* ==========================================
   DAWAT E AAM - Exact Mockup Redesign CSS
   ========================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Outfit:wght@400;700&family=Six+Caps&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700&family=Cormorant+Garamond:wght@400;700&family=Oswald:wght@400;700&family=Syne:wght@400;700&family=Antonio:wght@400;700&family=Yeseva+One&family=Italiana&display=swap');

/* --- Design Tokens / CSS Variables --- */
:root {
    /* Color Palette */
    --navy-dark: #121926;
    /* Base background deep slate blue */
    --navy-main: #1d2736;
    /* Cards & header background */
    --gold-main: #54a8f1;
    /* Primary blue accent */
    --gold-light: #1d2736;
    /* Darker slate card background */
    --gold-border: rgba(52, 122, 183, 0.35);
    /* Translucent blue border */

    /* Functional Colors */
    --bg-white: #121926;
    /* Dark background */
    --text-dark: #F1F5F9;
    /* Light text */
    --text-heading: #FFFFFF;
    /* White heading color */
    --text-muted: #94A3B8;
    /* Muted grey-blue */

    /* Semantic Colors */
    --fail-bg: rgba(239, 68, 68, 0.15);
    /* Translucent red background */
    --fail-border: rgba(239, 68, 68, 0.3);
    /* Translucent red border */
    --fail-text: #FCA5A5;
    /* Light red text */

    --success-bg: rgba(34, 197, 94, 0.15);
    /* Translucent green background */
    --success-border: rgba(34, 197, 94, 0.3);
    /* Translucent green border */
    --success-text: #86EFAC;
    /* Light green text */

    /* Typography */
    /*     
       --- PREMIUM FONTS (NO DOWNLOAD REQUIRED) ---
       Me tamara list na fonts na ekdam similar premium Google Fonts add kari didha chhe.
       
       Aakhi website (Header, Footer, Content) ma aa font test karva mate, niche thi koi pan ek joda ne uncomment karo: */

    /* --- Outfit (Similar to Delight) --- */

    --font-serif: 'Outfit', sans-serif;
    --font-sans: 'Outfit', sans-serif;


    /* --- Bodoni Moda (Similar to Emberly) --- */

    /* --font-serif: 'Bodoni Moda', serif;
    --font-sans: 'Bodoni Moda', serif; */


    /* --- Oswald (Similar to Mango Grotesque) --- */
    /* 
    --font-serif: 'Oswald', sans-serif;
    --font-sans: 'Oswald', sans-serif; */


    /* --- Antonio (Similar to Morganite) --- */
    /* 
    --font-serif: 'Antonio', sans-serif;
    --font-sans: 'Antonio', sans-serif; */


    /* --- Yeseva One (Similar to Meshed Display) --- */
    /* 
    --font-serif: 'Yeseva One', serif;
    --font-sans: 'Yeseva One', serif; */


    /* --- Italiana (Similar to Moniqa) --- */

    /* --font-serif: 'Italiana', serif;
    --font-sans: 'Italiana', serif; */


    /* --- DEFAULT FONTS (Kadhi nakho jo upar thi koi select karyu hoy) --- */
    /* --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', Arial, sans-serif; */
    --font-arabic: 'Amiri', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* --- Resets --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* --- Dual Column Layout Wrapper --- */
.page-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ==========================================
   LEFT COLUMN: SIDEBAR
   ========================================== */
.sidebar {
    width: 320px;
    background-color: var(--navy-dark);
    color: #FFFFFF;
    flex-shrink: 0;
    padding: 2.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

/* Custom scrollbar for sidebar if needed */
.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Sidebar elements */
.sidebar-logo {
    width: 100%;
    max-width: 190px;
    object-fit: contain;
}

.sidebar-maulana {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 19/28;
}

.sidebar-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    margin: 0.2rem 0;
    position: relative;
    border: none;
}

.sidebar-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-main);
    font-size: 0.7rem;
    background-color: var(--navy-dark);
    padding: 0 0.5rem;
}

.sidebar-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.4;
    padding: 0 0.5rem;
}

/* Arabic verse card */
.sidebar-verse-card {
    background-color: var(--gold-light);
    color: var(--navy-dark);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 1.2rem;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Decorative quotes */
.sidebar-verse-card::before {
    content: '“';
    position: absolute;
    top: 0.2rem;
    left: 0.5rem;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-main);
    line-height: 1;
    opacity: 0.3;
}

.sidebar-verse-card::after {
    content: '”';
    position: absolute;
    bottom: -1rem;
    right: 0.5rem;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-main);
    line-height: 1;
    opacity: 0.3;
}

.sidebar-verse-arabic {
    font-family: var(--font-arabic);
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    direction: rtl;
}

.sidebar-verse-english {
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    color: #475569;
    line-height: 1.3;
}

.sidebar-verse-ref {
    font-size: 0.75rem;
    text-align: center;
    color: #64748B;
    margin-top: 0.3rem;
}

/* Reconnecting List */
.sidebar-list-container {
    width: 100%;
}

.sidebar-list-title {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #E2E8F0;
    line-height: 1.3;
}

.sidebar-list-item svg {
    color: var(--gold-main);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================
   RIGHT COLUMN: MAIN CONTENT
   ========================================== */
.main-content {
    flex-grow: 1;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Sticky Header navigation */
header.glass-nav {
    background-color: rgba(18, 25, 38, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 2rem;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Home Icon Link */
.home-icon-link {
    color: #94A3B8;
    display: flex;
    align-items: center;
}

.home-icon-link:hover {
    color: #FFFFFF;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94A3B8;
    position: relative;
    padding: 0.2rem 0;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: #FFFFFF;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-main);
    transition: var(--transition-fast);
}

.nav-item.active::after,
.nav-item:hover::after {
    width: 100%;
}

.btn-header {
    background-color: var(--gold-main);
    color: #FFFFFF;
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--gold-main);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.btn-header:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* Header Auth Buttons container & login button styles */
.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.btn-login {
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
    padding: 0.65rem 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    color: var(--gold-main);
}

@media (max-width: 768px) {
    .header-auth-buttons {
        gap: 0.6rem;
    }

    .btn-login {
        font-size: 0.8rem;
        padding: 0.4rem 0.2rem;
    }

    header.glass-nav .btn-header {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}


/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 25px;
    height: 20px;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-normal);
}

/* Main content body padding */
.main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero-left h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-heading);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold-main);
}

.hero-divider-dot {
    color: var(--gold-main);
    font-size: 0.8rem;
}

.hero-subheadline {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-main);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.btn-primary {
    background-color: var(--navy-main);
    color: #FFFFFF;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--navy-main);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--navy-main);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: transparent;
    color: var(--navy-main);
    border: 1px solid rgba(11, 19, 32, 0.3);
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--navy-main);
    background-color: rgba(11, 19, 32, 0.02);
}

/* Hero Right Gold Card */
.hero-right-card {
    background-color: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: 0 10px 25px rgba(84, 168, 241, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.card-title-block {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.card-quote-mark {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-main);
    line-height: 1;
    margin-top: -0.6rem;
    opacity: 0.6;
}

.card-title-block h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-list-item svg {
    color: var(--success-text);
    margin-top: 2px;
    flex-shrink: 0;
}

.card-footer-text {
    border-top: 1px solid rgba(229, 213, 192, 0.6);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-footer-bold {
    font-weight: 700;
    color: var(--navy-main);
    font-size: 0.95rem;
}

.card-footer-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
}

/* ==========================================
   FAILURE vs SUCCESS COMPARISON
   ========================================== */
.comparison-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.comparison-card {
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid transparent;
}

.comparison-card.fail {
    background-color: var(--fail-bg);
    border-color: var(--fail-border);
    color: var(--fail-text);
}

.comparison-card.success {
    background-color: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text);
}

.comp-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.comp-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fail .comp-header-icon {
    background-color: var(--fail-text);
    color: #FFFFFF;
}

.success .comp-header-icon {
    background-color: var(--success-text);
    color: #FFFFFF;
}

.comp-header h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.fail h2 {
    color: var(--fail-text);
}

.success h2 {
    color: var(--success-text);
}

.comp-subheader {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.comp-item svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.comp-item span {
    font-weight: 500;
}

.fail .comp-item span {
    color: #FFA3A3;
}

.success .comp-item span {
    color: #86EFAC;
}

.comp-footer-desc {
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Center Arrow Badge */
.comparison-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--navy-main);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

/* ==========================================
   FEATURES BAR ROW
   ========================================== */
.features-bar {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: #F8FAFC;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-right: 1px solid #E2E8F0;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon-wrapper {
    color: var(--navy-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
}

/* ==========================================
   TARGET AUDIENCE SECTION (PERFECT FOR)
   ========================================== */
.audience-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.audience-card h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.audience-card h2 svg {
    color: var(--text-muted);
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #334155;
}

.audience-item svg {
    color: var(--success-text);
    flex-shrink: 0;
}

/* ==========================================
   OTT PLATFORM SECTION
   ========================================== */
.ott-section {
    border-top: 1px solid #F1F5F9;
    padding-top: 3rem;
}

.ott-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.ott-title h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-heading);
}

.ott-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.ott-tabs {
    display: flex;
    gap: 0.5rem;
    background: #F1F5F9;
    padding: 0.3rem;
    border-radius: 6px;
}

.tab-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: var(--navy-main);
    color: #FFFFFF;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-normal);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

.course-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background-color: var(--navy-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-thumb img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.85;
}

.badge-level {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(5, 11, 20, 0.85);
    color: var(--gold-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.duration-tag {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 11, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.course-card:hover .play-overlay {
    opacity: 1;
}

.play-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gold-main);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.course-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.course-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.course-info h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-heading);
}

.course-instructor {
    margin-top: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid #F1F5F9;
    padding-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.course-instructor img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
    background-color: var(--navy-dark);
    color: #FFFFFF;
    border-top: 5px solid var(--gold-main);
    padding: 3rem;
}

.legacy-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-left h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
}

.footer-left p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
}

.footer-left a {
    color: var(--gold-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-center {
    display: flex;
    justify-content: center;
    color: var(--gold-main);
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-tag {
    font-size: 0.8rem;
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-right h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #FFFFFF;
    line-height: 1.1;
}

.btn-footer {
    background-color: var(--gold-main);
    color: var(--navy-dark);
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid var(--gold-main);
    box-shadow: 0 4px 10px rgba(84, 168, 241, 0.2);
    transition: var(--transition-fast);
}

.btn-footer:hover {
    background-color: transparent;
    color: var(--gold-main);
}

.footer-right-desc {
    font-size: 0.8rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* ==========================================
   VIDEO PLAYER MODAL
   ========================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 11, 20, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 850px;
    aspect-ratio: 16/9;
    background-color: var(--navy-dark);
    border-radius: 6px;
    border: 1px solid var(--gold-border);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFFFFF;
    font-size: 1rem;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.modal-close-btn:hover {
    color: var(--gold-main);
}

.video-player-container {
    width: 100%;
    height: 100%;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    gap: 1.2rem;
    background: linear-gradient(135deg, var(--navy-main) 0%, var(--navy-dark) 100%);
    text-align: center;
    padding: 2rem;
}

.video-placeholder .play-circle-large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--gold-main);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(84, 168, 241, 0.3);
}

.video-placeholder h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #FFFFFF;
}

.video-placeholder p {
    color: #94A3B8;
    max-width: 450px;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Large Tablets / Small Desktops (1100px) */
@media (max-width: 1100px) {
    .main-wrapper {
        padding: 2rem;
        gap: 3.5rem;
    }

    header.glass-nav {
        padding: 1.2rem 2rem;
    }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
    .page-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 2rem;
        gap: 1.5rem;
        border-right: none;
        border-bottom: 2px solid var(--gold-main);
    }

    .sidebar-maulana {
        max-width: 250px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 0.8rem;
    }

    .feature-item:nth-child(3),
    .feature-item:last-child {
        border-bottom: none;
    }
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {
    header.glass-nav {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 110;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background-color: var(--navy-main);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease, visibility 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 100;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .comparison-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .comparison-arrow {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .audience-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .feature-item:last-child {
        border-bottom: none !important;
    }

    .legacy-footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-center {
        display: none;
    }
}

/* Small Mobiles (480px) */
@media (max-width: 480px) {
    .main-wrapper {
        padding: 1.5rem;
    }

    .hero-left h1 {
        font-size: 2.3rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        text-align: center;
    }

    .features-bar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ABOUT US PAGE SPECIFIC STYLES (OTT THEME)
   ========================================== */

/* Dark Theme Body Overrides */
body.dark-theme {
    background-color: var(--navy-dark) !important;
    color: #F1F5F9 !important;
}

body.dark-theme header.glass-nav {
    background-color: rgba(5, 11, 20, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .nav-item {
    color: #94A3B8 !important;
}

body.dark-theme .nav-item:hover,
body.dark-theme .nav-item.active {
    color: #FFFFFF !important;
}

body.dark-theme .nav-item::after {
    background-color: var(--gold-main) !important;
}

body.dark-theme header.glass-nav .btn-header {
    background-color: var(--navy-main);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-theme header.glass-nav .btn-header:hover {
    background-color: var(--gold-main);
    color: var(--navy-dark);
    border-color: var(--gold-main);
}

/* About Hero Banner (Prime/Hotstar Cinematic Hero) */
.about-hero {
    padding: 10rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(84, 168, 241, 0.12) 0%, var(--navy-dark) 50%);
}

.about-hero::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 19, 32, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-content {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.about-hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.about-hero h1 span {
    color: var(--gold-main);
}

.about-hero-desc {
    font-size: 1.15rem;
    color: #94A3B8;
    max-width: 680px;
    line-height: 1.6;
}

.about-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(84, 168, 241, 0.35);
}

/* About Story Section */
.about-story-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.story-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-left h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
    font-weight: 700;
}

.story-left p {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.65;
}

.story-right-card {
    background: rgba(11, 19, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold-main);
    border-radius: 4px var(--border-radius-md) var(--border-radius-md) 4px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.story-right-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-main);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.story-right-card p {
    font-size: 0.95rem;
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-right-card p:last-child {
    margin-bottom: 0;
}

/* About Statistics Section */
.about-stats-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(11, 19, 32, 0.5);
    border: 1px solid rgba(84, 168, 241, 0.15);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
    box-shadow: 0 15px 30px rgba(84, 168, 241, 0.12), 0 0 15px rgba(84, 168, 241, 0.08);
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold-main);
    margin-bottom: 0.4rem;
    line-height: 1;
    text-shadow: 0 0 15px rgba(84, 168, 241, 0.25);
}

.stat-label {
    font-size: 0.8rem;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cast and Crew Section (Hotstar/Prime X-Ray layout) */
.cast-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cast-section-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cast-section-title h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
}

.cast-section-title p {
    color: #94A3B8;
    font-size: 0.95rem;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 2rem;
}

.cast-card {
    position: relative;
    aspect-ratio: 3/4.2;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.cast-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cast-card:hover img {
    transform: scale(1.06);
}

.cast-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(5, 11, 20, 0.98) 25%, rgba(5, 11, 20, 0.7) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-normal);
    z-index: 2;
}

.cast-card:hover .cast-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(5, 11, 20, 0.99) 30%, rgba(5, 11, 20, 0.85) 60%, rgba(5, 11, 20, 0.4) 100%);
}

.cast-name {
    color: #FFFFFF;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    transition: var(--transition-fast);
}

.cast-card:hover .cast-name {
    color: var(--gold-main);
}

.cast-role {
    color: var(--gold-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.cast-desc {
    font-size: 0.8rem;
    color: #94A3B8;
    line-height: 1.45;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.cast-card:hover .cast-desc {
    max-height: 120px;
    opacity: 1;
}

/* Explore Genre Library Categories Section */
.ott-genre-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.genre-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.genre-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.genre-card:hover img {
    opacity: 0.35;
    transform: scale(1.05);
}

.genre-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.7) 0%, rgba(5, 11, 20, 0.95) 100%);
    transition: var(--transition-normal);
}

.genre-card:hover .genre-card-content {
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.5) 0%, rgba(5, 11, 20, 0.85) 100%);
    border: 1px solid rgba(84, 168, 241, 0.2);
    border-radius: 8px;
}

.genre-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.genre-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.genre-hd {
    color: var(--gold-main);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.genre-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.genre-bottom h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 700;
}

.genre-bottom p {
    font-size: 0.8rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE OVERRIDES FOR ABOUT PAGE
   ========================================== */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .about-story-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .genre-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 4rem 0;
    }

    .about-hero h1 {
        font-size: 2.4rem;
    }

    .about-hero-desc {
        font-size: 1rem;
    }

    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .genre-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .cast-grid {
        grid-template-columns: 1fr;
    }

    .story-right-card {
        padding: 1.8rem;
    }
}

/* ==========================================
   PRICING PAGE SPECIFIC STYLES (OTT THEME)
   ========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 1.5rem;
}

.pricing-card {
    background: rgba(11, 19, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--gold-main);
    transform: scale(1.03);
    position: relative;
    box-shadow: 0 15px 35px rgba(84, 168, 241, 0.18), 0 0 20px rgba(84, 168, 241, 0.08);
}

.pricing-card.popular:hover {
    transform: translateY(-5px) scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-main);
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 1.2rem;
    border-radius: 12px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(84, 168, 241, 0.4);
}

/* Pricing Card Header */
.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.5rem;
}

.pricing-card-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #FFFFFF;
    font-weight: 700;
}

.pricing-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-currency {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 700;
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: #94A3B8;
}

.pricing-card-header p {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* Pricing Card Body */
.pricing-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pricing-features-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94A3B8;
}

.pricing-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: #E2E8F0;
    line-height: 1.35;
}

.pricing-feature-item svg {
    color: var(--gold-main);
    margin-top: 1px;
    flex-shrink: 0;
}

/* Pricing Card Footer */
.pricing-card-footer {
    margin-top: 1rem;
}

.pricing-card-footer .btn {
    width: 100%;
    text-align: center;
    border-radius: 4px;
    font-weight: 700;
}

.pricing-card-footer .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.pricing-card-footer .btn-outline:hover {
    border-color: var(--gold-main);
    color: var(--gold-main);
    background-color: rgba(255, 255, 255, 0.02);
}

/* ==========================================
   DETAILED COMPARISON TABLE
   ========================================== */
.comparison-table-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4.5rem;
}

.comparison-table-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.comparison-table-container {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.comparison-table th {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: #FFFFFF;
    font-weight: 700;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    color: #FFFFFF;
    font-weight: 600;
    width: 40%;
}

.comparison-table td {
    color: #94A3B8;
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

.table-check {
    color: var(--gold-main);
}

.table-dash {
    color: #475569;
}

/* ==========================================
   FAQ SECTION ACCORDION
   ========================================== */
.faq-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4.5rem;
}

.faq-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    text-align: center;
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(11, 19, 32, 0.25);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-header {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--gold-main);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--gold-main);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0 1.75rem;
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.55;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

/* ==========================================
   RESPONSIVE OVERRIDES FOR PRICING
   ========================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 450px;
        margin: 1.5rem auto 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px) scale(1);
    }
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 35%;
    }

    .faq-header {
        padding: 1.1rem 1.3rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.3rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.3rem 1.2rem 1.3rem;
    }
}

/* ==========================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-form-card {
    background: rgba(11, 19, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-form-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-card p {
    font-size: 0.9rem;
    color: #94A3B8;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94A3B8;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(5, 11, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold-main);
    background: rgba(5, 11, 20, 0.8);
    box-shadow: 0 0 8px rgba(84, 168, 241, 0.2);
}

.contact-form .btn-primary {
    align-self: flex-start;
    border-radius: 4px;
    padding: 0.85rem 2rem;
    font-weight: 700;
}

/* Contact Info Cards (Right) */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(11, 19, 32, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: rgba(84, 168, 241, 0.1);
    color: var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-info-details h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.contact-info-details p {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* ==========================================
   BLOG INDEX PAGE SPECIFIC STYLES
   ========================================== */
.blog-featured-section {
    width: 100%;
}

.blog-featured-card {
    background: rgba(11, 19, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.blog-featured-thumb {
    position: relative;
    aspect-ratio: 16/10;
    background-color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-featured-thumb img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-thumb img {
    transform: scale(1.05);
}

.blog-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.blog-tag-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-tag {
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-time {
    color: #94A3B8;
}

.blog-featured-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.25;
}

.blog-featured-content p {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.5;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #CBD5E1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.blog-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--gold-main);
}

/* Blog grid styling */
.blog-grid-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.2rem;
}

.blog-card {
    background: rgba(11, 19, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-card-thumb {
    aspect-ratio: 16/10;
    background-color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.blog-card-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-info h3 {
    color: var(--gold-main);
}

.blog-card-info p {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.45;
}

/* ==========================================
   BLOG DETAIL / READER PAGE SPECIFIC STYLES
   ========================================== */
.article-header {
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.article-header h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
}

.article-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94A3B8;
}

.article-author-block {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.article-author-block img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
}

.article-author-info h4 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
}

.article-author-info p {
    font-size: 0.75rem;
    color: #94A3B8;
}

.article-container {
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 0;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-body p {
    margin-bottom: 0.5rem;
}

.article-body h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-top: 2rem;
    font-weight: 700;
}

.article-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-top: 1.5rem;
    font-weight: 700;
}

.article-body blockquote {
    border-left: 4px solid var(--gold-main);
    background: rgba(84, 168, 241, 0.04);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #F8FAFC;
    border-radius: 0 6px 6px 0;
    line-height: 1.6;
}

.article-body ul,
.article-body ol {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.article-body li {
    font-size: 1rem;
    color: #E2E8F0;
}

/* Callout Box for Arabic Verses */
.arabic-callout-box {
    background: rgba(11, 19, 32, 0.5);
    border: 1px dashed var(--gold-border);
    border-radius: 6px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.arabic-callout-text {
    font-family: var(--font-arabic);
    font-size: 2.2rem;
    color: #FFFFFF;
    line-height: 1.4;
    direction: rtl;
    margin-bottom: 0.8rem;
}

.arabic-callout-translation {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold-main);
    line-height: 1.4;
}

.arabic-callout-ref {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-top: 0.4rem;
}

/* Related articles footer */
.related-articles-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4rem;
}

.related-articles-section h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

/* ==========================================
   RESPONSIVE OVERRIDES FOR CONTACT/BLOGS
   ========================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 2.2rem 1.8rem;
    }

    .article-header {
        padding: 2rem 0;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .article-container {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .arabic-callout-text {
        font-size: 1.8rem;
    }
}

/* ==========================================
   PREMIUM REDESIGNED FOOTER SYSTEM
   ========================================== */
.site-footer {
    background-color: #03070d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2.5rem 0;
    color: #94A3B8;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 2fr 2fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

.footer-title {
    font-family: var(--font-sans);
    color: var(--gold-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-app-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-app-btn {
    display: inline-block;
    transition: transform var(--transition-fast), filter var(--transition-fast);
    text-decoration: none;
    line-height: 0;
}

.footer-app-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: #E2E8F0;
    text-decoration: none;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--gold-main);
}

.footer-contact-item svg {
    color: var(--gold-main);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-social-btn:hover {
    border-color: var(--gold-main);
    background: rgba(52, 122, 183, 0.08);
    color: var(--gold-main);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #64748B;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links a {
    color: #64748B;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* Footer Responsive Overrides */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-logo-img {
        align-self: center;
    }

    .footer-app-box {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-app-badges {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ==========================================================================
   REDESIGNED SIDEBAR-FREE FULL WIDTH HOME PAGE COMPONENTS (DARK THEME)
   ========================================================================== */

/* Redesigned 2-Column Hero Layout */
.hero-section.redesigned-hero {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
}

.hero-image-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-portrait-card {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(52, 122, 183, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(52, 122, 183, 0.15);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-portrait-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 50px rgba(52, 122, 183, 0.3);
}

.hero-portrait-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 19/28;
    display: block;
}

.hero-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero-content-col h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF !important;
}

.hero-content-col h1 span {
    color: var(--gold-main);
    /* Blue Accent #54a8f1 */
}

.hero-content-col .hero-description {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.6;
}

/* Calligraphy Reflection Banner */
.calligraphy-banner {
    background: radial-gradient(circle at center, #1d2736 0%, #121926 100%);
    border: 1px solid rgba(52, 122, 183, 0.25);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.calligraphy-arabic {
    font-family: var(--font-arabic);
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    direction: rtl;
    text-shadow: 0 0 15px rgba(52, 122, 183, 0.4);
}

.calligraphy-translation {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: #94A3B8;
    max-width: 700px;
    line-height: 1.4;
}

.calligraphy-ref {
    font-size: 0.9rem;
    color: var(--gold-main);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Reconnecting Outcomes Section */
.reconnect-outcomes-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 0;
}

.outcomes-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.outcomes-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF !important;
    margin-bottom: 0.5rem;
}

.outcomes-header p {
    color: #94A3B8;
    font-size: 0.95rem;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.outcome-card {
    background-color: #1d2736;
    border: 1px solid rgba(52, 122, 183, 0.2);
    border-radius: 10px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.outcome-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
    box-shadow: 0 6px 15px rgba(52, 122, 183, 0.15);
}

.outcome-card-icon {
    color: var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(52, 122, 183, 0.15);
    border-radius: 50%;
}

.outcome-card p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #E2E8F0;
    line-height: 1.4;
}

/* Quranic Understanding Section */
.quran-understanding-section {
    background-color: #1d2736;
    border: 1px solid rgba(52, 122, 183, 0.25);
    border-radius: 12px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 2rem 0;
}

.understanding-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.understanding-left h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF !important;
    line-height: 1.3;
}

.understanding-left p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
}

.understanding-left .highlight-text {
    font-weight: 700;
    color: var(--gold-main);
}

.understanding-right-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.understanding-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #E2E8F0;
    line-height: 1.4;
}

.understanding-list-item svg {
    color: var(--gold-main);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Global Overrides for Dark Theme (Entire Site) */
body.dark-theme {
    background-color: var(--navy-dark) !important;
    color: #F1F5F9 !important;
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: #FFFFFF !important;
}

body.dark-theme header.glass-nav {
    background-color: rgba(18, 25, 38, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .nav-item {
    color: #94A3B8 !important;
}

body.dark-theme .nav-item:hover,
body.dark-theme .nav-item.active {
    color: #FFFFFF !important;
}

body.dark-theme .nav-item::after {
    background-color: var(--gold-main) !important;
}

body.dark-theme header.glass-nav .btn-header {
    background-color: var(--gold-main) !important;
    border-color: var(--gold-main) !important;
    color: #FFFFFF !important;
}

body.dark-theme header.glass-nav .btn-header:hover {
    background-color: transparent !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* Homepage Dark Theme Sections Overrides */
body.dark-theme .features-bar {
    background-color: #1d2736 !important;
    border-color: rgba(52, 122, 183, 0.25) !important;
}

body.dark-theme .feature-item {
    border-right-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .feature-item h3 {
    color: #FFFFFF !important;
}

body.dark-theme .feature-icon-wrapper {
    color: var(--gold-main) !important;
}

body.dark-theme .ott-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .ott-title h2 {
    color: #FFFFFF !important;
}

body.dark-theme .ott-tabs {
    background: rgba(255, 255, 255, 0.05) !important;
}

body.dark-theme .tab-btn {
    color: #94A3B8 !important;
}

body.dark-theme .tab-btn.active {
    background-color: var(--gold-main) !important;
    color: #FFFFFF !important;
}

body.dark-theme .course-card {
    background: #1d2736 !important;
    border-color: rgba(52, 122, 183, 0.2) !important;
}

body.dark-theme .course-card h3 {
    color: #FFFFFF !important;
}

body.dark-theme .course-meta {
    color: var(--gold-main) !important;
}

body.dark-theme .course-instructor span {
    color: #94A3B8 !important;
}

body.dark-theme .audience-section h2 {
    color: #FFFFFF !important;
}

body.dark-theme .audience-card {
    background: #1d2736 !important;
    border: 1px solid rgba(52, 122, 183, 0.2) !important;
    border-radius: 10px;
    padding: 2.5rem;
}

body.dark-theme .audience-item p {
    color: #94A3B8 !important;
}

body.dark-theme .audience-item span {
    color: #FFFFFF !important;
}

/* Tablet & Mobile Hero Responsiveness */
@media (max-width: 1024px) {
    .hero-section.redesigned-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-image-col {
        order: 1;
        /* Portrait image sits above the content on mobile */
    }

    .hero-content-col {
        order: 2;
        align-items: center;
    }

    .hero-portrait-card {
        max-width: 300px;
    }

    .calligraphy-arabic {
        font-size: 2.4rem;
    }

    .calligraphy-translation {
        font-size: 1.15rem;
    }

    .outcome-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quran-understanding-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Watch Intro Button Visibility */
    .btn-secondary {
        color: #FFFFFF !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
    }

    .btn-secondary:hover {
        border-color: #FFFFFF !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
    }

    /* Mobile Hero Heading & Image scaling */
    .hero-section.redesigned-hero {
        padding: 2rem 1.5rem !important;
        gap: 2rem !important;
    }

    .hero-content-col {
        gap: 1.2rem !important;
    }

    .hero-content-col h1 {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
    }

    .hero-portrait-card {
        max-width: 220px !important;
        margin: 0 auto !important;
    }

    .hero-subheadline {
        font-size: 1.15rem !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-col h1 {
        font-size: 1.8rem !important;
    }

    .hero-portrait-card {
        max-width: 180px !important;
    }
}