/* CSS Variables */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --light-blue: #f8f9ff;
    --success-color: #06b6d4;
    --warning-color: #f59e0b;
    --danger-color: #dc3545;
    --dark-color: #1f2937;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6b7280;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font-family: 'Cairo', 'Tajawal', sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-blue);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Dropdown Menu */
.nav-menu {
    position: relative;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--gray-200);
}

.dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.dropdown-link:hover {
    background: var(--light-blue);
    color: var(--primary-color);
}

.dropdown-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(79, 70, 229, 0.7) 0%, rgba(124, 58, 237, 0.7) 35%, rgba(236, 72, 153, 0.7) 70%, rgba(245, 158, 11, 0.7) 100%),
        url('images/gallery/WhatsApp Image 2025-10-17 at 3.53.10 PM (5).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 1;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Dedication Section */
.dedication {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.dedication::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 35c0-8 6-14 14-14s14 6 14 14c0 8-14 20-14 20s-14-12-14-20z" fill="rgba(102,126,234,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hearts)"/></svg>');
    opacity: 0.5;
}

.dedication-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.dedication-text {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.dedication-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.dedication-text p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    text-align: justify;
    position: relative;
    padding-right: 1rem;
    font-weight: 500;
}

.dedication-text p::before {
    content: '♥';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
    opacity: 0.6;
}

.dedication-closing {
    text-align: center !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    font-size: 1.25rem !important;
    margin-top: 2rem !important;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.dedication-closing::before {
    content: '🌟';
    margin-left: 0.5rem;
}

.dedication-closing::after {
    content: '🌟';
    margin-right: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Quick Links Section */
.quick-links {
    background: var(--gray-100);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: right;
    margin-bottom: 2rem;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: var(--light-blue);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.statistics .section-title {
    color: var(--white);
}

.statistics .section-title::after {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-600);
    color: var(--gray-400);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    opacity: 0.6;
}

.breadcrumb .current {
    opacity: 0.7;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    line-height: 1.6;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-header h2 i {
    color: var(--primary-color);
}

.content-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(20px, -20px);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.goal-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.goal-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Accordion */
.accordion {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background: var(--white);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    position: relative;
}

.accordion-header:hover {
    background: var(--gray-100);
}

.accordion-header.active {
    background: var(--light-blue);
    color: var(--primary-color);
}

.accordion-header h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.accordion-header h3 i {
    color: var(--primary-color);
}

.accordion-icon {
    transition: var(--transition);
    color: var(--gray-500);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.goals-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.goals-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.goals-list li:hover {
    background: var(--gray-100);
}

.goals-list li i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.outcome-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.outcome-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.outcome-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outcome-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Page Navigation */
.page-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    min-width: 200px;
}

.nav-btn.prev {
    justify-content: flex-start;
}

.nav-btn.next {
    justify-content: flex-end;
    margin-right: auto;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-to-top,
    .hero-buttons,
    .page-navigation {
        display: none;
    }

    .hero,
    .page-header {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section-title,
    .page-title {
        font-size: 18pt;
    }

    .accordion-content {
        max-height: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #000060;
        --accent-color: #0066cc;
        --gray-600: #000000;
        --gray-700: #000000;
    }
}

/* Requirements Page Styles */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.requirement-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.requirement-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.gpa-requirement, .hours-requirement {
    text-align: center;
    margin-top: 1rem;
}

.gpa-number, .hours-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.gpa-label, .hours-label {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.registration-info {
    margin-top: 1rem;
}

.registration-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.registration-info i {
    color: var(--primary-color);
    width: 16px;
}

/* Personal Requirements */
.personal-requirements {
    display: grid;
    gap: 3rem;
}

.requirement-category h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.requirement-category h3 i {
    color: var(--primary-color);
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trait-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.trait-item:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.trait-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 20px;
}

.readiness-list {
    list-style: none;
    padding: 0;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.readiness-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.readiness-list li:hover {
    background: var(--gray-100);
}

.readiness-list li i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Documents Checklist */
.documents-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.checklist-category {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.checklist-category h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
}

.checklist-items {
    display: grid;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    cursor: pointer;
}

.checklist-item:hover {
    border-color: var(--primary-color);
    background: var(--light-blue);
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.checklist-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 1;
    font-weight: 500;
}

.checklist-item label i {
    color: var(--primary-color);
    width: 20px;
}

/* Duration Info */
.duration-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.duration-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.duration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.duration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.duration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.duration-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.duration-details {
    margin: 1rem 0;
}

.duration-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.duration-label {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.duration-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Commitments Grid */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(20px, -20px);
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.commitment-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.commitment-card h3 i {
    color: var(--primary-color);
}

.commitment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.commitment-card ul li:hover {
    background: var(--gray-100);
}

.commitment-card ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: -0.25rem;
}

/* Responsive Design for Requirements */
@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .documents-checklist {
        grid-template-columns: 1fr;
    }

    .traits-grid {
        grid-template-columns: 1fr;
    }

    .duration-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .nav-btn {
        min-width: auto;
        width: 100%;
    }
}

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

    .checklist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .checklist-item label {
        margin-top: 0.5rem;
    }
}

/* Tasks Page Styles */
.tasks-timeline {
    position: relative;
    padding: 2rem 0;
}

.tasks-timeline::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-right: 80px;
}

.timeline-marker {
    position: absolute;
    right: 15px;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--white);
}

.timeline-content:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.task-list li:hover {
    background: var(--gray-100);
}

.task-list li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Daily Tasks Grid */
.daily-tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.task-category {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.task-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-header i {
    font-size: 1.5rem;
}

.category-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.category-tasks {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.category-tasks li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.category-tasks li:hover {
    background: var(--light-blue);
    border-left-color: var(--primary-color);
}

.category-tasks li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: -0.1rem;
}

/* Documentation Grid */
.documentation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.doc-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.doc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.doc-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.doc-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.doc-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.doc-requirements li:hover {
    background: var(--gray-100);
}

.doc-requirements li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Ethics Content */
.ethics-content {
    display: grid;
    gap: 3rem;
}

.ethics-principles h3,
.ethics-guidelines h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
}

.ethics-principles h3::after,
.ethics-guidelines h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.principle-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.principle-item h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.principle-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.guidelines-list {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.guideline-item:hover {
    background: var(--light-blue);
    border-left-color: var(--success-color);
}

.guideline-item i {
    color: var(--success-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.guideline-item span {
    color: var(--gray-700);
    font-weight: 500;
}

/* Responsive Design for Tasks */
@media (max-width: 768px) {
    .tasks-timeline::before {
        right: 15px;
    }

    .timeline-item {
        padding-right: 50px;
    }

    .timeline-marker {
        right: 0;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .timeline-content::before {
        right: -8px;
        border-left-width: 8px;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }

    .daily-tasks-grid {
        grid-template-columns: 1fr;
    }

    .documentation-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-right: 40px;
    }

    .timeline-marker {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        padding: 1rem;
    }

    .category-header h3 {
        font-size: 1rem;
    }
}

/* Supervisor & Forms & Contact Page Styles */

/* Visit Schedule */
.visit-schedule {
    display: grid;
    gap: 2rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
}

.schedule-week {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.schedule-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.schedule-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.schedule-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.schedule-content ul {
    list-style: none;
    padding: 0;
}

.schedule-content ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.schedule-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

/* Evaluation Grid */
.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.evaluation-category {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.evaluation-category h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.criteria-list {
    display: grid;
    gap: 1rem;
}

.criteria-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
}

.criteria-name {
    color: var(--gray-700);
    font-weight: 500;
}

.criteria-weight {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Communication Grid */
.communication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.communication-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.communication-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.communication-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
}

.communication-card h3 i {
    color: var(--primary-color);
}

.communication-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.communication-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.communication-card ul li:hover {
    background: var(--light-blue);
}

.communication-card ul li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

/* Forms Categories */
.forms-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.category-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.forms-count {
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Forms Grid */
.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-header i {
    font-size: 1.5rem;
}

.form-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.form-details {
    padding: 2rem;
}

.form-details p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.form-requirements,
.sample-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.form-requirements li,
.sample-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.form-requirements li:hover,
.sample-content ul li:hover {
    background: var(--gray-100);
}

.form-requirements li::before,
.sample-content ul li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
}

.sample-content h4 {
    color: var(--dark-color);
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
}

.form-actions {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Records Info */
.records-info {
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.info-card ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

/* Evaluation Timeline */
.evaluation-timeline {
    display: grid;
    gap: 1.5rem;
}

.eval-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
}

.eval-week {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.eval-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.eval-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.eval-content p {
    color: var(--gray-600);
    margin: 0;
}

/* Instructions Grid */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.instruction-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
}

.instruction-card h3 i {
    color: var(--primary-color);
}

.instruction-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instruction-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.instruction-card ul li:hover {
    background: var(--light-blue);
}

.instruction-card ul li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.staff-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.staff-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.staff-contact {
    text-align: right;
    margin-bottom: 1rem;
}

.staff-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.staff-contact i {
    color: var(--primary-color);
    width: 16px;
}

.staff-hours {
    background: var(--light-blue);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    text-align: right;
}

.staff-hours strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.5rem;
}

.staff-hours p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Styles */
.faq-container {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    background: var(--white);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question.active {
    background: var(--light-blue);
    color: var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    transition: var(--transition);
    color: var(--gray-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    justify-self: start;
    min-width: 200px;
}

/* Emergency Contacts */
.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.emergency-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--danger-color);
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.emergency-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger-color);
    margin-bottom: 0.5rem !important;
}

.emergency-card p:last-child {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .schedule-item,
    .eval-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .schedule-week,
    .eval-week {
        text-align: center;
    }

    .evaluation-grid,
    .communication-grid,
    .forms-categories,
    .forms-grid,
    .instructions-grid,
    .contact-grid,
    .staff-grid,
    .emergency-contacts {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .staff-contact {
        text-align: center;
    }

    .staff-hours {
        text-align: center;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .emergency-number {
        font-size: 1.25rem;
    }
}

/* Enhanced Table Styles */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
    border: 2px solid var(--gray-200);
    position: relative;
}

.table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1200px;
    font-family: var(--font-family);
    background: var(--white);
}

th, td {
    padding: 1.25rem 1rem;
    text-align: right;
    vertical-align: top;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

/* Enhanced Header Styling */
thead th {
    background: linear-gradient(135deg, #4c63d2 0%, #6366f1 25%, #8b5cf6 50%, #a855f7 75%, #c084fc 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

thead th:first-child {
    border-radius: 0;
}

thead th:last-child {
    border-radius: 0;
}

/* Enhanced Row Styling */
tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

tbody tr:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

tbody tr:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

tbody tr:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #ddd6fe 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

tbody tr:hover td {
    color: var(--dark-color);
}

/* Enhanced Cell Styling */
td {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

td:first-child {
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    width: 5%;
    vertical-align: middle;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Student Name Column */
td:nth-child(2) {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

/* Date and Day Columns */
td:nth-child(3), td:nth-child(4) {
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
}

/* Class Column */
td:nth-child(5) {
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

/* Subject Column */
td:nth-child(6) {
    font-weight: 600;
    color: var(--success-color);
    text-align: center;
}

/* Source Column */
td:nth-child(7) {
    color: var(--warning-color);
    font-weight: 500;
}

/* Action Column - Main content */
td:nth-child(8) {
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 1.5rem 1rem;
}

/* Evaluation Column */
td:nth-child(9) {
    color: var(--success-color);
    font-weight: 500;
    font-style: italic;
}

.highlight-red {
    color: var(--danger-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--danger-color), #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-size: 1rem;
}

/* Add subtle borders between sections */
tbody tr td {
    border-left: 1px solid var(--gray-100);
}

tbody tr td:first-child {
    border-left: 3px solid var(--primary-color);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .table-wrapper {
        margin: 1rem -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    table {
        min-width: 1000px;
    }
    
    th, td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    th, td {
        padding: 0.875rem 0.5rem;
        font-size: 0.85rem;
    }
    
    table {
        min-width: 900px;
    }
    
    td:nth-child(8) {
        font-size: 0.8rem;
        line-height: 1.6;
        padding: 1.25rem 0.5rem;
    }
    
    .highlight-red {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .table-wrapper {
        margin: 1rem -0.5rem;
    }
    
    th, td {
        padding: 0.75rem 0.375rem;
        font-size: 0.8rem;
    }
    
    table {
        min-width: 800px;
    }
    
    td:first-child {
        font-size: 1rem;
    }
    
    td:nth-child(8) {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 1rem 0.375rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
