/**
 * YARH DRC - Styles principaux
 * Youth Alliance for Reproductive Health
 */

/* ========== Variables ========== */
:root {
    --primary: #29ABE2;
    --primary-dark: #1e8fc4;
    --primary-light: #e8f6fc;
    --secondary: #ED1C24;
    --secondary-dark: #c91820;
    --white: #FFFFFF;
    --gray: #555f70;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #212529;
    --text: #2d3436;
    --text-light: #636e72;
    --border: #dee2e6;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --transition: all 0.2s ease;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

/* ========== Reset ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-dark);
}

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

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

ul {
    list-style: none;
}

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

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn .material-icons {
    font-size: 18px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

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

.btn-white:hover {
    background: var(--gray-light);
    border-color: var(--gray-light);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(41, 171, 226, 0.08);
}

.nav-link .material-icons {
    font-size: 18px;
    transition: var(--transition);
}

.nav-link.btn {
    color: var(--white);
    margin-left: 10px;
}

.nav-link.btn:hover {
    background: var(--primary-dark);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.dropdown:hover .nav-link .material-icons {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray);
}

.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--primary);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-dark);
    position: relative;
    z-index: 1001;
}

.nav-toggle .material-icons {
    font-size: 28px;
    transition: var(--transition);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gray-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(33, 37, 41, 0.95) 0%, rgba(33, 37, 41, 0.7) 50%, rgba(33, 37, 41, 0.4) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== Sections ========== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-gray {
    background: var(--gray-light);
}

.section-dark {
    background: var(--gray-dark);
    color: var(--white);
}

.section-dark .section-title,
.section-dark h3 {
    color: var(--white);
}

/* ========== Cards ========== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.card-body {
    padding: 24px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-light);
    font-size: 15px;
}

/* ========== Programme Cards ========== */
.programme-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.programme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius) 0 0 var(--radius);
}

.programme-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.programme-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.programme-icon .material-icons {
    font-size: 26px;
    color: var(--primary);
}

.programme-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.programme-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.programme-card.red::before { background: var(--secondary); }
.programme-card.green::before { background: #28a745; }
.programme-card.orange::before { background: #fd7e14; }

.programme-card.red .programme-icon { background: #fdf0f0; }
.programme-card.red .programme-icon .material-icons { color: var(--secondary); }

.programme-card.green .programme-icon { background: #e8f5e9; }
.programme-card.green .programme-icon .material-icons { color: #28a745; }

.programme-card.orange .programme-icon { background: #fff3e0; }
.programme-card.orange .programme-icon .material-icons { color: #fd7e14; }

/* ========== Stats ========== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 171, 226, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.stat-icon .material-icons {
    font-size: 36px;
    color: var(--primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
}

/* ========== Grid ========== */
.grid {
    display: grid;
    gap: 30px;
}

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

/* ========== Footer ========== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact .material-icons {
    font-size: 20px;
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 14px;
    opacity: 0.7;
}

.footer-slogan {
    font-style: italic;
}

/* ========== Alerts ========== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin: 20px;
    font-size: 15px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========== Page Hero ========== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: var(--gray-dark);
    overflow: hidden;
}

.page-hero-small {
    min-height: 300px;
    padding: 100px 0 50px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(33, 37, 41, 0.95) 0%, rgba(33, 37, 41, 0.7) 100%);
    z-index: 1;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 700px;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========== Content Grid ========== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ========== Feature List ========== */
.feature-list {
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-list li .material-icons {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
}

/* ========== Vision Cards ========== */
.vision-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.vision-card.mission {
    border-left-color: var(--secondary);
}

.vision-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.vision-icon .material-icons {
    font-size: 30px;
    color: var(--primary);
}

.vision-card.mission .vision-icon {
    background: #fdf0f0;
}

.vision-card.mission .vision-icon .material-icons {
    color: var(--secondary);
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== Value Cards ========== */
.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-card .material-icons {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== Why Cards ========== */
.why-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

/* ========== Impact Cards ========== */
.impact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary);
}

.impact-header .material-icons {
    font-size: 28px;
}

.impact-header h4 {
    font-size: 1.2rem;
    color: inherit;
}

.impact-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

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

.impact-list li strong {
    color: var(--gray-dark);
}

/* ========== Zone Cards ========== */
.zone-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.zone-card .material-icons {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.zone-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.zone-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========== Testimonial Cards ========== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
}

.section:not(.section-dark) .testimonial-card {
    background: var(--white);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.section-dark .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
}

.author-info strong {
    display: block;
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    opacity: 0.7;
}

/* ========== Contact Page ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-icon .material-icons {
    font-size: 24px;
    color: var(--primary);
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-social h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-placeholder .material-icons {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========== Partners Page ========== */
.partners-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.partners-section-title .material-icons {
    color: var(--primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.partner-placeholder {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    padding: 20px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}

.partner-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.partner-card p {
    font-size: 13px;
    color: var(--text-light);
}

.become-partner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.become-partner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.become-partner > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.partnership-type {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
}

.partnership-type .material-icons {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.partnership-type h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.partnership-type p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== News Page ========== */
.news-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--gray-light);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

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

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

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

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

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-meta .material-icons {
    font-size: 16px;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content h3 a:hover {
    color: var(--primary);
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.news-link .material-icons {
    font-size: 18px;
    transition: var(--transition);
}

.news-link:hover .material-icons {
    transform: translateX(4px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary);
    color: var(--white);
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-content .material-icons {
    font-size: 48px;
    color: var(--primary);
}

.newsletter-content h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.newsletter-content p {
    font-size: 14px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form .form-control {
    width: 300px;
}

/* ========== Project Cards ========== */
.project-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.project-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.project-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== Programme Cards Colors ========== */
.programme-card.red {
    border-left-color: var(--secondary);
}

.programme-card.red .programme-icon {
    background: rgba(237, 28, 36, 0.1);
}

.programme-card.red .programme-icon .material-icons {
    color: var(--secondary);
}

.programme-card.green {
    border-left-color: #28a745;
}

.programme-card.green .programme-icon {
    background: rgba(40, 167, 69, 0.1);
}

.programme-card.green .programme-icon .material-icons {
    color: #28a745;
}

.programme-card.orange {
    border-left-color: #fd7e14;
}

.programme-card.orange .programme-icon {
    background: rgba(253, 126, 20, 0.1);
}

.programme-card.orange .programme-icon .material-icons {
    color: #fd7e14;
}

/* ========== Pourquoi Page ========== */
.intro-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin: 0;
}

.data-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.data-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.data-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.data-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.stat-card.red {
    border-top-color: var(--secondary);
}

.stat-card.red .stat-card-number {
    color: var(--secondary);
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.alert-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    gap: 20px;
}

.alert-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.alert-icon .material-icons {
    font-size: 30px;
    color: var(--white);
}

.alert-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.alert-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.info-card h4 .material-icons {
    color: #fd7e14;
    font-size: 20px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.vbg-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
}

.vbg-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 12px;
}

.vbg-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.vbg-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.highlight-box {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.highlight-box .material-icons {
    font-size: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.education-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.education-stat {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 300px;
}

.education-stat.girls {
    border-top: 4px solid var(--secondary);
}

.education-stat.girls .education-number {
    color: var(--secondary);
}

.education-stat.boys {
    border-top: 4px solid var(--primary);
}

.education-stat.boys .education-number {
    color: var(--primary);
}

.education-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.education-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.education-stat p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.education-vs {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray);
}

.education-conclusion {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== Team Page ========== */
.team-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.team-section-title .material-icons {
    color: var(--primary);
}

.team-grid {
    display: grid;
    gap: 30px;
}

.team-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.team-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

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

.team-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gray-light);
}

.team-card-sm .team-photo {
    height: 200px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--gray-light));
}

.team-photo-placeholder .material-icons {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.5;
}

.team-card-sm .team-photo-placeholder .material-icons {
    font-size: 60px;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-card-sm .team-info {
    padding: 16px;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card-sm .team-info h4 {
    font-size: 1rem;
}

.team-role {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card-sm .team-role {
    font-size: 13px;
    margin-bottom: 0;
}

.team-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.team-social .material-icons {
    font-size: 18px;
}

/* Mashujaa Stats */
.mashujaa-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.mashujaa-stat {
    text-align: center;
}

.mashujaa-stat .material-icons {
    font-size: 48px;
    color: #fd7e14;
    margin-bottom: 12px;
}

.mashujaa-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.mashujaa-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ========== Responsive ========== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 16px;
    }
    
    /* Header & Navigation */
    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav {
        height: 65px;
    }
    
    .logo img {
        height: 38px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 80px 0 30px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Mobile menu header with branding */
    .nav-menu::before {
        content: 'YARH DRC';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 65px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        display: flex;
        align-items: center;
        padding-left: 24px;
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--white);
        letter-spacing: 0.5px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-light);
        color: var(--primary);
    }
    
    .nav-link .material-icons {
        font-size: 20px;
    }
    
    .nav-link.btn {
        margin: 20px 24px;
        width: calc(100% - 48px);
        justify-content: center;
        border-bottom: none;
        border-radius: var(--radius);
        padding: 14px 20px;
    }
    
    .nav-link.btn:hover {
        background: var(--primary-dark);
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    
    .nav-toggle:hover {
        background: var(--gray-light);
    }
    
    .nav-toggle:active {
        transform: scale(0.95);
    }
    
    /* Dropdown mobile amélioré */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--gray-light);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 300px;
    }
    
    .dropdown-menu li a {
        padding: 14px 24px 14px 44px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .dropdown-menu li a::before {
        content: '→';
        color: var(--primary);
        font-weight: bold;
    }
    
    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    
    .dropdown-menu li a:hover {
        background: var(--white);
        color: var(--primary);
    }
    
    /* Overlay mobile */
    .nav-overlay {
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
        padding: 90px 0 50px;
    }
    
    .hero::before {
        background: linear-gradient(180deg, rgba(33, 37, 41, 0.9) 0%, rgba(33, 37, 41, 0.85) 100%);
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-desc {
        font-size: 0.95rem;
    }
    
    /* Grids */
    .grid,
    .grid-2, 
    .grid-3, 
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Team Grid */
    .team-grid-3,
    .team-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-photo {
        height: 220px;
    }
    
    .team-card-sm .team-photo {
        height: 160px;
    }
    
    .mashujaa-stats {
        gap: 30px;
    }
    
    .mashujaa-number {
        font-size: 2.5rem;
    }
    
    /* Programme Cards */
    .programme-card {
        padding: 20px;
    }
    
    .programme-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
    }
    
    .programme-icon .material-icons {
        font-size: 22px;
    }
    
    .programme-card h3 {
        font-size: 1rem;
    }
    
    .programme-card p {
        font-size: 13px;
    }
    
    /* Stats */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .stat-icon .material-icons {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Cards */
    .card-body {
        padding: 18px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-bottom: 40px;
    }
    
    .footer-logo img {
        height: 45px;
        margin: 0 auto 16px;
    }
    
    .footer-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-contact li {
        justify-content: center;
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 0;
        font-size: 12px;
    }
    
    /* Forms */
    .form-control {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Alerts */
    .alert {
        padding: 14px 16px;
        font-size: 14px;
        margin: 16px;
    }
    
    /* Utilities */
    .hide-mobile {
        display: none !important;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        min-height: 300px;
        padding: 90px 0 40px;
    }
    
    .page-hero-small {
        min-height: 250px;
    }
    
    .page-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .page-hero-content p {
        font-size: 0.95rem;
    }
    
    /* Content Grid Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    /* Vision Cards Mobile */
    .vision-card {
        padding: 24px;
    }
    
    .vision-card h3 {
        font-size: 1.25rem;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Partners Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .partnership-types {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* News Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form .form-control {
        width: 100%;
    }
    
    /* Impact Cards Mobile */
    .impact-card {
        padding: 20px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Navigation small mobile */
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu::before {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .nav-link.btn {
        margin: 16px 20px;
        width: calc(100% - 40px);
    }
    
    .dropdown-menu li a {
        padding: 12px 20px 12px 36px;
        font-size: 13px;
    }
    
    /* Hero small mobile */
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 16px;
    }
    
    .stat-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .stat-content {
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .programme-card {
        padding: 16px;
    }
    
    /* Team small mobile */
    .team-grid-3,
    .team-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        height: 250px;
    }
    
    /* Partners small mobile */
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 20px 16px;
    }
    
    /* Education comparison */
    .education-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .education-stat {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .education-vs {
        display: none;
    }
    
    .footer-grid {
        gap: 25px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }
    
    .nav-link {
        min-height: 48px;
    }
    
    .footer-social a {
        min-width: 44px;
        min-height: 44px;
    }
    
    .form-control {
        min-height: 48px;
    }
}
