@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=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --sage: #7a9e7e;
    --sage-dark: #4a7a50;
    --sage-light: #b8d4bb;
    --cream: #f5f0e8;
    --warm-white: #faf7f2;
    --charcoal: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --terracotta: #c4704a;
    --deep-teal: #2d6a6a;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 17px;
    direction: rtl;
}

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--sage-light);
    border-top-color: var(--sage-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.loader-text {
    font-family: 'Amiri', serif;
    color: var(--sage-dark);
    font-size: 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* HEADER */
.site-header {
    background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4a 50%, #1a4a3a 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Amiri', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: var(--sage-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    direction: ltr;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    font-family: 'Amiri', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* BURGER MENU */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 200;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    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;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1a3a2a 0%, #2d6a4a 100%);
    z-index: 150;
    padding: 90px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 140;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links li a {
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links li a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--gold-light);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3a 40%, #4a7a50 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/41/Wv_Baltistan_banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px;
    margin-right: auto;
    margin-left: 5%;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.25);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: 'Amiri', serif;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Amiri', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 2;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #a87a30);
    color: #fff;
    font-family: 'Amiri', serif;
    font-size: 17px;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
    color: #fff;
}

/* DECORATIVE DIVIDER */
.section-divider {
    text-align: center;
    padding: 16px 0;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 12px;
}

/* FEATURED SECTION */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    direction: ltr;
}

.section-title {
    font-family: 'Amiri', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-mid);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ARTICLES GRID */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-tag {
    display: inline-block;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    direction: ltr;
}

.article-card h3 {
    font-family: 'Amiri', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 10px;
}

.article-card p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 16px;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sage-dark);
    font-family: 'Amiri', serif;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.article-card-link:hover {
    color: var(--gold);
}

/* FEATURED ARTICLE (LARGE) */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 60px;
}

.featured-article-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.featured-article-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-article-body .article-card-tag {
    margin-bottom: 16px;
}

.featured-article-body h2 {
    font-family: 'Amiri', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 16px;
}

.featured-article-body p {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* QUOTE BLOCK */
.quote-block {
    background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: 'Amiri', serif;
    font-size: 80px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
}

.quote-text {
    font-family: 'Amiri', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-source {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 1px;
    direction: ltr;
}

/* INFO CARDS */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--sage);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--gold);
}

.info-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-family: 'Amiri', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.8;
}

/* ARTICLE PAGE */
.article-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.article-hero-content {
    max-width: 800px;
}

.article-hero-content h1 {
    font-family: 'Amiri', serif;
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,0.8);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    direction: ltr;
    flex-wrap: wrap;
}

/* ARTICLE CONTENT */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 60px 0;
}

.article-content h2 {
    font-family: 'Amiri', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sage-light);
}

.article-content h3 {
    font-family: 'Amiri', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 28px 0 12px;
}

.article-content p {
    color: var(--text-mid);
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 16px 0 20px 0;
    padding-right: 24px;
}

.article-content li {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 8px;
}

.article-content blockquote {
    background: var(--cream);
    border-right: 4px solid var(--sage);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: var(--sage-dark);
    font-style: italic;
}

.article-content .highlight-box {
    background: linear-gradient(135deg, var(--sage-light), #d4e8d4);
    border-radius: var(--radius);
    padding: 28px;
    margin: 28px 0;
}

.article-content .highlight-box h4 {
    font-family: 'Amiri', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.article-content .highlight-box p {
    margin-bottom: 0;
    color: var(--charcoal);
}

.article-content img {
    border-radius: var(--radius);
    margin: 28px 0;
    box-shadow: var(--shadow-soft);
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget h3 {
    font-family: 'Amiri', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sage-light);
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links li a {
    font-family: 'Amiri', serif;
    font-size: 15px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.sidebar-links li a:hover {
    color: var(--sage-dark);
}

.sidebar-links li:last-child a {
    border-bottom: none;
}

/* ABOUT PAGE */
.about-hero {
    background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4a 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Amiri', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.about-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.about-text h2 {
    font-family: 'Amiri', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0;
}

.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.value-card h3 {
    font-family: 'Amiri', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.8;
}

/* CONTACT PAGE */
.contact-hero {
    background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4a 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Amiri', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.contact-info h2 {
    font-family: 'Amiri', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-family: 'Amiri', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--text-mid);
    font-size: 15px;
    direction: ltr;
}

.contact-item-text a:hover {
    color: var(--sage-dark);
}

.contact-map {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* POLICY PAGE */
.policy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px;
}

.policy-content h1 {
    font-family: 'Amiri', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.policy-content .update-date {
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    margin-bottom: 40px;
    direction: ltr;
}

.policy-content h2 {
    font-family: 'Amiri', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 36px 0 14px;
}

.policy-content p {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 12px 0 16px;
    padding-right: 24px;
}

.policy-content li {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 8px;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a3a2a, #2d5a3a);
    color: #fff;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-family: 'Amiri', serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background: linear-gradient(135deg, var(--gold), #a87a30);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Amiri', serif;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}

.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;
    font-family: 'Amiri', serif;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #0f2218 0%, #1a3a2a 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: 'Amiri', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    direction: ltr;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* BREADCRUMB */
.breadcrumb {
    padding: 16px 0;
    background: var(--cream);
    border-bottom: 1px solid #e8e0d0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--text-light);
    direction: ltr;
}

.breadcrumb-inner a {
    color: var(--sage-dark);
}

.breadcrumb-inner span {
    color: var(--text-light);
}

/* UPDATE DATE */
.update-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border: 1px solid #e0d8c8;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    direction: ltr;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article-img {
        min-height: 240px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin-left: 0;
        padding: 60px 24px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .logo-subtitle {
        display: none;
    }
}
