@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Noto+Nastaliq+Urdu:wght@400;600;700&family=Scheherazade+New:wght@400;600;700&family=Lateef:wght@300;400;600;700&display=swap');

:root {
    --primary: #1a6b4a;
    --primary-dark: #0f4a32;
    --primary-light: #2d9e6e;
    --accent: #e8a020;
    --accent-light: #f5c842;
    --bg-main: #f0f7f4;
    --bg-card: #ffffff;
    --bg-dark: #0d3d28;
    --text-main: #1a2e25;
    --text-muted: #5a7a6a;
    --text-light: #f8fdf9;
    --border: #c8e6d8;
    --shadow: 0 4px 20px rgba(26, 107, 74, 0.12);
    --shadow-hover: 0 8px 32px rgba(26, 107, 74, 0.22);
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Nastaliq Urdu', 'Scheherazade New', 'Amiri', serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    direction: rtl;
    line-height: 2;
    font-size: 17px;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    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-inner {
    text-align: center;
    color: var(--text-light);
}

.loader-drop {
    width: 50px;
    height: 60px;
    background: var(--accent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin: 0 auto 20px;
    animation: dropBounce 1.2s ease-in-out infinite;
}

@keyframes dropBounce {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-20px) scaleY(0.9); }
}

.loader-inner p {
    font-family: 'Scheherazade New', serif;
    font-size: 18px;
    opacity: 0.8;
}

/* HEADER */
.site-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 60%, var(--primary) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--bg-dark);
}

.logo-text {
    color: var(--text-light);
    font-family: 'Scheherazade New', serif;
}

.logo-text .site-name {
    font-size: 22px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.logo-text .site-tagline {
    font-size: 12px;
    opacity: 0.7;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Scheherazade New', serif;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.15);
    color: var(--accent-light);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--primary-dark);
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.9);
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Scheherazade New', serif;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--accent-light);
}

/* HERO */
.hero {
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 160, 32, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent-light);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Scheherazade New', serif;
}

.hero h1 {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(28px, 5vw, 52px);
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    color: var(--text-light);
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-light);
    display: block;
    font-family: 'Amiri', serif;
}

.stat-label {
    font-size: 13px;
    opacity: 0.7;
    font-family: 'Scheherazade New', serif;
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.section-alt {
    background: #e8f5ef;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(24px, 4vw, 38px);
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Scheherazade New', serif;
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: 'Scheherazade New', serif;
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    flex: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.read-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Scheherazade New', serif;
}

.read-more::after {
    content: '←';
    transition: transform 0.3s ease;
}

.article-card:hover .read-more::after {
    transform: translateX(-4px);
}

.card-date {
    color: var(--text-muted);
    font-size: 13px;
}

/* FEATURED SECTION */
.featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
    align-items: start;
}

.featured-main {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-main .card-img-wrap {
    height: 340px;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.mini-card-img {
    width: 110px;
    flex-shrink: 0;
    overflow: hidden;
}

.mini-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-card-body {
    padding: 16px;
    flex: 1;
}

.mini-card-body h4 {
    font-family: 'Scheherazade New', serif;
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.mini-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* TIPS SECTION */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.tip-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
}

.tip-card:hover {
    transform: translateY(-4px);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tip-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.tip-card h3 {
    font-family: 'Scheherazade New', serif;
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ARTICLE PAGE */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    padding: 50px 0;
}

.article-main {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-tag {
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Scheherazade New', serif;
}

.meta-date {
    color: var(--text-muted);
    font-size: 14px;
}

.article-main h1 {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.article-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.article-content h2 {
    font-family: 'Scheherazade New', serif;
    font-size: 24px;
    color: var(--primary-dark);
    margin: 36px 0 16px;
    padding-right: 16px;
    border-right: 4px solid var(--accent);
}

.article-content h3 {
    font-family: 'Scheherazade New', serif;
    font-size: 20px;
    color: var(--primary);
    margin: 28px 0 12px;
}

.article-content p {
    font-size: 17px;
    line-height: 2.1;
    color: var(--text-main);
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    padding-right: 24px;
    margin-bottom: 20px;
}

.article-content li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-main);
    margin-bottom: 8px;
}

.article-content blockquote {
    background: linear-gradient(135deg, #e8f5ef, #d4ede2);
    border-right: 5px solid var(--primary);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--primary-dark);
    font-size: 18px;
}

.article-content .info-box {
    background: linear-gradient(135deg, #fff8e8, #fef3d0);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.article-content .info-box h4 {
    font-family: 'Scheherazade New', serif;
    color: var(--accent);
    font-size: 17px;
    margin-bottom: 10px;
}

.article-content .source-link {
    color: var(--primary);
    text-decoration: underline;
    font-size: 14px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: 'Scheherazade New', serif;
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    font-size: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-links a::before {
    content: '•';
    color: var(--primary);
    font-size: 18px;
}

.sidebar-links a:hover {
    color: var(--primary);
}

/* BREADCRUMB */
.breadcrumb {
    background: var(--bg-card);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--primary);
}

.breadcrumb-inner span {
    color: var(--text-muted);
}

/* ABOUT PAGE */
.about-hero {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.about-hero h1 {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-family: 'Scheherazade New', serif;
    font-size: 30px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-main);
    margin-bottom: 16px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-family: 'Scheherazade New', serif;
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Scheherazade New', serif;
    font-size: 30px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-item-text h4 {
    font-family: 'Scheherazade New', serif;
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.contact-item-text p, .contact-item-text a {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-item-text a:hover {
    color: var(--primary);
}

.contact-map-placeholder {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder h3 {
    font-family: 'Scheherazade New', serif;
    font-size: 22px;
    margin-bottom: 12px;
}

/* POLICY PAGE */
.policy-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow);
    margin: 50px 0;
}

.policy-content h1 {
    font-family: 'Scheherazade New', serif;
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.policy-content h2 {
    font-family: 'Scheherazade New', serif;
    font-size: 22px;
    color: var(--primary);
    margin: 32px 0 14px;
}

.policy-content p, .policy-content li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-main);
    margin-bottom: 14px;
}

.policy-content ul {
    padding-right: 24px;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px 24px;
    z-index: 9998;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Scheherazade New', serif;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--primary-light);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Scheherazade New', serif;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: var(--primary);
}

.btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Scheherazade New', serif;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    border-color: rgba(255,255,255,0.6);
    color: white;
}

/* FOOTER */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-wrap {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.9;
    font-family: 'Scheherazade New', serif;
}

.footer-col h4 {
    font-family: 'Scheherazade New', serif;
    font-size: 17px;
    color: var(--accent-light);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'Scheherazade New', serif;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-family: 'Scheherazade New', serif;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.65);
}

.footer-contact-item a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.55;
    font-family: 'Scheherazade New', serif;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-family: 'Scheherazade New', serif;
}

.footer-bottom-links a:hover {
    color: var(--accent-light);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination a, .pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    border: 1px solid var(--border);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.pagination a:hover, .pagination .current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-stats {
        gap: 24px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .article-main {
        padding: 24px;
    }

    .policy-content {
        padding: 30px 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .featured-side {
        grid-template-columns: 1fr;
    }

    .mini-card {
        flex-direction: column;
    }

    .mini-card-img {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .cookie-inner {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept, .btn-reject {
        flex: 1;
        text-align: center;
    }
}
