/* ====== BASE STYLES AND VARIABLES ====== */
:root {
    /* Color variables from about.css */
    --mountain-brown: #553231;
    --water-blue: #597C9E;
    --olive-green: #8DA05B;
    --premium-white: #F8F5F2;
    --golden-brown: #EAAD3D;
    --dark-navy: #1A112E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-premium: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --section-spacing: 120px;
    
    /* Leadership theme colors */
    --mountain-darker: #553231;
    --mountain: #6A3E3D;
    --mountain-lighter: #886564;
    --water-darker: #26496B;
    --water: #305B86;
    --water-lighter: #597C9E;
    --sun-darker: #B77A0A;
    --sun: #E5990C;
    --sun-lighter: #EAAD3D;
    --plant-darker: #5A6D28;
    --plant: #718832;
    --plant-lighter: #8DA05B;
    --monotone-dark: #1A112E;
    --monotone-light: #F3E8D3;

    /* Additional premium variables */
    --shadow-soft: 0 10px 30px rgba(26, 17, 46, 0.08);
    --shadow-medium: 0 15px 40px rgba(26, 17, 46, 0.12);
    --shadow-strong: 0 20px 50px rgba(26, 17, 46, 0.15);
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --gradient-primary: linear-gradient(135deg, var(--water-darker), var(--water-lighter));
    --gradient-secondary: linear-gradient(135deg, var(--sun-darker), var(--sun-lighter));
    --gradient-accent: linear-gradient(135deg, var(--plant-darker), var(--plant-lighter));
    --gradient-premium: linear-gradient(135deg, var(--sun), var(--water-darker), var(--plant));
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-navy);
    background-color: var(--premium-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--water-darker);
    transition: var(--transition-premium);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--gradient-premium);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--mountain-brown);
    margin-bottom: 2rem;
}

p {
    margin-bottom: 2rem;
}

/* ====== UTILITY CLASSES ====== */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }
.mt-6 { margin-top: 6rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }
.mb-6 { margin-bottom: 6rem; }

.reveal-fade { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: var(--transition-premium);
}

.reveal-fade.active { 
    opacity: 1; 
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-premium);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-premium);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-premium);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    margin-left: 0.8rem;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-premium);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--water-darker);
    color: var(--premium-white);
    border-color: var(--water-darker);
}

.btn-primary:hover {
    background-color: var(--water);
    border-color: var(--water);
    box-shadow: 0 8px 20px rgba(38, 73, 107, 0.3);
}

.btn-secondary {
    background-color: var(--sun);
    color: var(--premium-white);
    border-color: var(--sun);
}

.btn-secondary:hover {
    background-color: var(--sun-darker);
    border-color: var(--sun-darker);
    box-shadow: 0 8px 20px rgba(229, 153, 12, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--premium-white);
    border-color: var(--premium-white);
}

.btn-outline:hover {
    background-color: var(--premium-white);
    color: var(--water-darker);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-accent {
    background-color: var(--plant);
    color: var(--premium-white);
    border-color: var(--plant);
}

.btn-accent:hover {
    background-color: var(--plant-darker);
    border-color: var(--plant-darker);
    box-shadow: 0 8px 20px rgba(113, 136, 50, 0.3);
}

/* ====== SECTION STYLES ====== */
.section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 6rem;
    position: relative;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sun);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 4.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--sun);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.8rem;
    color: var(--dark-navy);
    opacity: 0.85;
}

.section-cta {
    margin-top: 4rem;
}

.section-shape {
    position: absolute;
    z-index: -1;
}

.shape-about {
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(229, 153, 12, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Section with background overlay pattern */
.section-pattern {
    position: relative;
    overflow: hidden;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23597c9e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.section-pattern .container {
    position: relative;
    z-index: 1;
}

/* ====== HERO SECTION ====== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 8rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(38, 73, 107, 0.9), rgba(89, 124, 158, 0.7));
    color: var(--premium-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 73, 107, 0.85), rgba(26, 17, 46, 0.75));
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background-color: var(--sun);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--water-lighter);
    animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
    100% { transform: translate(0, 0); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--sun);
    color: var(--premium-white);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 3rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.2s;
}

.hero-title {
    font-size: 6.5rem;
    color: var(--premium-white);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.4s;
}

.hero-subtitle {
    font-size: 2.4rem;
    color: var(--premium-white);
    opacity: 0.9;
    margin-bottom: 4rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

.scroll-down {
    position: absolute;
    bottom: 12rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s, bounce 2s infinite 1.2s;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--premium-white);
}

.scroll-down span {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-down i {
    font-size: 2.4rem;
}

/* Hero Quick Links */
.hero-quick-links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 17, 46, 0.9);
    padding: 2rem 0;
    z-index: 10;
    transform: translateY(100%);
    animation: slideUp 0.8s forwards 1.5s;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.quick-links-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.quick-link {
    display: flex;
    align-items: center;
    color: var(--premium-white);
    transition: var(--transition-premium);
}

.quick-link i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--sun);
    transition: var(--transition-premium);
}

.quick-link a {
    color: var(--premium-white);
    font-weight: 500;
}

.quick-link:hover {
    transform: translateY(-3px);
}

.quick-link:hover i {
    color: var(--sun-lighter);
    transform: scale(1.1);
}

/* Hero animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* ====== ABOUT SECTION ====== */
.about-section {
    background-color: var(--premium-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(38, 73, 107, 0.05);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(229, 153, 12, 0.05);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1.7rem;
    color: var(--dark-navy);
    opacity: 0.85;
    margin-bottom: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 3rem;
    background: var(--premium-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-premium);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--water-darker);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.stat-number::after {
    content: attr(data-suffix);
    font-size: 2.5rem;
    position: absolute;
    right: -15px;
    top: 5px;
}

.stat-label {
    font-size: 1.7rem;
    color: var(--dark-navy);
    opacity: 0.8;
    margin: 0;
}

.image-stack {
    position: relative;
}

.image-stack__item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-stack__item--top {
    position: relative;
    z-index: 2;
    width: 80%;
}

.image-stack__item--bottom {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 65%;
    z-index: 1;
}

/* ====== PHILOSOPHY SECTION ====== */
.philosophy-section {
    background-color: rgba(26, 17, 46, 0.02);
    position: relative;
    overflow: hidden;
    padding: 12rem 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-text p {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    color: var(--dark-navy);
    opacity: 0.85;
}

.philosophy-points {
    list-style: none;
    margin-top: 3rem;
}

.philosophy-points li {
    margin-bottom: 2rem;
    padding-left: 3.5rem;
    position: relative;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--mountain-brown);
}

.philosophy-points li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(89, 124, 158, 0.15);
    border-radius: 50%;
    color: var(--water-darker);
    transition: var(--transition-premium);
}

.philosophy-points li:hover i {
    background-color: var(--water-darker);
    color: var(--premium-white);
    transform: scale(1.1);
}

.philosophy-image {
    position: relative;
}

.philosophy-image-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.philosophy-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark-navy);
    color: var(--premium-white);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    width: 80%;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.philosophy-quote i {
    font-size: 3rem;
    color: var(--sun);
    margin-bottom: 1.5rem;
    display: block;
}

.philosophy-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.philosophy-quote span {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* ====== APPROACH SECTION ====== */
.approach-section {
    background-color: var(--premium-white);
    position: relative;
}

.approach-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,173,61,0.15) 0%, rgba(234,173,61,0) 70%);
    z-index: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.approach-card {
    background-color: var(--premium-white);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-premium);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-icon {
    width: 90px;
    height: 90px;
    background: rgba(89, 124, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    transition: var(--transition-premium);
}

.approach-icon i {
    font-size: 3.5rem;
    color: var(--water-darker);
    transition: var(--transition-premium);
}

.approach-card:hover .approach-icon {
    background: var(--water-darker);
}

.approach-card:hover .approach-icon i {
    color: var(--premium-white);
    transform: rotateY(180deg);
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--mountain-brown);
}

.approach-card p {
    font-size: 1.6rem;
    color: var(--dark-navy);
    opacity: 0.85;
    margin-bottom: 0;
}

/* ====== VIRTUAL TOUR SECTION ====== */
.virtual-tour-section {
    background-color: var(--water-darker);
    color: var(--premium-white);
    position: relative;
    overflow: hidden;
}

.virtual-tour-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.virtual-tour-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.virtual-tour-content h2 {
    color: var(--premium-white);
}

.virtual-tour-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.7rem;
    margin-bottom: 3rem;
}

.video-thumbnail {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    background-color: var(--sun);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
    cursor: pointer;
}

.play-button i {
    font-size: 3rem;
    color: var(--premium-white);
    margin-left: 0.5rem;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--sun-darker);
    box-shadow: 0 0 20px rgba(229, 153, 12, 0.5);
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonial-section {
    background-color: rgba(26, 17, 46, 0.02);
    position: relative;
}

.testimonial-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f5f2' fill-opacity='1' d='M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,154.7C672,128,768,96,864,106.7C960,117,1056,171,1152,176C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card {
    background-color: var(--premium-white);
    padding: 5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--sun);
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    border: 3px solid var(--water-lighter);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--mountain-brown);
    margin-bottom: 0.5rem;
}

.author-info span {
    font-size: 1.4rem;
    color: var(--dark-navy);
    opacity: 0.7;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--premium-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-navy);
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-soft);
    margin: 0 1rem;
}

.slider-arrow:hover {
    background-color: var(--water-darker);
    color: var(--premium-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.slider-dots {
    display: flex;
    align-items: center;
    margin: 0 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(26, 17, 46, 0.2);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: var(--transition-premium);
}

.slider-dot.active {
    background-color: var(--water-darker);
    transform: scale(1.2);
}

/* ====== AWARDS SECTION ====== */
.awards-section {
    background-color: var(--premium-white);
    position: relative;
    z-index: 2;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.award-card {
    background-color: var(--premium-white);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 17, 46, 0.05);
}

.award-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-premium);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.award-card:hover::before {
    transform: scaleY(1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 153, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    transition: var(--transition-premium);
}

.award-icon i {
    font-size: 3rem;
    color: var(--sun);
    transition: var(--transition-premium);
}

.award-card:hover .award-icon {
    background: var(--sun);
}

.award-card:hover .award-icon i {
    color: var(--premium-white);
    transform: scale(1.1);
}

.award-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--mountain-brown);
}

.award-card p {
    font-size: 1.6rem;
    color: var(--dark-navy);
    opacity: 0.75;
    margin-bottom: 0;
}

/* ====== NEWS SECTION ====== */
.news-section {
    background-color: var(--light-gray);
    position: relative;
    padding: 10rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.news-card {
    background-color: var(--premium-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--sun);
    color: var(--premium-white);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.news-content {
    padding: 2.5rem;
}

.news-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--water-darker);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.news-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.news-link {
    font-weight: 600;
    color: var(--sun);
    display: inline-flex;
    align-items: center;
}

.news-link i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* ====== PROGRAMS SECTION ====== */
.programs-section {
    background-color: rgba(26, 17, 46, 0.02);
    position: relative;
    overflow: hidden;
}

.programs-decoration {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141,160,91,0.15) 0%, rgba(141,160,91,0) 70%);
    z-index: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.program-card {
    background-color: var(--premium-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 17, 46, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-premium);
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--sun);
    color: var(--premium-white);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-premium);
}

.program-link:hover {
    background-color: var(--water-darker);
    transform: translateY(-3px);
}

.program-content {
    padding: 3rem;
}

.program-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--mountain-brown);
}

.program-content p:first-of-type {
    color: var(--sun);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.program-content p:last-of-type {
    color: var(--dark-navy);
    opacity: 0.85;
    margin-bottom: 0;
    font-size: 1.6rem;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, var(--water-darker), var(--dark-navy));
    color: var(--premium-white);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--premium-white);
    margin-bottom: 2.5rem;
}

.cta-content p {
    font-size: 1.8rem;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.cta-phone, .cta-email {
    display: flex;
    align-items: center;
    color: var(--premium-white);
    font-size: 1.6rem;
    opacity: 0.9;
}

.cta-phone i, .cta-email i {
    margin-right: 1rem;
    color: var(--sun);
}

/* ====== FOOTER SECTION ====== */
.footer {
    background-color: var(--dark-navy);
    color: var(--premium-white);
    padding: 8rem 0 2rem;
    position: relative;
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-premium);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--premium-white);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--sun);
}

.footer-logo {
    margin-bottom: 2.5rem;
    max-width: 180px;
}

.footer-column p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--premium-white);
    transition: var(--transition-premium);
    font-size: 1.6rem;
}

.social-link:hover {
    background: var(--sun);
    color: var(--premium-white);
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: var(--transition-premium);
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    color: var(--sun);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-premium);
}

.footer-links a:hover {
    color: var(--premium-white);
    transform: translateX(5px);
    padding-left: 2rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info li {
    display: flex;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1.5;
}

.contact-info li i {
    color: var(--sun);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.footer-newsletter h4 {
    margin-top: 3rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--premium-white);
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
    font-size: 1.4rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--sun);
    border: none;
    color: var(--premium-white);
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition-premium);
}

.newsletter-form button:hover {
    background: var(--sun-darker);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    margin-left: 2.5rem;
    transition: var(--transition-premium);
}

.footer-bottom-links a:hover {
    color: var(--sun);
}

.footer-accreditation {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.accreditation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accreditation-wrapper p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    margin: 0;
}

.accreditation-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.accreditation-logos img {
    height: 40px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--sun);
    color: var(--premium-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-premium);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--water-darker);
    transform: translateY(-5px);
}

/* Animation for counting numbers */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ====== MEDIA QUERIES FOR RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .philosophy-quote {
        width: 90%;
        right: -15px;
        bottom: -15px;
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .section {
        padding: 8rem 0;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .about-content,
    .philosophy-content,
    .virtual-tour-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text,
    .philosophy-text {
        order: 2;
    }
    
    .image-stack,
    .philosophy-image,
    .virtual-tour-image {
        order: 1;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .quick-links-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .quick-link {
        flex-basis: 48%;
        margin-bottom: 1.5rem;
    }
    
    .hero-quick-links {
        padding: 1.5rem 0;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .accreditation-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .section {
        padding: 7rem 0;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 3.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .testimonial-card {
        padding: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .philosophy-quote {
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
        margin-top: 3rem;
    }
    
    .footer-column h4 {
        font-size: 1.8rem;
    }
    
    .quick-link {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-bottom-links a {
        margin-left: 0;
    }
    
    .news-card {
        margin: 0 1.5rem;
    }
    
    .image-stack__item--top {
        width: 100
