/* ====================================
   VARIABLES - Modern Premium Palette
==================================== */
:root {
    /* Gold tones */
    --primary-gold: #C9A44C;
    --secondary-gold: #B28B3A;
    --light-gold: #F5E9D6;
    --gold-gradient: linear-gradient(135deg, #C9A44C, #B28B3A);
    
    /* Neutral tones */
    --deep-charcoal: #1A1E24;
    --soft-charcoal: #2A2F36;
    --warm-gray: #4A4F55;
    --light-gray: #F5F7FA;
    --pure-white: #FFFFFF;
    --off-white: #F9FBFD;
    
    /* Status colors */
    --success-green: #2E7D32;
    --error-red: #C62828;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 24px rgba(201, 164, 76, 0.15);
    --shadow-gold-lg: 0 16px 40px rgba(201, 164, 76, 0.2);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ====================================
   RESET & BASE STYLES
==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--primary-gold);
    color: var(--pure-white);
}

html {
    scroll-behavior: smooth;
    font-size: 13px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-charcoal);
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ====================================
   UTILITY CLASSES
==================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(201, 164, 76, 0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(201, 164, 76, 0.2);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--warm-gray);
    font-size: 1.1rem;
}

/* ====================================
   PRELOADER
==================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-charcoal);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====================================
   NAVIGATION
==================================== */
.navbar {
    background: transparent;
    padding: 24px 48px;
    transition: var(--transition-smooth);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 30, 36, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 48px;
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pure-white);
    font-size: 22px;
    box-shadow: var(--shadow-gold);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: var(--pure-white);
    font-size: 24px;
}

/* ====================================
   BUTTONS
==================================== */
.btn-gold, .btn-light, .btn-outline, .btn-outline-light {
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--pure-white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-light {
    background: var(--pure-white);
    color: var(--deep-charcoal);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    background: rgba(201, 164, 76, 0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 40px;
    font-size: 16px;
}

.btn-outline-light:hover {
    border-color: var(--primary-gold);
    background: rgba(201, 164, 76, 0.1);
    transform: translateY(-2px);
}

.btn-apply {
    width: 100%;
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid rgba(201, 164, 76, 0.3);
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-apply:hover {
    background: var(--gold-gradient);
    color: var(--pure-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ====================================
   HERO SLIDESHOW
==================================== */
.hero-auto-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides-auto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-auto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide-auto::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-slide-auto.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(201,164,76,0.3);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary-gold);
    display: block;
    font-size: 5.5rem;
    text-shadow: var(--shadow-gold);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-mini {
    color: var(--pure-white);
    text-align: center;
}

.stat-mini-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(10px) translateX(-50%); }
}

/* ====================================
   ABOUT PREVIEW SECTION
==================================== */
.about-preview {
    background: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--warm-gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--deep-charcoal);
    font-size: 1rem;
}

.about-feature i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.about-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-gold-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--pure-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
}

/* ====================================
   STORY SECTION
==================================== */
.story-section {
    background: var(--pure-white);
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-lead {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.story-timeline {
    margin-top: 40px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.timeline-desc {
    color: var(--warm-gray);
    line-height: 1.6;
}

.story-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.grid-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.grid-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.img-1 {
    grid-column: span 2;
}

.story-quote {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
}

.story-quote i {
    color: var(--primary-gold);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.story-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--deep-charcoal);
    margin-bottom: 10px;
}

.story-quote span {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* ====================================
   MISSION & VISION
==================================== */
.mission-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--pure-white);
    font-size: 28px;
}

.mission-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--warm-gray);
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    margin-bottom: 12px;
    color: var(--warm-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-points li:last-child {
    margin-bottom: 0;
}

.mission-points i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* ====================================
   VALUES SECTION
==================================== */
.values-section {
    background: var(--pure-white);
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--pure-white);
    font-size: 32px;
    box-shadow: var(--shadow-gold);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--warm-gray);
}

.value-stats {
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(201, 164, 76, 0.1);
    color: var(--primary-gold);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* ====================================
   ACTIVITIES SECTION
==================================== */
.activities-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.activity-category {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: fit-content;
}

.activity-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 164, 76, 0.2);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pure-white);
    box-shadow: var(--shadow-gold);
}

.category-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--deep-charcoal);
    line-height: 1.3;
}

.category-description {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--warm-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.activity-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.activity-list li strong {
    color: var(--deep-charcoal);
    font-weight: 600;
}

.activity-list li:last-child {
    margin-bottom: 0;
}

/* ====================================
   IMPACT SECTION
==================================== */
.impact-section {
    background: linear-gradient(135deg, var(--deep-charcoal), var(--soft-charcoal));
    padding: 100px 0;
    color: var(--pure-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    text-align: center;
}

.impact-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.impact-item:hover .impact-circle {
    transform: scale(1.1);
    background: rgba(201, 164, 76, 0.1);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.impact-item h4 {
    font-size: 1.1rem;
    color: var(--pure-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   LEADERSHIP SECTION
==================================== */
.leadership-section {
    background: var(--pure-white);
    padding: 100px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.leader-title {
    display: block;
    margin-bottom: 15px;
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.95rem;
}

.leader-info p {
    margin-bottom: 20px;
    color: var(--warm-gray);
    line-height: 1.6;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-social a {
    width: 36px;
    height: 36px;
    background: rgba(201, 164, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.leader-social a:hover {
    background: var(--gold-gradient);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* ====================================
   CAREER CARDS (Legacy - kept for compatibility)
==================================== */
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.career-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.career-card:hover::before {
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 24px;
    box-shadow: var(--shadow-gold);
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--deep-charcoal);
    margin: 0;
}

.card-content p {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: rgba(201, 164, 76, 0.08);
    color: var(--primary-gold);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ====================================
   CATEGORY FILTERS
==================================== */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--pure-white);
    color: var(--warm-gray);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--pure-white);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* ====================================
   FEATURED SECTION
==================================== */
.featured-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.featured-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.featured-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.featured-card p {
    color: var(--warm-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    color: var(--deep-charcoal);
    font-size: 0.95rem;
}

.featured-meta i {
    color: var(--primary-gold);
    margin-right: 6px;
}

/* ====================================
   CTA SECTION
==================================== */
.cta-section {
    background: var(--gold-gradient);
    padding: 100px 0;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ====================================
   FOOTER
==================================== */
.footer {
    background: var(--deep-charcoal);
    color: var(--pure-white);
    padding: 80px 80px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .brand-logo {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    color: var(--pure-white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--pure-white);
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.3rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 14px 20px;
    color: var(--pure-white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    width: 52px;
    height: 52px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: var(--pure-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-lg);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* ====================================
   BACK TO TOP BUTTON
==================================== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-gold);
    font-size: 1.2rem;
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold-lg);
}

/* ====================================
   ANIMATIONS
==================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h1 span {
        font-size: 4.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-grid,
    .story-grid {
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 16px 24px;
    }
    
    .navbar.scrolled {
        padding: 12px 24px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 30, 36, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        margin-left: 5%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h1 span {
        font-size: 4rem;
    }
    
    .hero-stats-mini {
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .featured-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h1 span {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta,
    .hero-stats-mini,
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-stats-mini {
        flex-wrap: wrap;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .story-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .featured-grid,
    .leadership-grid,
    .impact-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .mission-card {
        padding: 30px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .impact-circle {
        width: 140px;
        height: 140px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 span {
        font-size: 2.6rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .stat-mini {
        flex: 1 1 calc(50% - 20px);
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 25px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .impact-circle {
        width: 120px;
        height: 120px;
    }
    
    .impact-number {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-category {
        padding: 25px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-list li {
        font-size: 0.9rem;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* WhatsApp Button */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    color: white;
    font-size: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1e293b;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #1e293b;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Panel */
.whatsapp-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
    overflow: hidden;
}

.whatsapp-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Panel Header */
.whatsapp-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-header-content i {
    font-size: 28px;
}

.header-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}

.online-status {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.close-panel {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-panel:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Panel Body */
.whatsapp-body {
    padding: 20px;
    background: #f0f2f5;
    max-height: 400px;
    overflow-y: auto;
}

.welcome-message {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.support-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25D366;
}

.message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 250px;
}

.message-bubble p {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.message-time {
    font-size: 0.7rem;
    color: #94a3b8;
    display: block;
    text-align: right;
    margin-top: 4px;
}

/* Quick Options */
.quick-options {
    margin-bottom: 20px;
}

.options-title {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
}

.option-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-chip {
    background: white;
    padding: 10px 16px;
    border-radius: 100px;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.option-chip i {
    color: #25D366;
    font-size: 0.9rem;
}

.option-chip:hover {
    background: #f0fdf4;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.1);
}

/* Business Hours */
.business-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.85rem;
}

.business-hours i {
    color: #25D366;
}

/* Panel Footer */
.whatsapp-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.start-chat-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.start-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.start-chat-btn i {
    font-size: 1.2rem;
}

.response-time {
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

/* Scrollbar Styling */
.whatsapp-body::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.whatsapp-body::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .whatsapp-panel {
        width: calc(100vw - 40px);
        right: 0;
        bottom: 80px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .whatsapp-panel {
        background: #1e293b;
    }
    
    .whatsapp-body {
        background: #0f172a;
    }
    
    .message-bubble,
    .option-chip,
    .business-hours,
    .whatsapp-footer {
        background: #334155;
        border-color: #475569;
    }
    
    .message-bubble p,
    .option-chip,
    .options-title,
    .business-hours {
        color: #f1f5f9;
    }
    
    .message-time {
        color: #94a3b8;
    }
}

/* Notification Badge */
.whatsapp-button::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #f97316;
    border: 2px solid white;
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Unread Message Indicator */
.whatsapp-button[data-unread="true"]::before {
    content: '1';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #f97316;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 2;
}