@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Noto+Nastaliq+Urdu:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --deep-navy: #0d1b2a;
    --midnight: #1b2a3b;
    --slate: #2c3e50;
    --moonlight: #c8d8e8;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --gold: #c9a84c;
    --soft-gold: #e8d5a3;
    --lavender: #8b9dc3;
    --muted-blue: #4a6fa5;
    --text-dark: #1a1a2e;
    --text-body: #2d3748;
    --text-muted: #718096;
    --border: #d4c5a9;
    --shadow: rgba(13, 27, 42, 0.15);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--warm-white);
    color: var(--text-body);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

body.urdu-content {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
}

.urdu-text {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    direction: rtl;
    line-height: 2.2;
}


#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-moon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 20px 0 0 var(--gold);
    animation: moonPulse 1.5s ease-in-out infinite;
}

@keyframes moonPulse {
    0%, 100% { box-shadow: 20px 0 0 var(--gold); }
    50% { box-shadow: 20px 0 0 var(--soft-gold), 0 0 30px rgba(201, 168, 76, 0.3); }
}


.site-header {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight) 60%, var(--slate) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--soft-gold);
    line-height: 1.3;
}

.logo-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: var(--lavender);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    direction: ltr;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    color: var(--moonlight);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(201, 168, 76, 0.2);
    color: var(--soft-gold);
}


.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--moonlight);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    width: 280px;
    height: calc(100vh - 72px);
    background: var(--deep-navy);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    color: var(--moonlight);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200, 216, 232, 0.1);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--soft-gold);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.mobile-menu-overlay.open {
    display: block;
}


.hero {
    background: linear-gradient(160deg, var(--deep-navy) 0%, var(--midnight) 40%, #1e3a5f 100%);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 111, 165, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: right;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--soft-gold);
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-desc {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.05rem;
    color: var(--moonlight);
    line-height: 2.2;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--deep-navy);
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 26px;
    pointer-events: none;
}


.stats-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 24px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--muted-blue);
    display: block;
}

.stat-label {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}


.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--soft-gold));
    margin: 16px auto 0;
    border-radius: 2px;
}


.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 197, 169, 0.3);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.article-card.featured {
    grid-column: span 2;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.article-card.featured .card-image img {
    height: 280px;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--deep-navy);
    color: var(--soft-gold);
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 12px;
}

.card-body {
    padding: 22px;
}

.card-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.article-card.featured .card-title {
    font-size: 1.25rem;
}

.card-title:hover {
    color: var(--muted-blue);
}

.card-excerpt {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.card-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    direction: ltr;
}

.card-read-more {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.82rem;
    color: var(--muted-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-read-more:hover {
    color: var(--gold);
}


.featured-strip {
    background: linear-gradient(135deg, var(--deep-navy), var(--midnight));
    padding: 60px 24px;
    margin: 0;
}

.featured-strip .section-title {
    color: var(--cream);
}

.featured-strip .section-label {
    color: var(--soft-gold);
}

.tips-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tip-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    filter: grayscale(0.3);
}

.tip-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--soft-gold);
    margin-bottom: 10px;
    line-height: 1.8;
}

.tip-text {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.85rem;
    color: var(--moonlight);
    line-height: 2;
}


.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-main {}

.article-header {
    margin-bottom: 32px;
}

.article-category-tag {
    display: inline-block;
    background: var(--deep-navy);
    color: var(--soft-gold);
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.article-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px;
}

.article-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    direction: ltr;
}

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.article-body {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.05rem;
    line-height: 2.4;
    color: var(--text-body);
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 36px 0 16px;
    padding-right: 16px;
    border-right: 4px solid var(--gold);
}

.article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    padding-right: 24px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body a {
    color: var(--muted-blue);
    text-decoration: underline;
}

.article-body blockquote {
    background: var(--cream);
    border-right: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-body img {
    width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}


.article-sidebar {}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 197, 169, 0.3);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.widget-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.related-list {
    list-style: none;
}

.related-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 197, 169, 0.2);
}

.related-list li:last-child {
    border-bottom: none;
}

.related-list a {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.9rem;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.related-list a:hover {
    color: var(--muted-blue);
}


.breadcrumbs {
    background: var(--cream);
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumbs-inner a {
    color: var(--muted-blue);
    text-decoration: none;
}

.breadcrumbs-inner a:hover {
    text-decoration: underline;
}

.breadcrumbs-inner span {
    margin: 0 8px;
}


.about-hero {
    background: linear-gradient(135deg, var(--deep-navy), var(--midnight));
    padding: 80px 24px;
    text-align: center;
}

.about-hero-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-hero-subtitle {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.1rem;
    color: var(--moonlight);
    max-width: 600px;
    margin: 0 auto;
    line-height: 2.2;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-right: 16px;
    border-right: 4px solid var(--gold);
}

.about-section p {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 2.4;
    margin-bottom: 16px;
}


.contact-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--cream);
    border-radius: 12px;
}

.contact-item-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item-text {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 2;
}

.contact-item-text a {
    color: var(--muted-blue);
    text-decoration: none;
}

.contact-item-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    direction: ltr;
}


.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.policy-content h1 {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.policy-content .update-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    direction: ltr;
    margin-bottom: 36px;
    display: block;
}

.policy-content h2 {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 14px;
    padding-right: 14px;
    border-right: 3px solid var(--gold);
}

.policy-content p {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 2.4;
    margin-bottom: 16px;
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    border-top: 2px solid var(--gold);
    padding: 20px 24px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

#cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-text {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.9rem;
    color: var(--moonlight);
    line-height: 1.8;
    flex: 1;
    min-width: 200px;
}

.cookie-text a {
    color: var(--soft-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--deep-navy);
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn-reject {
    background: transparent;
    color: var(--moonlight);
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.9rem;
    padding: 10px 24px;
    border: 1px solid rgba(200, 216, 232, 0.3);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    border-color: var(--moonlight);
    background: rgba(255,255,255,0.05);
}


.site-footer {
    background: var(--deep-navy);
    color: var(--moonlight);
    padding: 60px 24px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(200, 216, 232, 0.1);
}

.footer-brand {}

.footer-logo-text {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--soft-gold);
    margin-bottom: 14px;
    display: block;
}

.footer-desc {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.88rem;
    color: var(--lavender);
    line-height: 2;
    margin-bottom: 20px;
}

.footer-col-title {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.85rem;
    color: var(--lavender);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--soft-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    direction: ltr;
}

.footer-policy {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    font-size: 0.82rem;
    color: var(--lavender);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy:hover {
    color: var(--soft-gold);
}


@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-card.featured {
        grid-column: span 2;
    }
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-image {
        order: -1;
    }
    .hero-title {
        font-size: 2rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-card.featured {
        grid-column: span 1;
    }
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .stats-inner {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 16px 60px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .article-title {
        font-size: 1.6rem;
    }
    .cookie-buttons {
        width: 100%;
    }
    .btn-accept, .btn-reject {
        flex: 1;
        text-align: center;
    }
}
