/* ===================================
   Emashobeni Royal Palace
   Premium Professional Website Stylesheet
   Color Scheme: White, Grey, Beige, Gold, Black
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-gold: #C9A961;
    --dark-gold: #B8963D;
    --light-gold: #E4D4A8;
    --beige: #F5F1E8;
    --light-beige: #FAF8F3;
    --dark-grey: #2C2C2C;
    --medium-grey: #666666;
    --light-grey: #E5E5E5;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --shadow-xl: rgba(0, 0, 0, 0.25);
    --gold-gradient: linear-gradient(135deg, #C9A961 0%, #B8963D 100%);
    --dark-gradient: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    --overlay-gradient: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(201, 169, 97, 0.75) 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    a, button, .nav-link, .cta-button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    letter-spacing: -0.5px;
}

h1 { 
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}
h2 { 
    font-size: 2.75rem;
    font-weight: 700;
}
h3 { 
    font-size: 1.875rem;
    font-weight: 600;
}
h4 { 
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--dark-grey);
    position: relative;
    padding-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: var(--dark-gold);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* Header & Navigation */
.main-header {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 15px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-grey);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: kenburns 30s infinite alternate;
    transform-origin: center;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Buttons */
.cta-button,
.cta-button-white {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.cta-button:hover {
    background: var(--dark-gradient);
    border-color: var(--dark-grey);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.cta-button-white {
    background: var(--white);
    color: var(--primary-gold);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.read-more,
.learn-more {
    color: var(--primary-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover,
.learn-more:hover {
    color: var(--dark-gold);
    gap: 12px;
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 0;
    background: var(--light-beige);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(201, 169, 97, 0.25);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--light-beige), var(--beige));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
    transition: all 0.5s ease;
}

.vm-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.icon-wrapper i {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-card h2 {
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.vm-card p {
    color: var(--medium-grey);
    line-height: 1.8;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--medium-grey);
    margin-bottom: 20px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Focus Areas */
.focus-areas {
    padding: 80px 0;
    background: var(--beige);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.focus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.focus-card:hover::before {
    opacity: 0.05;
}

.focus-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
}

.focus-card > * {
    position: relative;
    z-index: 1;
}

.focus-card i {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.focus-card:hover i {
    transform: scale(1.15);
}

.focus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.focus-card p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Programmes Preview */
.programmes-preview {
    padding: 80px 0;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.programme-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.programme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.programme-card:hover::after {
    opacity: 0.1;
}

.programme-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.25);
}

.programme-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.programme-card:hover img {
    transform: scale(1.1);
}

.programme-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.programme-content h3 {
    margin-bottom: 15px;
    color: var(--dark-grey);
    font-size: 1.5rem;
}

.programme-content p {
    color: var(--medium-grey);
    line-height: 1.8;
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: var(--light-beige);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.value-item:hover::before {
    width: 400px;
    height: 400px;
}

.value-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

.value-item > * {
    position: relative;
    z-index: 1;
}

.value-item i {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.value-item:hover i {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    transform: scale(1.2) rotateY(360deg);
}

.value-item h4 {
    font-size: 1.1rem;
    transition: color 0.5s ease;
}

.value-item:hover h4 {
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 50%, #2C2C2C 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 50%, var(--dark-grey) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1), transparent 50%);
    animation: pulse 15s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.alt-bg {
    background: linear-gradient(180deg, var(--light-beige) 0%, var(--white) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text p {
    color: var(--medium-grey);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    position: relative;
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.content-image:hover::after {
    opacity: 0.1;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.content-image:hover img {
    transform: scale(1.1);
}

/* About Approach */
.about-approach {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.approach-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.approach-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.approach-card h3,
.approach-card p {
    padding: 0 20px;
}

.approach-card h3 {
    margin: 20px 0 10px;
}

.approach-card p {
    padding-bottom: 20px;
    color: var(--medium-grey);
}

/* Values Detailed */
.values-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.value-detail {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.value-detail:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.2);
    border-left-color: var(--primary-gold);
}

.value-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-beige), var(--beige));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.15);
    transition: all 0.5s ease;
}

.value-detail:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.25);
}

.value-icon i {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-text h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.value-text p {
    color: var(--medium-grey);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Programme Detail */
.programme-detail {
    margin-bottom: 60px;
}

.programme-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.programme-detail.reverse .programme-detail-content {
    grid-template-columns: 1fr 1.2fr;
}

.programme-detail.reverse .programme-detail-text {
    order: 2;
}

.programme-detail.reverse .programme-detail-image {
    order: 1;
}

.programme-detail-text h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.programme-detail-text h3 i {
    color: var(--primary-gold);
}

.programme-detail-text p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.programme-features {
    list-style: none;
    margin-top: 20px;
}

.programme-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--medium-grey);
}

.programme-features i {
    color: var(--primary-gold);
}

.programme-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.programme-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Focus Areas List */
.focus-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.focus-area-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
}

.focus-area-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.focus-area-item h4 {
    margin-bottom: 10px;
}

.focus-area-item p {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.objective-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.objective-card:hover::before {
    transform: scaleY(1);
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.2);
}

.objective-card i {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.objective-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.objective-card p {
    color: var(--medium-grey);
    line-height: 1.8;
    font-size: 1.02rem;
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.community-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.community-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.community-card h3 {
    margin-bottom: 15px;
}

.community-card p {
    color: var(--medium-grey);
}

/* Beneficiary List */
.beneficiary-list {
    max-width: 900px;
    margin: 0 auto;
}

.beneficiary-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.beneficiary-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px var(--shadow);
}

.beneficiary-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficiary-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.beneficiary-content h3 {
    margin-bottom: 10px;
}

.beneficiary-content p {
    color: var(--medium-grey);
    line-height: 1.7;
}

/* Characteristics Grid */
.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.characteristic-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
}

.characteristic-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.characteristic-card h4 {
    margin-bottom: 10px;
}

.characteristic-card p {
    color: var(--medium-grey);
}

/* Impact Map */
.impact-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-map img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.impact-text h3 {
    margin-bottom: 20px;
}

.impact-text p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.impact-text ul {
    list-style: none;
}

.impact-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--medium-grey);
}

.impact-text ul li i {
    color: var(--primary-gold);
}

/* Partnership Image Wrapper */
.partnership-image-wrapper {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.partnership-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Partnership Categories */
.partnership-categories {
    display: grid;
    gap: 40px;
}

.partnership-category {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partnership-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.partnership-category h3 {
    margin-bottom: 15px;
}

.partnership-category > p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.partnership-benefits {
    list-style: none;
    margin-top: 15px;
}

.partnership-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--medium-grey);
}

.partnership-benefits i {
    color: var(--primary-gold);
    margin-top: 3px;
}

/* Why Partner Grid */
.why-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.why-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.why-partner-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.why-partner-card h4 {
    margin-bottom: 10px;
}

.why-partner-card p {
    color: var(--medium-grey);
}

/* Partnership Models */
.partnership-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.model-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-gold);
}

.model-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.model-card h4 i {
    color: var(--primary-gold);
}

.model-card p {
    color: var(--medium-grey);
    line-height: 1.7;
}

/* Partnership CTA */
.partnership-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-grey));
    color: var(--white);
    text-align: center;
}

.partnership-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partnership-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* Contact Form */
.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    background: var(--dark-gradient);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--light-beige), var(--beige));
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.contact-info > p {
    color: var(--medium-grey);
    margin-bottom: 40px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.15);
}

.contact-item i {
    font-size: 1.8rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--medium-grey);
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--dark-grey);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-icons a:hover::before {
    width: 100px;
    height: 100px;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

/* Get Involved */
.get-involved {
    padding: 80px 0;
    background: var(--light-beige);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.involvement-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.involvement-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.involvement-card h3 {
    margin-bottom: 15px;
}

.involvement-card p {
    color: var(--medium-grey);
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-grey) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--light-grey);
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--light-grey);
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-number::after {
    content: '+';
    color: var(--primary-gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-beige) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.2);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-beige), var(--beige));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    color: var(--medium-grey);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid var(--light-grey);
}

.testimonial-author strong {
    color: var(--dark-grey);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
    background: var(--dark-gradient);
}

/* Smooth Reveal Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 91px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 30px 0;
        gap: 0;
        max-height: calc(100vh - 91px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: 80vh;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.15rem;
        margin: 20px 0 30px;
    }

    .section-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content,
    .content-grid,
    .programme-detail-content,
    .impact-map,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .programme-detail.reverse .programme-detail-content {
        grid-template-columns: 1fr;
    }

    .programme-detail.reverse .programme-detail-text,
    .programme-detail.reverse .programme-detail-image,
    .programme-detail-text,
    .programme-detail-image {
        order: initial;
    }

    .programme-detail-image {
        order: 2;
    }

    .programme-detail-text {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    .section-title { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.5rem; }

    .container {
        padding: 0 25px;
    }

    .content-section {
        padding: 70px 0;
    }

    .vm-card,
    .programme-card,
    .focus-item {
        padding: 35px 25px;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 75vh;
        min-height: 550px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 15px 0 25px;
        line-height: 1.6;
    }

    .page-header {
        padding: 90px 0 50px;
    }

    .page-header h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .lead-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .cta-section h2 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .focus-grid,
    .programmes-grid,
    .objectives-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-button,
    .cta-button-white {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        display: inline-block;
        text-align: center;
    }

    .content-section {
        padding: 50px 0;
    }

    .footer-top {
        padding: 45px 0 25px;
    }

    .container {
        padding: 0 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }

    .vm-card,
    .programme-card,
    .focus-item,
    .approach-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .programme-features li,
    .objectives-grid li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 16px 0;
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links li,
    .footer-contact li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .about-image img,
    .content-image img,
    .programme-detail-image img {
        border-radius: 12px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-item {
        padding: 20px 15px;
    }

    .value-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .value-item h4 {
        font-size: 1rem;
    }

    form input,
    form textarea,
    form select {
        font-size: 1rem;
        padding: 14px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-item p,
    .contact-item a {
        font-size: 0.95rem;
    }
}

/* Extra Small Devices - Enhanced Mobile Experience */
@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-white {
        padding: 13px 25px;
        font-size: 0.9rem;
        width: 100%;
    }

    .page-header h1 {
        font-size: 1.65rem;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .vm-card,
    .programme-card {
        padding: 25px 18px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 15px 0 20px;
    }

    .page-header {
        padding: 100px 0 40px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .cta-button-white,
    .nav-link,
    .footer-links a,
    .social-icons a {
        -webkit-tap-highlight-color: rgba(201, 169, 97, 0.2);
        tap-highlight-color: rgba(201, 169, 97, 0.2);
    }

    .cta-button:active,
    .cta-button-white:active {
        transform: scale(0.97);
    }

    .programme-card:active,
    .vm-card:active,
    .focus-item:active {
        transform: translateY(-3px);
    }
}

/* Smooth Scrolling for All Devices */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Improvements */
@media (max-width: 968px) {
    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);

    }
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Focus Areas Detailed Styles */
.focus-areas-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.focus-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.focus-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px var(--shadow-lg);
}

.focus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.focus-detail-card h3 {
    font-size: 1.4rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.focus-detail-card p {
    color: var(--medium-grey);
    line-height: 1.8;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .focus-areas-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
