/* ===========================
   JV3D - STYLESHEET PRINCIPAL
   =========================== */

:root {
    --green-dark: #1a5c2a;
    --green: #2d8a46;
    --green-light: #4caf6f;
    --green-pale: #e8f5ec;
    --gold: #c9901a;
    --gold-light: #f0b429;
    --earth: #7a4f2d;
    --sky: #1a6fa0;
    --dark: #111a13;
    --text: #2c3e2d;
    --text-light: #5a6b5c;
    --white: #ffffff;
    --off-white: #f7faf8;
    --border: #d4e6d8;
    --shadow: 0 4px 24px rgba(26,92,42,0.12);
    --shadow-lg: 0 12px 48px rgba(26,92,42,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--gold-light); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { color: rgba(255,255,255,0.75); transition: var(--transition); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
.topbar-right a:hover { color: white; background: var(--gold); }

/* ---- NAVBAR ---- */
.navbar {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    letter-spacing: -1px;
}
.logo-icon sup { font-size: 0.6rem; vertical-align: super; }
.logo-text strong { display: block; color: var(--green-dark); font-size: 1.1rem; font-weight: 700; line-height: 1; }
.logo-text small { color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu a { color: var(--text); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active { color: var(--green); background: var(--green-pale); }
.nav-menu a.nav-cta { background: var(--green); color: white; font-weight: 600; }
.nav-menu a.nav-cta:hover { background: var(--green-dark); }
.nav-menu .has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px; border: 1px solid var(--border); z-index: 100; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { border-radius: 8px; font-size: 0.875rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); display: block; }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e4d2b 40%, var(--sky) 100%);
    min-height: 90vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); color: white;
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px; backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { color: var(--gold-light); }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: white; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,144,26,0.4); }
.btn-outline { background: transparent; color: white; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.5); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.hero-stats {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 16px;
    padding-right: 48px;
}
.stat-card {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius); padding: 20px 24px;
    color: white; text-align: center; min-width: 140px;
}
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.stat-card .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 4px; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.divider { width: 60px; height: 4px; background: linear-gradient(to right, var(--green), var(--gold)); border-radius: 2px; margin: 16px auto 0; }

/* ---- CARDS ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.card-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.card-icon.green { background: var(--green-pale); color: var(--green-dark); }
.card-icon.gold { background: #fef3db; color: var(--gold); }
.card-icon.blue { background: #e8f3fa; color: var(--sky); }
.card-icon.earth { background: #f5ede5; color: var(--earth); }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.65; }

/* ---- ODD BADGES ---- */
.odd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.odd-item { border-radius: var(--radius); padding: 24px 20px; color: white; text-align: center; transition: var(--transition); cursor: default; }
.odd-item:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.odd-item .odd-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.odd-item .odd-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; margin-top: 8px; text-transform: uppercase; }
.odd-item.odd4 { background: linear-gradient(135deg, #c5192d, #e5243b); }
.odd-item.odd13 { background: linear-gradient(135deg, #3f7e44, #59ba47); }
.odd-item.odd15 { background: linear-gradient(135deg, #56c02b, #74c476); }
.odd-item.odd16 { background: linear-gradient(135deg, #00689d, #00aed9); }
.odd-item.odd17 { background: linear-gradient(135deg, #19486a, #1f6fa6); }
.odd-item.odd5 { background: linear-gradient(135deg, #ff3a21, #ff6344); }
.odd-item.odd1 { background: linear-gradient(135deg, #e5243b, #ff6b6b); }
.odd-item.odd10 { background: linear-gradient(135deg, #dd1367, #f0336a); }

/* ---- PROJECTS ---- */
.project-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-img { height: 200px; background: linear-gradient(135deg, var(--green-dark), var(--green)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.6); position: relative; overflow: hidden; }
.project-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4)); }
.project-status { position: absolute; bottom: 12px; left: 16px; z-index: 1; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.status-ongoing { background: var(--gold-light); color: #5a3a00; }
.status-done { background: #b2dfdb; color: #00695c; }
.project-body { padding: 24px; }
.project-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.project-body p { color: var(--text-light); font-size: 0.9rem; }
.project-meta { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.project-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-light); }
.project-meta i { color: var(--green); }

/* ---- ABOUT PAGE ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.about-img { background: linear-gradient(135deg, var(--green-dark), var(--green-light)); border-radius: 20px; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255,255,255,0.5); position: relative; }
.about-img::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--gold); border-radius: 20px; transform: translate(12px, 12px); z-index: -1; }
.values-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 38px; height: 38px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.value-item h4 { font-weight: 700; color: var(--dark); font-size: 0.95rem; margin-bottom: 2px; }
.value-item p { color: var(--text-light); font-size: 0.88rem; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green), var(--gold)); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 8px; width: 14px; height: 14px; background: var(--green); border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 3px var(--green-light); }
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.timeline-item h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.timeline-item p { color: var(--text-light); font-size: 0.9rem; }

/* ---- CONTACT / FORM ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-icon { width: 46px; height: 46px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 1.1rem; flex-shrink: 0; }
.info-item h4 { font-weight: 700; color: var(--dark); font-size: 0.9rem; margin-bottom: 3px; }
.info-item p { color: var(--text-light); font-size: 0.88rem; margin: 0; }
.form-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.form-group label span { color: var(--green); }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--text); background: white; transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,138,70,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b5c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit { width: 100%; padding: 15px; background: var(--green); color: white; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,138,70,0.35); }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #e8f5ec; color: #1a5c2a; border: 1px solid #b2dbb8; }
.alert-error { background: #fde8e8; color: #8b1a1a; border: 1px solid #f5b8b8; }

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e5c30 60%, var(--sky) 100%);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}
.page-header-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--gold-light); }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: white; line-height: 1.2; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 580px; font-size: 1.05rem; }

/* ---- FORMATION ---- */
.formation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.formation-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.formation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.formation-header { padding: 28px 28px 20px; }
.formation-level { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.level-debutant { color: #27ae60; }
.level-intermediaire { color: var(--gold); }
.level-avance { color: var(--earth); }
.formation-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.formation-card p { color: var(--text-light); font-size: 0.88rem; }
.formation-footer { padding: 16px 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.formation-meta { display: flex; gap: 16px; }
.formation-meta span { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.formation-meta i { color: var(--green); }
.btn-sm { padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; background: var(--green-pale); color: var(--green-dark); text-decoration: none; transition: var(--transition); }
.btn-sm:hover { background: var(--green); color: white; }

/* ---- CTA SECTION ---- */
.cta-section { background: linear-gradient(135deg, var(--green-dark), #1e4d2b); padding: 80px 0; text-align: center; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-card { background: white; border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-light)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; font-family: 'Playfair Display', serif; font-weight: 700; border: 3px solid var(--green-pale); }
.team-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card .role { font-size: 0.83rem; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; color: var(--text-light); }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .footer-logo { margin-bottom: 16px; }
.logo-icon-sm { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold-light); letter-spacing: -1px; }
.logo-icon-sm sup { font-size: 0.7rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 0.85rem; }
.footer-social a:hover { background: var(--green); color: white; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-links h4::after, .footer-contact h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--gold); }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links a i { font-size: 0.65rem; color: var(--green-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-light); }
.btn-footer { display: inline-block; margin-top: 20px; padding: 10px 24px; background: var(--green); color: white; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: var(--transition); }
.btn-footer:hover { background: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; width: 100%; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ---- SCROLL TOP ---- */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--green); color: white; border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 0.9rem; box-shadow: 0 4px 16px rgba(45,138,70,0.4); transition: var(--transition); z-index: 500; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ---- ACTIVITIES ---- */
.activity-item { display: flex; gap: 24px; padding: 28px; background: white; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 20px; transition: var(--transition); }
.activity-item:hover { border-color: var(--green-light); box-shadow: var(--shadow); }
.activity-date { text-align: center; min-width: 64px; background: var(--green-pale); border-radius: 12px; padding: 12px 8px; color: var(--green-dark); font-weight: 700; font-size: 0.8rem; line-height: 1.3; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.activity-date .day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.activity-content h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.activity-content p { color: var(--text-light); font-size: 0.9rem; }
.activity-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.tag { padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; background: var(--green-pale); color: var(--green-dark); }
.tag.gold { background: #fef3db; color: #8a5c00; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-stats { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .about-img { height: 260px; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 16px; box-shadow: var(--shadow-lg); gap: 4px; }
    .nav-menu.open { display: flex; }
    .navbar { position: relative; }
    .nav-inner { flex-wrap: wrap; }
    .has-dropdown .dropdown { position: static; box-shadow: none; border: none; background: var(--off-white); display: block !important; margin-top: 4px; }
    .hero { min-height: 70vh; padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-left { display: none; }
    .about-intro { gap: 32px; }
    .cards-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.9rem; }
    .stat-card { display: none; }
    .activity-item { flex-direction: column; gap: 16px; }
    .activity-date { flex-direction: row; gap: 8px; width: auto; min-width: auto; padding: 8px 14px; }
}
