/* ==========================================================================
   WYE Egypt Institutional Homepage Redesign Stylesheet
   ========================================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body.wye-homepage-body,
.wye-homepage {
    /* Institutional Color Palette */
    --wye-primary: #0a1931;       /* Deep Navy Blue */
    --wye-primary-light: #15305b; /* Medium Navy Blue */
    --wye-primary-dark: #050c18;  /* Darkest Navy Blue */
    --wye-gold: #c5a880;          /* Premium Gold Accent */
    --wye-gold-light: #e5ccab;    /* Light Gold */
    --wye-gold-dark: #9a7e58;     /* Deep Gold */
    --wye-accent: #3a86c8;        /* Soft Blue Accent */
    --wye-bg-light: #f7f9fc;      /* Soft Gray Background */
    --wye-bg-white: #ffffff;
    --wye-text-dark: #1a202c;     /* Dark Charcoal Text */
    --wye-text-muted: #64748b;    /* Slate Text */
    --wye-text-light: #ffffff;
    --wye-border-color: #e2e8f0;

    font-family: 'Tajawal', sans-serif;
    background-color: var(--wye-bg-white);
    color: var(--wye-text-dark);
    line-height: 1.8;
}

/* Base Headings styling inside homepage */
.wye-homepage h1,
.wye-homepage h2,
.wye-homepage h3,
.wye-homepage h4,
.wye-homepage h5,
.wye-homepage h6 {
    font-family: 'Cairo', sans-serif;
    color: var(--wye-primary);
    font-weight: 700;
}

/* Institutional Separators and Titles */
.wye-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    position: relative;
    padding-bottom: 20px;
}
.wye-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--wye-gold);
}
.wye-section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.wye-section-header p {
    color: var(--wye-text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.wye-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
}
.wye-btn-gold {
    background-color: var(--wye-gold);
    color: var(--wye-primary-dark);
}
.wye-btn-gold:hover {
    background-color: var(--wye-gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}
.wye-btn-outline {
    border: 2px solid var(--wye-gold);
    color: var(--wye-gold);
    background: transparent;
}
.wye-btn-outline:hover {
    background-color: var(--wye-gold);
    color: var(--wye-primary-dark);
    transform: translateY(-2px);
}
.wye-btn-navy {
    background-color: var(--wye-primary);
    color: #fff;
}
.wye-btn-navy:hover {
    background-color: var(--wye-primary-dark);
    transform: translateY(-2px);
}

/* SECTION 1: HERO — Premium Political Party Design */
.wye-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 160px 0 80px 0;
    overflow: hidden;
    outline: none;
}
.wye-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, rgba(5, 12, 24, 0.88) 0%, rgba(10, 25, 49, 0.75) 40%, rgba(21, 48, 91, 0.65) 100%);
    z-index: 1;
}

/* Background slider */
.wye-hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.wye-hero-slide-item {
    position: absolute;
    top: -6%;
    left: -6%;
    right: -6%;
    bottom: -6%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 10s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    transform: scale(1);
    filter: saturate(1.05) contrast(1.05);
}
.wye-hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.75) 0%, rgba(21, 48, 91, 0.55) 50%, rgba(10, 25, 49, 0.4) 100%);
    z-index: 2;
}
.wye-hero-slide-item.is-active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.06);
}
.wye-hero-slider-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Hero content layout */
.wye-hero-content {
    max-width: 780px;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Premium badge pill */
.wye-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--wye-gold);
    border: 1px solid rgba(197, 168, 128, 0.35);
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    backdrop-filter: blur(4px);
}
.wye-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wye-gold);
    display: inline-block;
    animation: wyePulse 2s ease-in-out infinite;
}
.wye-hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
    letter-spacing: -0.5px;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

/* Gold divider with diamond accent */
.wye-hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.wye-hero-divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wye-gold));
    border-radius: 1px;
}
.wye-hero-divider-diamond {
    color: var(--wye-gold);
    font-size: 0.6rem;
    opacity: 0.8;
}
.wye-hero-divider .wye-hero-divider-line:last-child {
    background: linear-gradient(90deg, var(--wye-gold), transparent);
}

.wye-hero-content .subheadline {
    font-size: 1.85rem;
    color: var(--wye-gold-light);
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}
.wye-hero-content .description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 40px;
    line-height: 1.85;
    max-width: 650px;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.wye-hero-actions {
    display: flex;
    gap: 16px;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}

/* Glassmorphism Statistics Card */
.wye-hero-stats-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    animation: wyeFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
.wye-hero-stat-item {
    text-align: center;
    padding: 8px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.wye-hero-stat-item:first-child {
    padding-right: 0;
}
.wye-hero-stat-item:last-child {
    border-left: none;
    padding-left: 0;
}
.wye-hero-stat-number {
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--wye-gold);
    margin-bottom: 4px;
    line-height: 1.1;
}
.wye-hero-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* Scroll-down indicator */
.wye-hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: 'Cairo', sans-serif;
    animation: wyeBounceDown 3s ease-in-out infinite;
}
.wye-hero-scroll-indicator:hover {
    color: var(--wye-gold);
}
.wye-scroll-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.wye-hero-scroll-indicator i {
    font-size: 1.2rem;
}

/* Navigation dots */
.wye-hero-nav {
    position: absolute;
    bottom: 42px;
    right: 40px;
    z-index: 20;
    display: flex;
    gap: 12px;
}
.wye-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
}
.wye-hero-dot.is-active {
    background: var(--wye-gold);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
}
.wye-hero-dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Hero Animations
   ========================================================================== */
@keyframes wyeFadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes wyeBounceDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
}
@keyframes wyePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* SECTION 2: KEY STATISTICS */
.wye-stats-section {
    padding: 80px 0;
    background-color: var(--wye-bg-light);
}
.wye-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.wye-stat-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--wye-gold);
    transition: transform 0.3s ease;
}
.wye-stat-card:hover {
    transform: translateY(-5px);
}
.wye-stat-icon {
    font-size: 2.5rem;
    color: var(--wye-primary);
    margin-bottom: 15px;
}
.wye-stat-count {
    font-family: 'Cairo', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--wye-primary);
    line-height: 1;
    margin-bottom: 10px;
}
.wye-stat-title {
    font-size: 1rem;
    color: var(--wye-text-muted);
}

/* SECTION 3: ABOUT THE ORGANIZATION */
.wye-about-section {
    padding: 100px 0;
    background-color: #faf7f0;
    position: relative;
}
.wye-about-watermark {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.035;
    pointer-events: none;
}
.wye-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wye-about-image-wrapper {
    position: relative;
}
.wye-museum-frame {
    background: #fff;
    padding: 8px 8px 0 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    position: relative;
}
.wye-about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}
.wye-about-caption {
    background-color: var(--wye-primary);
    color: var(--wye-gold);
    font-size: 0.85rem;
    padding: 12px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    margin-top: 8px;
}
.wye-about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--wye-gold);
    border-radius: 4px;
    z-index: -1;
}
.wye-about-content h3 {
    font-family: 'Cairo', sans-serif;
    color: var(--wye-primary-dark);
    font-size: 2.25rem;
    margin-bottom: 25px;
    font-weight: 700;
}
.wye-about-text-content {
    color: var(--wye-text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}
.wye-about-text-content p {
    margin-bottom: 20px;
}
.wye-founder-highlight {
    border-right: 4px solid var(--wye-gold);
    background-color: rgba(197, 168, 128, 0.08);
    padding: 20px 24px;
    margin-top: 30px;
    border-radius: 0 6px 6px 0;
}
.wye-founder-highlight-quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--wye-primary-dark);
    line-height: 1.8;
    font-weight: 600;
}
.wye-founder-highlight-author {
    margin-top: 12px;
    color: var(--wye-gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
}
.wye-about-cta {
    margin-top: 30px;
}
.wye-btn-icon {
    margin-right: 8px;
}

/* SECTION 4: HISTORICAL LEADERSHIP TIMELINE */
.wye-timeline-section {
    padding: 100px 0;
    background-color: var(--wye-primary);
    color: #fff;
    overflow: hidden;
}
.wye-timeline-section .wye-section-header h2 {
    color: #fff;
}
.wye-timeline-section .wye-section-header p {
    color: rgba(255, 255, 255, 0.7);
}
.wye-timeline-container {
    position: relative;
    padding: 40px 0;
}
.wye-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}
.wye-timeline-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    scrollbar-width: thin;
    scrollbar-color: var(--wye-gold) rgba(255, 255, 255, 0.1);
}
.wye-timeline-wrapper::-webkit-scrollbar {
    height: 6px;
}
.wye-timeline-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--wye-gold);
    border-radius: 3px;
}
.wye-timeline-item {
    flex: 0 0 250px;
    text-align: center;
    position: relative;
}
.wye-timeline-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--wye-gold);
    border: 4px solid var(--wye-primary);
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}
.wye-timeline-item:hover .wye-timeline-node {
    background-color: #fff;
    transform: scale(1.3);
}
.wye-timeline-portrait {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--wye-gold);
    background-color: #fff;
    transition: transform 0.3s ease;
}
.wye-timeline-item:hover .wye-timeline-portrait {
    transform: translateY(-5px);
}
.wye-timeline-name {
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.wye-timeline-period {
    font-size: 0.9rem;
    color: var(--wye-gold-light);
}

/* SECTION 5: VISION, MISSION, VALUES */
.wye-vmv-section {
    padding: 100px 0;
}
.wye-vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wye-vmv-card {
    background-color: #fff;
    border: 1px solid var(--wye-border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
.wye-vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--wye-gold);
}
.wye-vmv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(10, 25, 49, 0.05);
    color: var(--wye-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}
.wye-vmv-card:hover .wye-vmv-icon {
    background-color: var(--wye-primary);
    color: #fff;
}
.wye-vmv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.wye-vmv-values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin-top: 15px;
}
.wye-vmv-value-tag {
    background-color: var(--wye-bg-light);
    color: var(--wye-primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* SECTION 6: AREAS OF IMPACT */
.wye-impact-section {
    padding: 100px 0;
    background-color: var(--wye-bg-light);
}
.wye-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.wye-impact-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid var(--wye-border-color);
}
.wye-impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--wye-gold);
}
.wye-impact-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.wye-impact-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 25, 49, 0.7) 0%, transparent 100%);
}
.wye-impact-body {
    padding: 30px;
}
.wye-impact-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.wye-impact-body p {
    color: var(--wye-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* SECTION 7: LATEST NEWS */
.wye-news-section {
    padding: 100px 0;
}
.wye-news-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}
.wye-news-featured .wye-news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wye-news-featured .wye-news-img {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.wye-news-featured .wye-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wye-news-featured .wye-news-meta {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--wye-gold);
    font-weight: 600;
}
.wye-news-featured h3 {
    font-size: 1.8rem;
    margin: 10px 0 15px 0;
}
.wye-news-featured p {
    color: var(--wye-text-muted);
}
.wye-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wye-news-list-item {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--wye-border-color);
    padding-bottom: 20px;
}
.wye-news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.wye-news-list-thumb {
    width: 120px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.wye-news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wye-news-list-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}
.wye-news-list-title a {
    color: var(--wye-primary);
    text-decoration: none;
}
.wye-news-list-title a:hover {
    color: var(--wye-gold);
}
.wye-news-list-date {
    font-size: 0.8rem;
    color: var(--wye-text-muted);
}

/* SECTION 8: NATIONAL PRESENCE */
.wye-map-section {
    padding: 100px 0;
    background-color: var(--wye-primary-dark);
    color: #fff;
}
.wye-map-section .wye-section-header h2 {
    color: #fff;
}
.wye-map-section .wye-section-header p {
    color: rgba(255, 255, 255, 0.7);
}
.wye-map-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.wye-map-visual {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
}
.wye-map-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
.wye-branches-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}
.wye-branches-list::-webkit-scrollbar {
    width: 6px;
}
.wye-branches-list::-webkit-scrollbar-thumb {
    background-color: var(--wye-gold);
    border-radius: 3px;
}
.wye-branch-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.wye-branch-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--wye-gold);
}
.wye-branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.wye-branch-name {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wye-gold-light);
}
.wye-branch-gov {
    font-size: 0.8rem;
    background-color: var(--wye-gold);
    color: var(--wye-primary-dark);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}
.wye-branch-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* SECTION 9: MEDIA GALLERY */
.wye-gallery-section {
    padding: 100px 0;
}
.wye-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.wye-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.wye-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.wye-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 49, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    color: #fff;
}
.wye-gallery-item:hover img {
    transform: scale(1.1);
}
.wye-gallery-item:hover .wye-gallery-overlay {
    opacity: 1;
}
.wye-gallery-caption {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.wye-gallery-icon {
    font-size: 1.5rem;
    color: var(--wye-gold);
}

/* SECTION 10: PARTNERS & COLLABORATIONS */
/* SECTION 10: PARTNERS & COLLABORATIONS (Modern Responsive Grid) */
.wye-partners-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.wye-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .wye-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
@media (min-width: 992px) {
    .wye-partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
    }
}
.wye-partner-card {
    background-color: #fbfbfb;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    transition: all 0.3s ease;
}
.wye-partner-card:hover {
    background-color: #ffffff;
    border-color: var(--wye-gold);
    box-shadow: 0 10px 25px rgba(10, 25, 49, 0.05);
    transform: translateY(-3px);
}
.wye-partner-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.wye-partner-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* SECTION 11: CHAIRMAN MESSAGE */
.wye-chairman-section {
    padding: 100px 0;
}
.wye-chairman-card {
    background-color: var(--wye-primary);
    border-radius: 12px;
    color: #fff;
    padding: 60px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(10, 25, 49, 0.15);
}
.wye-chairman-portrait-wrapper {
    text-align: center;
}
.wye-chairman-portrait {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--wye-gold);
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.wye-chairman-content h3 {
    color: var(--wye-gold);
    font-size: 2.25rem;
    margin-bottom: 5px;
}
.wye-chairman-title {
    font-size: 1.1rem;
    color: var(--wye-gold-light);
    margin-bottom: 25px;
    font-weight: 600;
}
.wye-chairman-message {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* SECTION 12: CONTACT & FOOTER */
.wye-contact-footer-section {
    background-color: var(--wye-primary-dark);
    color: #fff;
    padding: 100px 0 30px 0;
    border-top: 3px solid var(--wye-gold);
}
.wye-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.wye-contact-form-wrapper h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 25px;
}
.wye-contact-form .form-group {
    margin-bottom: 20px;
}
.wye-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--wye-gold-light);
}
.wye-contact-form input,
.wye-contact-form textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    width: 100%;
}
.wye-contact-form input:focus,
.wye-contact-form textarea:focus {
    border-color: var(--wye-gold);
    outline: none;
}
.wye-contact-info-wrapper h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 25px;
}
.wye-contact-info-list {
    list-style: none;
    margin-bottom: 30px;
}
.wye-contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.wye-contact-info-item i {
    font-size: 1.5rem;
    color: var(--wye-gold);
}
.wye-contact-map-embed {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Institutional Footer Navigation */
.wye-footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
    margin-bottom: 30px;
}
.wye-footer-col h4 {
    color: var(--wye-gold);
    margin-bottom: 20px;
    font-size: 1.15rem;
}
.wye-footer-col ul {
    list-style: none;
}
.wye-footer-col ul li {
    margin-bottom: 10px;
}
.wye-footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.wye-footer-col ul li a:hover {
    color: var(--wye-gold);
}
.wye-footer-logo-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 15px;
}
.wye-footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.wye-footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.wye-footer-social-links a:hover {
    background-color: var(--wye-gold);
    color: var(--wye-primary-dark);
}

.wye-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .wye-chairman-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    .wye-chairman-portrait {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 991px) {
    .wye-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wye-about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .wye-vmv-grid {
        grid-template-columns: 1fr;
    }
    .wye-news-grid {
        grid-template-columns: 1fr;
    }
    .wye-map-grid {
        grid-template-columns: 1fr;
    }
    .wye-contact-grid {
        grid-template-columns: 1fr;
    }
    .wye-footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wye-hero-content h1 {
        font-size: 2.5rem;
    }
    .wye-hero-content .subheadline {
        font-size: 1.35rem;
    }
    .wye-hero-actions {
        flex-direction: column;
    }
    .wye-section-header h2 {
        font-size: 1.75rem;
    }
    .wye-footer-nav {
        grid-template-columns: 1fr;
    }
    .wye-footer-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   WYE Historical Identity and Vintage Museum Redesign Styles
   ========================================================================== */

/* Vintage Parchment/Paper Background */
.wye-vintage-bg {
    background-color: #fcf9f2 !important;
    background-image: radial-gradient(circle, rgba(197, 168, 128, 0.04) 0%, transparent 80%),
                      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 5 L115 37 L115 83 L60 115 L5 83 L5 37 Z' fill='none' stroke='rgba(197, 168, 128, 0.05)' stroke-width='1.5'/%3E%3C/svg%3E") !important;
    background-repeat: repeat !important;
    position: relative;
    border-top: 1px solid rgba(197, 168, 128, 0.18);
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
}

/* Elegant Historical Framing */
.wye-museum-frame {
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--wye-gold);
    box-shadow: 0 15px 35px rgba(10, 25, 49, 0.12);
    transition: all 0.3s ease;
}
.wye-museum-frame::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid var(--wye-gold-dark);
    pointer-events: none;
    opacity: 0.7;
}
.wye-museum-frame img {
    display: block;
    width: 100%;
    height: auto;
    filter: sepia(0.3) contrast(1.1) brightness(0.95);
    transition: all 0.5s ease;
}
.wye-museum-frame:hover img {
    filter: sepia(0) contrast(1.05) brightness(1);
}
.wye-museum-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 25, 49, 0.2);
    border-color: var(--wye-gold-light);
}

/* Calligraphic Separators */
.wye-deco-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    gap: 15px;
}
.wye-deco-line::before,
.wye-deco-line::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(to left, var(--wye-gold), transparent);
}
.wye-deco-line::after {
    background: linear-gradient(to right, var(--wye-gold), transparent);
}
.wye-deco-diamond {
    width: 10px;
    height: 10px;
    background: var(--wye-gold);
    transform: rotate(45deg);
    position: relative;
}
.wye-deco-diamond::before,
.wye-deco-diamond::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--wye-gold-dark);
}
.wye-deco-diamond::before {
    left: -12px;
    top: 2px;
}
.wye-deco-diamond::after {
    right: -12px;
    top: 2px;
}

/* Layout Enhancement for Interactive Chronology */
.wye-timeline-item {
    transition: all 0.3s ease;
}
.wye-timeline-item:hover {
    transform: scale(1.05);
}
.wye-timeline-portrait {
    filter: sepia(0.4) contrast(1.1);
    transition: all 0.3s ease;
}
.wye-timeline-item:hover .wye-timeline-portrait {
    filter: sepia(0) contrast(1);
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}
.wye-timeline-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.wye-timeline-link:hover {
    color: var(--wye-gold);
}

/* Scroll Design for Timeline */
.wye-timeline-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--wye-gold);
    border-radius: 4px;
}

/* Manifesto Scroll Style */
.wye-manifesto-scroll {
    border: 2px double var(--wye-gold);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: inset 0 0 40px rgba(197, 168, 128, 0.15), 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.wye-manifesto-scroll:hover {
    border-color: var(--wye-gold-light);
    transform: translateY(-3px);
}

/* ==========================================================================
   Areas of Work Section (Redesigned Grid Cards)
   ========================================================================== */
.wye-work-section {
    background-color: #faf7f0;
    padding: 80px 0;
    text-align: center;
}
.wye-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    margin-top: 40px;
    margin-bottom: 50px;
}
@media (min-width: 576px) {
    .wye-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }
}
@media (min-width: 768px) {
    .wye-work-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}
@media (min-width: 1024px) {
    .wye-work-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}
.wye-work-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.wye-work-img-link {
    display: block;
    width: 100%;
    text-decoration: none;
}
.wye-work-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #eee;
    margin-bottom: 25px;
}
.wye-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
    display: block;
}
.wye-work-img-wrapper:hover .wye-work-img {
    transform: scale(1.05);
}
.wye-work-badge-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--wye-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.4);
    border: 3px solid #fff;
    z-index: 10;
    transition: all 0.3s ease;
}
.wye-work-card:hover .wye-work-badge-icon {
    background-color: var(--wye-primary-dark);
    box-shadow: 0 4px 10px rgba(10, 25, 49, 0.3);
    transform: translateX(-50%) scale(1.1);
}
.wye-work-title {
    margin-top: 5px;
    margin-bottom: 0;
}
.wye-work-title a {
    font-family: 'Cairo', sans-serif;
    color: var(--wye-primary-dark);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}
.wye-work-title a:hover {
    color: var(--wye-gold);
}
.wye-work-cta-wrapper {
    text-align: center;
}
.wye-btn-outline-gold {
    background-color: transparent;
    color: var(--wye-gold-dark);
    border: 1px solid var(--wye-gold);
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.wye-btn-outline-gold:hover {
    background-color: var(--wye-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.25);
}


/* ==========================================================================
   Heritage Timeline (99 Years of Impact)
   ========================================================================== */
.wye-heritage-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding-right: 50px;
}
.wye-heritage-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--wye-gold) 0%, rgba(197, 168, 128, 0.3) 100%);
}
.wye-heritage-item {
    position: relative;
    margin-bottom: 45px;
}
.wye-heritage-item:last-child {
    margin-bottom: 0;
}
.wye-heritage-node {
    position: absolute;
    right: -50px;
    top: 5px;
    width: 90px;
    height: 32px;
    background-color: var(--wye-primary-dark);
    border: 2px solid var(--wye-gold);
    color: var(--wye-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: all 0.3s ease;
}
.wye-heritage-panel {
    background: #fff;
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 4px;
    padding: 25px;
    margin-right: 65px;
    box-shadow: 0 10px 25px rgba(10, 25, 49, 0.04);
    text-align: right;
    transition: all 0.3s ease;
}
.wye-heritage-panel h3 {
    font-family: 'Cairo', sans-serif;
    color: var(--wye-primary-dark);
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
}
.wye-heritage-panel p {
    color: var(--wye-text-dark);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.wye-heritage-item:hover .wye-heritage-panel {
    border-color: var(--wye-gold);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
    transform: translateY(-2px);
}
.wye-heritage-item:hover .wye-heritage-node {
    background-color: var(--wye-gold);
    color: var(--wye-primary-dark);
    border-color: var(--wye-gold-light);
}


/* ==========================================================================
   Photo Gallery Interactive Hover Styling
   ========================================================================== */
.wye-gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    display: block;
}
.wye-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.6s ease;
}
.wye-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 25, 49, 0.95) 0%, rgba(10, 25, 49, 0.6) 70%, rgba(10, 25, 49, 0.2) 100%) !important;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 10;
}
.wye-gallery-item:hover img {
    transform: scale(1.08);
}
.wye-gallery-item:hover .wye-gallery-overlay {
    opacity: 1;
}
.wye-gallery-hover-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--wye-gold);
    margin-bottom: 10px;
    justify-content: flex-start;
}
.wye-gallery-cat-badge,
.wye-gallery-date-badge {
    display: flex;
    align-items: center;
    background: rgba(197, 168, 128, 0.15);
    padding: 3px 8px;
    border-radius: 2px;
    color: var(--wye-gold);
}
.wye-gallery-hover-title {
    font-family: 'Cairo', sans-serif;
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: right;
}
.wye-gallery-hover-link {
    font-size: 0.85rem;
    color: var(--wye-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    justify-content: flex-start;
}
.wye-gallery-item:hover .wye-gallery-hover-link {
    gap: 10px;
}

/* ==========================================================================
   Chairman Section (New Responsive Layout)
   ========================================================================== */
/* ==========================================================================
   Redesigned Premium Chairman Message Section
   ========================================================================== */
.wye-chairman-section-modern {
    padding: 80px 0;
    background-color: #ffffff;
}
.wye-chairman-card-modern {
    background-color: var(--wye-primary-dark);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    box-shadow: 0 15px 35px rgba(10, 25, 49, 0.12);
}
@media (min-width: 992px) {
    .wye-chairman-card-modern {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 50px;
        align-items: center;
        padding: 50px 60px;
    }
}
.wye-chairman-text-col {
    position: relative;
    text-align: right;
    color: #ffffff;
}
.wye-quote-icon {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    font-family: serif;
    pointer-events: none;
}
.wye-chairman-title-modern {
    font-family: 'Cairo', sans-serif;
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.wye-chairman-quote-modern {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.wye-chairman-meta {
    margin-bottom: 30px;
    border-right: 3px solid var(--wye-gold);
    padding-right: 15px;
}
.wye-chairman-name-modern {
    font-family: 'Cairo', sans-serif;
    color: var(--wye-gold);
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 4px;
}
.wye-chairman-role-modern {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    display: block;
}
.wye-chairman-btn-modern {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--wye-gold);
    color: #ffffff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.wye-chairman-btn-modern:hover {
    background-color: var(--wye-gold);
    color: var(--wye-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.25);
}
.wye-chairman-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wye-chairman-photo-wrapper {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.wye-chairman-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.wye-chairman-photo-wrapper:hover .wye-chairman-photo {
    transform: scale(1.05);
}



/* ==========================================================================
   Hero Section Mobile Refinements
   ========================================================================== */
@media (max-width: 1024px) {
    .wye-hero-content h1 {
        font-size: 3rem;
    }
    .wye-hero-content .subheadline {
        font-size: 1.45rem;
    }
    .wye-hero-stats-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 24px;
    }
    .wye-hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .wye-hero-section {
        min-height: auto;
        padding: 130px 0 70px 0;
    }
    .wye-hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    .wye-hero-content .subheadline {
        font-size: 1.2rem;
    }
    .wye-hero-content .description {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 100%;
    }
    .wye-hero-actions {
        flex-direction: column;
    }
    .wye-hero-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
        margin-bottom: 20px;
    }
    .wye-hero-divider {
        margin-bottom: 20px;
    }
    .wye-hero-divider-line {
        width: 35px;
    }
    .wye-hero-stats-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        margin-top: 40px;
    }
    .wye-hero-stat-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 0;
    }
    .wye-hero-stat-item:first-child {
        padding-top: 0;
    }
    .wye-hero-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .wye-hero-stat-number {
        font-size: 1.75rem;
    }
    .wye-hero-scroll-indicator {
        display: none;
    }
    .wye-hero-nav {
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
    }
    .wye-hero-dot {
        width: 8px;
        height: 8px;
    }
    .wye-hero-dot.is-active {
        width: 22px;
    }
}

@media (max-width: 480px) {
    .wye-hero-section {
        padding: 110px 0 60px 0;
    }
    .wye-hero-content h1 {
        font-size: 1.85rem;
    }
    .wye-hero-content .subheadline {
        font-size: 1rem;
    }
    .wye-hero-content .description {
        font-size: 0.88rem;
        margin-bottom: 30px;
    }
    .wye-hero-nav {
        bottom: 18px;
        gap: 8px;
    }
    .wye-hero-dot {
        width: 6px;
        height: 6px;
    }
    .wye-hero-dot.is-active {
        width: 18px;
    }
    .wye-hero-stat-number {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   About Section Mobile Refinements
   ========================================================================== */
@media (max-width: 768px) {
    .wye-about-section {
        padding: 60px 0;
    }
    .wye-about-content h3 {
        font-size: 1.6rem !important;
        text-align: center;
    }
    .wye-about-text-content {
        font-size: 0.95rem !important;
        text-align: justify;
    }
    .wye-founder-highlight {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }
}

/* ==========================================================================
   Timeline Mobile Refinements (Right-Aligned Mobile Timeline)
   ========================================================================== */
@media (max-width: 768px) {
    .wye-heritage-timeline {
        padding-right: 35px;
        margin: 30px 0;
    }
    .wye-heritage-timeline::before {
        right: 12px;
    }
    .wye-heritage-item {
        margin-bottom: 30px;
    }
    .wye-heritage-node {
        right: -35px;
        width: 75px;
        height: 28px;
        font-size: 0.85rem;
        top: 6px;
    }
    .wye-heritage-panel {
        margin-right: 35px;
        padding: 18px 20px;
        box-shadow: 0 5px 15px rgba(10, 25, 49, 0.03);
    }
    .wye-heritage-panel h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .wye-heritage-panel p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
}




/* ==========================================================================
   Redesigned Vision, Mission & Values Section (Modern Blue Grid)
   ========================================================================== */
.wye-vmv-section-modern {
    padding: 85px 0;
    background-color: var(--wye-primary-dark);
    color: #ffffff;
    text-align: center;
}
.wye-vmv-title-modern {
    font-family: 'Cairo', sans-serif;
    color: #ffffff !important;
    font-size: 2.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 55px;
    letter-spacing: -0.5px;
}
.wye-vmv-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
@media (min-width: 992px) {
    .wye-vmv-grid-modern {
        flex-direction: row;
        gap: 0;
        align-items: stretch;
    }
}
.wye-vmv-col-modern {
    flex: 1;
    padding: 10px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 992px) {
    .wye-vmv-col-modern:not(:first-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
}
.wye-vmv-col-icon-modern {
    color: var(--wye-gold);
    font-size: 2.4rem;
    margin-bottom: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wye-vmv-col-title-modern {
    font-family: 'Cairo', sans-serif;
    color: var(--wye-gold) !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 18px;
}
.wye-vmv-col-text-modern {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 340px;
    text-align: center;
}
.wye-vmv-values-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.wye-vmv-values-row-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.wye-vmv-bullet-modern {
    color: var(--wye-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Mobile Overrides for Statistics Section (2x2 Grid) */
@media (max-width: 767px) {
    .wye-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .wye-stat-card {
        padding: 20px 10px !important;
    }
    .wye-stat-icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    .wye-stat-count {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
    }
    .wye-stat-title {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}




