/* =============================================
   INDONESIA CHRONICLES — Landing Page Styles
   Colors: Nature-inspired Indonesia palette
   ============================================= */

/* UPDATED COLOR PALETTE — Light, Natural, Beautiful */
:root {
    --teal: #0B7B6B;
    --teal-light: #12A08B;
    --teal-pale: #E8F7F5;
    --sunset: #E8631A;
    --sunset-light: #FF8A4C;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --sand: #F5EDD6;
    --sand-dark: #EBD9B0;
    --forest: #2E6B3E;
    --ocean: #1A6B8A;
    --sky: #87CEEB;
    --white: #FFFFFF;
    --text-dark: #1A2E1A;
    --text-mid: #3D5C3D;
    --text-light: #6B8C6B;
}

/* ─────────────────────────────────────────────
   LOGO ICON
───────────────────────────────────────────── */
.logo a { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--teal); }
.logo-tagline { font-size: 10px; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; }

.header-right { display: flex; align-items: center; gap: 12px; }
.btn-subscribe {
    background: var(--teal);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-subscribe:hover { background: var(--teal-light); transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   HERO — Full Screen Slideshow
───────────────────────────────────────────── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    animation: kenBurns 8s ease infinite alternate;
    filter: brightness(1.15) saturate(1.2);
}
.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 20, 10, 0.08) 0%,
        rgba(5, 20, 10, 0.25) 50%,
        rgba(5, 20, 10, 0.60) 100%
    );
    z-index: 1;
}

/* Batik pattern overlay — subtle decorative layer */
.batik-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,1) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,1) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px; height: 8px;
    background: #52E5A0;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.hero-line-1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 9vw, 110px);
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-line-2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2.5vw, 26px);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 4px 0;
}

.hero-line-3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 700;
    color: #A8F0C8;
    font-style: italic;
    line-height: 1.1;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700; font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(18,160,139,0.4);
}
.cta-primary:hover { background: white; color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(18,160,139,0.5); }

.cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600; font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.cta-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }

.cta-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: 500; font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}
.cta-ghost:hover { color: white; border-color: rgba(255,255,255,0.5); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px 32px;
    border-radius: 60px;
}

.hstat { text-align: center; }
.hstat strong { display: block; font-size: 20px; font-weight: 900; color: #A8F0C8; font-family: 'Playfair Display', serif; }
.hstat span { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 60px; }
}

.hero-dots {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none; cursor: pointer;
    transition: all 0.3s;
}
.hero-dot.active { background: #A8F0C8; transform: scale(1.4); }

.photo-credit {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}
.photo-credit a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ─────────────────────────────────────────────
   TICKER
───────────────────────────────────────────── */
.ticker-wrap { background: var(--teal); }
.lang-more { font-size: 10px; color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────────
   VISUAL GALLERY
───────────────────────────────────────────── */
.visual-gallery {
    background: var(--sand);
    padding: 80px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 20px;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 8px 0 12px;
}

.gallery-header p { color: var(--text-light); font-size: 16px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gal-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background-color: var(--teal-pale);
}

.gal-item:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.25); z-index: 2; }

.gal-large {
    grid-column: span 2;
}

.gal-tall {
    grid-row: span 2;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,20,0.85) 0%, rgba(10,30,20,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    transition: all 0.3s;
}

.gal-item:hover .gal-overlay { background: linear-gradient(to top, rgba(10,30,20,0.9) 0%, rgba(10,30,20,0.4) 60%, transparent 100%); }

.gal-tag {
    display: inline-block;
    background: rgba(18,160,139,0.9);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    width: fit-content;
}

.gal-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.gal-overlay p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
}

.gal-item:hover .gal-overlay p { opacity: 1; transform: translateY(0); }

.gallery-source {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    padding: 0 20px;
}
.gallery-source a { color: var(--teal); font-weight: 600; }

/* Gallery background images */
.gal-bali-terraces { background-image: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=900&auto=format&fit=crop&q=80'); }
.gal-borobudur     { background-image: url('https://images.unsplash.com/photo-1596402184320-417e7178b2cd?w=600&auto=format&fit=crop&q=80'); }
.gal-food          { background-image: url('https://images.unsplash.com/photo-1555400038-63f5ba517a47?w=600&auto=format&fit=crop&q=80'); }
.gal-prambanan     { background-image: url('https://images.unsplash.com/photo-1512100356356-de1b84283e18?w=600&auto=format&fit=crop&q=80'); }
.gal-bromo         { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Gunung_Bromo_sunrise_-_Indonesia.jpg/960px-Gunung_Bromo_sunrise_-_Indonesia.jpg'); }
.gal-batik         { background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/Membatik.jpg'); }

/* Featured story hero background */
.featured-mega-bg { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Ma%27Nene_Ritual_in_Toraja.jpg/960px-Ma%27Nene_Ritual_in_Toraja.jpg'); }

/* Newsletter section background */
.newsletter-bg-img { background-image: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1600&auto=format&fit=crop&q=70'); }

/* Live card icon colors */
.icon-youtube { color: #FF0000; }
.icon-map     { color: #4285F4; }
.icon-wiki    { color: #333; }

/* Map iframe */
.map-iframe { border: 0; border-radius: 12px; display: block; }

/* Newsletter label gold color */
.label-gold { color: var(--gold-light); }

/* ─────────────────────────────────────────────
   FEATURED STORY — MEGA
───────────────────────────────────────────── */
.featured-story { background: white; padding: 80px 0; }

.section-header.centered { text-align: center; }
.section-header.centered .section-label { color: var(--teal); }
.section-header.centered h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); color: var(--text-dark); }

.featured-mega { max-width: 1000px; margin: 0 auto; }

.featured-mega-img {
    border-radius: 24px;
    overflow: hidden;
    height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--teal);
}

.featured-mega-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,20,15,0.95) 0%, rgba(5,20,15,0.6) 45%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    color: white;
}

.feat-tag {
    display: inline-block;
    background: var(--teal-light);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.featured-mega-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
}

.featured-mega-overlay p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 20px;
}

.feat-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}
.feat-meta i { color: #A8F0C8; margin-right: 5px; }

.feat-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700; font-size: 14px;
    transition: all 0.3s; width: fit-content;
}
.feat-btn:hover { background: white; color: var(--teal); gap: 12px; }

/* ─────────────────────────────────────────────
   ARTICLES SECTION
───────────────────────────────────────────── */
.articles-section { background: var(--sand); padding: 80px 0; }

.section-label { color: var(--teal) !important; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,50,30,0.06);
    transition: all 0.35s;
    border: 1px solid rgba(0,100,60,0.06);
}
.article-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,50,30,0.14); }

.article-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--teal-pale);
    display: flex; align-items: center; justify-content: center;
}

.article-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--teal-light);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.cave-art-bg { background: linear-gradient(135deg, #2C1A0A, #5C3A2A); }
.jamu-img-bg { background: linear-gradient(135deg, #1A3D1A, #2E6B3E); }

.article-body { padding: 22px; }

.article-cat {
    display: inline-block;
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

.article-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--sand);
    font-size: 12px;
    color: var(--text-light);
}

.read-link {
    color: var(--teal);
    font-weight: 700;
    font-size: 12px;
    display: flex; align-items: center; gap: 4px;
    transition: all 0.3s;
}
.read-link:hover { gap: 8px; }

/* ─────────────────────────────────────────────
   CATEGORIES — Photo Cards
───────────────────────────────────────────── */
.categories { background: white; padding: 80px 0; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cat-card {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: block;
    transition: all 0.4s;
    background-color: var(--teal);
}
.cat-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 50px rgba(0,0,0,0.2); }

.lang-cat-bg { background: linear-gradient(135deg, #1A3D2A, #0B7B6B); }
.people-cat-bg { background: linear-gradient(135deg, #3D1A00, #8B4513); }
.news-cat-bg { background: linear-gradient(135deg, #0A2040, #1A4A80); }

.cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,20,15,0.88) 0%, rgba(5,20,15,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px;
    color: white;
}

.cat-overlay i { font-size: 22px; color: #A8F0C8; margin-bottom: 8px; }

.cat-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    margin-bottom: 4px;
}
.cat-overlay p { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ─────────────────────────────────────────────
   LIVE SECTION
───────────────────────────────────────────── */
.live-section { background: var(--sand); padding: 80px 0; }

.live-section .section-header.centered h2 { color: var(--text-dark); }
.live-section .section-header.centered p { color: var(--text-light); margin-top: 8px; }

.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.live-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,50,30,0.08);
}

.live-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--sand);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.live-more {
    margin-left: auto;
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    display: flex; align-items: center; gap: 4px;
}
.live-more:hover { color: var(--teal-light); }

.video-wrapper, .map-wrapper { width: 100%; }
.video-wrapper iframe { width: 100%; height: 240px; display: block; }
.map-wrapper iframe { width: 100%; height: 260px; display: block; }

.live-caption { padding: 12px 20px; font-size: 12px; color: var(--text-light); }

.wiki-preview { padding: 20px; min-height: 200px; }
.wiki-loading { color: var(--text-light); font-size: 14px; }
.wiki-loading i { margin-right: 8px; color: var(--teal); }
.wiki-text { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.wiki-text strong { color: var(--text-dark); }

/* ─────────────────────────────────────────────
   SOURCES SECTION
───────────────────────────────────────────── */
.sources-section { background: white; padding: 80px 0; }

.sources-section .section-header.centered h2 { color: var(--text-dark); }
.sources-section .section-header.centered p { color: var(--text-light); margin-top: 8px; font-size: 16px; }

.sources-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.source-group {
    background: var(--sand);
    border-radius: 16px;
    padding: 24px;
}

.source-group h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.source-group h4 i { color: var(--teal); }

.source-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.source-tag {
    display: inline-block;
    background: white;
    color: var(--text-mid);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0,100,60,0.1);
    transition: all 0.2s;
}
.source-tag:hover { background: var(--teal); color: white; border-color: var(--teal); transform: translateY(-2px); }
.source-tag.img-source:hover { background: var(--ocean); border-color: var(--ocean); }

.sources-cta { text-align: center; }
.sources-cta .btn-primary { background: var(--teal); border-color: var(--teal); padding: 16px 36px; font-size: 15px; }
.sources-cta .btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); }

/* ─────────────────────────────────────────────
   DID YOU KNOW — New Design
───────────────────────────────────────────── */
.did-you-know { position: relative; padding: 100px 0; overflow: hidden; }

.dyk-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0B3D2A 0%, #0B5C3A 40%, #0A3D5C 100%);
}

.dyk-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(168,240,200,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(135,206,235,0.08) 0%, transparent 50%);
}

.did-you-know .container { position: relative; z-index: 2; }

.dyk-inner { max-width: 750px; margin: 0 auto; text-align: center; }

.dyk-label {
    display: inline-flex; align-items: center; gap: 10px;
    color: #A8F0C8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 36px;
}
.dyk-label i { font-size: 16px; }

.dyk-fact { display: none; }
.dyk-fact.active { display: block; animation: fadeUp 0.5s ease; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.dyk-fact h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 20px;
}

.dyk-fact p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin-bottom: 20px;
}

.dyk-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #A8F0C8;
    font-size: 13px; font-weight: 700;
    transition: all 0.3s;
}
.dyk-link:hover { gap: 12px; }

.dyk-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }

.dyk-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.dyk-btn:hover { background: #A8F0C8; color: #0B3D2A; border-color: #A8F0C8; }

.dyk-dots { display: flex; gap: 8px; }
.dyk-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none; cursor: pointer; transition: all 0.3s;
}
.dyk-dot.active { background: #A8F0C8; transform: scale(1.4); }

/* ─────────────────────────────────────────────
   ABOUT PREVIEW
───────────────────────────────────────────── */
.about-preview { background: var(--sand); padding: 80px 0; }

.about-preview-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-frame { position: relative; margin-bottom: 20px; }

.about-img-placeholder-v2 {
    background: linear-gradient(135deg, #0B4D3A, #0B7B6B);
    border-radius: 24px;
    height: 420px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
}
.about-img-placeholder-v2 i { font-size: 80px; }
.about-img-placeholder-v2 span { font-family: 'Playfair Display', serif; font-size: 22px; color: rgba(255,255,255,0.8); font-weight: 700; }
.about-img-placeholder-v2 small { font-size: 12px; color: rgba(255,255,255,0.5); }

.about-img-decoration {
    position: absolute;
    top: -10px; right: -10px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0.4;
    z-index: -1;
}

.about-credentials-row { display: flex; flex-direction: column; gap: 10px; }
.cred-pill {
    display: flex; align-items: center; gap: 10px;
    background: white;
    padding: 10px 16px; border-radius: 12px;
    font-size: 13px; font-weight: 500;
    color: var(--text-mid);
    box-shadow: 0 2px 10px rgba(0,50,30,0.06);
}
.cred-pill i { color: var(--teal); }

.about-preview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-preview-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-preview-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.btn-primary { background: var(--teal) !important; border-color: var(--teal) !important; }
.btn-primary:hover { background: var(--teal-light) !important; border-color: var(--teal-light) !important; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--teal);
    padding: 14px 28px; border-radius: 50px;
    font-weight: 600; font-size: 14px;
    border: 2px solid var(--teal);
    transition: all 0.3s;
}
.btn-outline:hover { background: var(--teal); color: white; }

/* ─────────────────────────────────────────────
   NEWSLETTER — With Background Image
───────────────────────────────────────────── */
.newsletter { position: relative; padding: 100px 0; overflow: hidden; }

.newsletter-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}

.newsletter-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,61,42,0.93) 0%, rgba(10,61,92,0.9) 100%);
}

.newsletter-content {
    position: relative; z-index: 2;
    max-width: 800px; margin: 0 auto;
    text-align: center; color: white;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 50px);
    font-weight: 900; line-height: 1.2;
    margin: 12px 0 16px;
    color: white;
}

.newsletter-content p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 36px; }

.newsletter-form { width: 100%; }

.form-row {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input,
.newsletter-form select {
    flex: 1; min-width: 160px;
    padding: 14px 18px;
    border: none; border-radius: 12px;
    font-size: 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus,
.newsletter-form select:focus { outline: none; background: rgba(255,255,255,0.2); border-color: #A8F0C8; }
.newsletter-form select option { background: #0B3D2A; color: white; }

.newsletter-form button {
    background: #A8F0C8;
    color: #0B3D2A;
    padding: 14px 28px; border-radius: 12px;
    font-size: 14px; font-weight: 700;
    border: none; cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.newsletter-form button:hover { background: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

.form-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 12px; }

.newsletter-stats-row {
    display: flex; justify-content: center;
    gap: 40px; margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.nstat strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; color: #A8F0C8; }
.nstat span { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─────────────────────────────────────────────
   FOOTER — Updated Colors
───────────────────────────────────────────── */
.footer {
    background: #0B2A1A;
    color: rgba(255,255,255,0.65);
    padding: 60px 0 0;
}

.footer-logo-icon { font-size: 24px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: white;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: all 0.3s;
}
.footer-social a:hover { background: var(--teal-light); color: white; transform: translateY(-3px); }

.footer-col h4 {
    color: white; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 13px; transition: all 0.3s;
    display: flex; align-items: center; gap: 6px;
}
.footer-col a i { width: 14px; color: var(--teal-light); }
.footer-col a:hover { color: #A8F0C8; padding-left: 4px; }
.coming { opacity: 0.4; font-size: 12px !important; }

.footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
}
.footer-bottom a { color: #A8F0C8; }
.footer-quote { font-style: italic; color: rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────────
   AI TRANSLATION WIDGET — Floating bottom-right
───────────────────────────────────────────── */
.ai-widget {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.ai-widget-toggle {
    display: flex; align-items: center; gap: 8px;
    background: var(--teal);
    color: white;
    padding: 12px 20px; border-radius: 50px;
    border: none; cursor: pointer;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 8px 30px rgba(11,123,107,0.4);
    transition: all 0.3s;
}
.ai-widget-toggle:hover { background: var(--teal-light); transform: translateY(-2px); }
.ai-widget-toggle i { font-size: 18px; }

.ai-widget-panel {
    position: absolute;
    bottom: 60px; right: 0;
    width: 340px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    overflow: hidden;
}

.ai-widget-header {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    padding: 16px 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 15px;
}
.ai-widget-header i { margin-right: 6px; }

.ai-close {
    background: rgba(255,255,255,0.15);
    border: none; color: white;
    width: 28px; height: 28px; border-radius: 50%;
    cursor: pointer; font-size: 16px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.ai-close:hover { background: rgba(255,255,255,0.3); }

.ai-widget-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.ai-widget-body textarea {
    width: 100%; border: 1.5px solid #e0e0e0; border-radius: 10px;
    padding: 12px; font-size: 13px; font-family: inherit; resize: vertical;
    transition: border-color 0.2s;
}
.ai-widget-body textarea:focus { outline: none; border-color: var(--teal); }

.ai-widget-body select {
    width: 100%; border: 1.5px solid #e0e0e0; border-radius: 10px;
    padding: 10px 12px; font-size: 13px; font-family: inherit; cursor: pointer;
    background: white;
}

.ai-translate-btn {
    background: var(--teal); color: white;
    padding: 12px; border-radius: 10px;
    border: none; cursor: pointer;
    font-size: 14px; font-weight: 700;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ai-translate-btn:hover { background: var(--teal-light); }
.ai-translate-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.ai-output {
    background: var(--sand);
    border-radius: 10px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-dark);
    max-height: 160px;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .ai-widget { bottom: 16px; right: 16px; }
    .ai-widget-panel { width: calc(100vw - 32px); right: 0; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gal-large { grid-column: span 2; }
    .gal-tall { grid-row: span 1; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .live-grid { grid-template-columns: 1fr; }
    .sources-categories { grid-template-columns: repeat(2, 1fr); }
    .about-preview-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-stats { flex-wrap: wrap; gap: 16px; padding: 14px 20px; }
    .hstat-div { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gal-large { grid-column: span 1; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: 1fr; }
    .sources-categories { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .newsletter-stats-row { gap: 24px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-dots { display: none; }
    .featured-mega-overlay { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-stats { display: none; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Curator article badge ───────────────────────── */
.art-new-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #0B7B6B;
    color: white;
    font-size: 10px; font-weight: 700;
    padding: 3px 9px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.article-img { position: relative; }

/* ── Article modal body headings ─────────────────── */
#icArticleModal h3 {
    font-size: 18px; font-weight: 700;
    color: #e8edf2; margin: 24px 0 10px;
}
#icArticleModal p { margin-bottom: 14px; }
#icArticleModal .modal-body-text a { color: #12A08B; }

/* ═══════════════════════════════════════════════════════
   REVENUE FEATURES
   ═══════════════════════════════════════════════════════ */

/* ── Plan Your Trip / Affiliate Section ──────────────── */
.plan-trip-section {
    padding: 90px 0 80px;
    background: #f7f5f0;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.plan-trip-head {
    text-align: center;
    margin-bottom: 48px;
}
.plan-trip-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #1a2a1a;
    margin: 10px 0 14px;
}
.plan-trip-head p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 14px;
    color: #777;
    line-height: 1.75;
}
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .affiliate-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .affiliate-grid { grid-template-columns: 1fr; } }
.affiliate-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 22px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; flex-direction: column; gap: 10px;
}
.affiliate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.11);
}
.aff-icon { font-size: 38px; line-height: 1; }
.affiliate-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: #1a2a1a; margin: 0;
}
.affiliate-card p {
    font-size: 13px; color: #777;
    line-height: 1.65; flex: 1; margin: 0;
}
.aff-btn {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 6px;
    background: var(--teal, #0B7B6B);
    color: #fff !important;
    padding: 11px 18px; border-radius: 10px;
    font-size: 13px; font-weight: 600;
    text-decoration: none !important;
    transition: background 0.15s, transform 0.15s;
    margin-top: 6px;
}
.aff-btn:hover { background: #085c4f; transform: translateY(-1px); }

/* ── Ko-fi Floating Support Button ───────────────────── */
.kofi-float {
    position: fixed;
    bottom: 28px; left: 28px; z-index: 1000;
    background: #FF5E5B;
    color: #fff !important;
    text-decoration: none !important;
    padding: 13px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 7px;
    box-shadow: 0 4px 22px rgba(255,94,91,0.38);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.kofi-float:hover {
    background: #e04d4a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,94,91,0.48);
}
@media (max-width: 600px) { .kofi-float span { display: none; } .kofi-float { padding: 13px 16px; } }

/* ── WhatsApp Share Button ───────────────────────────── */
.share-wa-btn {
    display: inline-flex; align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: #25D366; color: #fff !important;
    border-radius: 50%; font-size: 14px;
    text-decoration: none !important;
    transition: background 0.15s, transform 0.15s;
    flex-shrink: 0;
}
.share-wa-btn:hover { background: #1ebe5d; transform: scale(1.12); }
