/* --- WORLD ZMEDIA: WARM GRADIENT LIGHT THEME (NO BLUE) --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Light Modern Palette - Warm Tones Only */
    --bg-white: #ffffff;
    --bg-light: #fffaf8;          /* Very soft warm tint */
    --bg-dark: #1c1917;           /* Deep Charcoal for high contrast text */
    
    /* The Sunrise Gradients (No Blue) */
    --accent-solid: #f97316;      /* Vibrant Orange */
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #e11d48 100%); /* Orange to Rose */
    --gradient-hover: linear-gradient(135deg, #ea580c 0%, #be123c 100%);
    --gradient-light: linear-gradient(135deg, #ffedd5 0%, #ffe4e6 100%); /* Soft Yellow to Soft Pink */
    
    /* Text Colors */
    --text-dark: #1c1917;         /* High contrast charcoal */
    --text-body: #57534e;         /* Warm slate */
    --text-muted: #a8a29e;
    
    /* UI Elements */
    --border-color: #f5f5f4;
    --shadow-sm: 0 4px 6px -1px rgba(249, 115, 22, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(225, 29, 72, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(225, 29, 72, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 85px;
    --border-radius: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { color: var(--text-dark); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius); }

/* --- UTILITIES --- */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.py-mega { padding: 100px 0; }
.py-large { padding: 70px 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.bg-gradient-light { background: var(--gradient-light); }

/* --- BUTTONS --- */
.btn-primary {
    background: var(--gradient-primary); color: #fff !important;
    padding: 16px 36px; border-radius: 50px; font-weight: 700; 
    display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.25); transition: var(--transition);
}
.btn-primary:hover { background: var(--gradient-hover); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(225, 29, 72, 0.35); }

.btn-outline {
    background: transparent; color: var(--text-dark) !important;
    padding: 14px 34px; border-radius: 50px; font-weight: 700; border: 2px solid var(--accent-solid);
    display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { background: var(--gradient-primary); color: #fff !important; border-color: transparent; }

/* --- LIVE NEWS TICKER --- */
.news-ticker-wrapper { background: var(--bg-dark); color: #fff; padding: 8px 0; overflow: hidden; position: relative; z-index: 1001; display: flex; align-items: center; }
.ticker-label { background: var(--gradient-primary); color: #fff; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; padding: 5px 15px; border-radius: 4px; margin-left: 5%; position: relative; z-index: 2; white-space: nowrap; }
.ticker-content { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; margin-left: 20px; }
.ticker-item { font-size: 0.9rem; font-weight: 500; margin-right: 40px; display: flex; align-items: center; gap: 10px; }
.ticker-item::after { content: '•'; color: var(--accent-solid); }
.ticker-item:last-child::after { content: ''; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* --- HEADER --- */
header {
    position: sticky; top: 0; width: 100%; height: var(--header-height); z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color); transition: var(--transition); display: flex; align-items: center;
}
header.scrolled { height: 75px; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo h1 { font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; color: var(--text-dark); }
.logo h1 span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--accent-solid); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; z-index: 1001; }
.hamburger span { width: 30px; height: 3px; background: var(--text-dark); border-radius: 5px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--accent-solid); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--accent-solid); }

/* --- REUSABLE GRIDS --- */
.section-header { margin-bottom: 60px; max-width: 800px; }
.section-header h2 { font-size: 3rem; margin-bottom: 15px; }
.section-header.text-center { margin-left: auto; margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* --- CARD DESIGNS --- */
.modern-card { background: #fff; padding: 40px; border-radius: var(--border-radius); border: 1px solid var(--border-color); transition: var(--transition); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.modern-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.modern-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.modern-card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 2.5rem; margin-bottom: 25px; display: inline-block; background: var(--gradient-light); width: 70px; height: 70px; line-height: 70px; text-align: center; border-radius: 16px; }
.modern-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* --- NEWS PUBLISHING CARDS --- */
.news-card { background: #fff; border-radius: var(--border-radius); overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); display: flex; flex-direction: column; }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.news-img { position: relative; height: 220px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-category { position: absolute; top: 15px; left: 15px; background: var(--bg-white); color: var(--accent-solid); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; box-shadow: var(--shadow-sm); }
.news-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.news-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 500; }
.news-content h3 { font-size: 1.3rem; margin-bottom: 15px; line-height: 1.4; }
.news-content p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.read-more { color: var(--accent-solid); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 5px; }

/* --- CTA BANNER --- */
.cta-box { background: var(--bg-dark); border-radius: 24px; padding: 80px 5%; text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-box::after { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: var(--accent-solid); filter: blur(200px); opacity: 0.3; z-index: 0; }
.cta-box h2 { color: #fff; font-size: 3rem; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-box p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }

/* --- SLIM MODERN FOOTER --- */
footer { background: var(--bg-white); padding: 50px 0 20px; border-top: 1px solid var(--border-color); }
.footer-wrapper { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 30px; margin-bottom: 30px; }
.footer-brand h2 { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); margin-bottom: 5px; }
.footer-brand h2 span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); }
.footer-nav { display: flex; gap: 30px; }
.footer-nav a { color: var(--text-dark); font-weight: 600; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--accent-solid); }
.footer-contact { text-align: right; }
.footer-contact p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 5px; }
.footer-contact a { color: var(--accent-solid); font-weight: 700; font-size: 0.95rem; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 0.85rem; color: var(--text-muted); }

/* --- ANIMATIONS --- */
.reveal { opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; visibility: visible; }
.slide-up { transform: translateY(50px); }
.slide-up.active { transform: translateY(0); }
.slide-left { transform: translateX(-50px); }
.slide-left.active { transform: translateX(0); }
.slide-right { transform: translateX(50px); }
.slide-right.active { transform: translateX(0); }
.zoom-in { transform: scale(0.9); }
.zoom-in.active { transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 50px; }
    .footer-wrapper { flex-direction: column; text-align: center; }
    .footer-contact { text-align: center; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-container.menu-open .nav-links {
        display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0;
        width: 100%; background: var(--bg-white); padding: 30px 5%; border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); align-items: flex-start; z-index: 1000;
    }
    .nav-container.menu-open .nav-links a { font-size: 1.2rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--bg-light); }
    .hero h1 { font-size: 3rem; }
    .section-header h2 { font-size: 2.5rem; }
    .news-ticker-wrapper { display: none; } /* Hide ticker on mobile for clean UI */
}