/* ================================================
   ACTIVE RECOVERY FOUNDATION - UPDATED HERO SECTION
   DESKTOP-ONLY PROFESSIONAL LAYOUT
   ================================================ */

/* Modern Color Palette - Active Recovery Healthcare Theme */
:root {
    --primary: #1E90FF;
    --primary-dark: #002B5B;
    --primary-light: #00A8FF;
    --secondary: #0056B3;
    --accent: #00BCD4;
    --accent-dark: #0097A7;
    --bg-light: #E3F2FD;
    --bg-lighter: #F5F5F5;
    --surface: #FFFFFF;
    --text-primary: #002B5B;
    --text-muted: #666666;
    --border-color: #DBEAFE;
    --success: #10B981;
    --danger: #EF4444;
}

/* ================================================
   GLOBAL STYLES
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.35rem;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

section {
    padding: 80px 1.5rem;
}

/* ================================================
   NAVBAR / NAVIGATION
   ================================================ */

.navbar {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo span {
    color: var(--primary);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.btn-donate {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 204, 0.3);
    cursor: pointer;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #0073e6 0%, #005eb8 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transform: translateY(-1px);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ──────────────────────────────────────────────
   OLD SIDE DRAWER — DISABLED (replaced by overlay)
   ────────────────────────────────────────────── */
.side-drawer,
.drawer-header,
.drawer-logo,
.drawer-close,
.drawer-links,
.drawer-btn {
    display: none !important;
}

/* ──────────────────────────────────────────────
   MOBILE FULL-SCREEN OVERLAY MENU
   Only active at ≤ 768px via .open / .visible
   ────────────────────────────────────────────── */

/* Dark backdrop */
.mobile-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Full-screen panel — hidden on desktop, mobile-only */
.mobile-overlay-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-overlay-menu {
        visibility: visible;
    }
}

.mobile-overlay-menu.open {
    transform: translateX(0);
    visibility: visible;
}

/* Header row */
.mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--border-color);
    flex-shrink: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.mobile-overlay-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.mobile-overlay-logo span {
    color: var(--primary);
}

.mobile-overlay-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-overlay-close:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Nav list */
.mobile-overlay-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-overlay-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-overlay-links > li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.15rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.05) 0%, transparent 100%);
    padding-left: 1.75rem;
}

.mobile-nav-link:hover::before {
    transform: scaleX(1);
}

/* Submenu arrow */
.submenu-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.has-submenu.submenu-open .submenu-arrow {
    transform: rotate(180deg);
}

.has-submenu.submenu-open > .submenu-toggle {
    color: var(--primary);
}

/* Submenu list */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.03) 0%, transparent 100%);
}

.has-submenu.submenu-open .mobile-submenu {
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.08) 0%, transparent 100%);
}

.mobile-sub-link {
    display: block;
    padding: 0.85rem 1.5rem 0.85rem 2.75rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(219, 234, 254, 0.5);
    position: relative;
}

.mobile-sub-link::before {
    content: '▸';
    position: absolute;
    left: 2.3rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-sub-link:hover {
    color: var(--primary);
    padding-left: 3rem;
}

.mobile-sub-link:hover::before {
    opacity: 1;
}

/* Footer: CTA + social */
.mobile-overlay-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1E90FF 0%, #0056B3 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.mobile-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, #00A8FF 0%, #0073E6 100%);
    color: #fff;
}

.mobile-overlay-social {
    display: flex;
    gap: 1rem;
}

.mobile-overlay-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
}

.mobile-overlay-social a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 16px rgba(30, 144, 255, 0.3);
}

/* ================================================
   HERO SECTION - DESKTOP ONLY PROFESSIONAL LAYOUT
   ================================================ */

/* Hero fade-in animation */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-animate {
    animation: heroFadeUp 0.75s ease forwards;
}

.hero {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: calc(100vh - 80px);
}

.hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--surface);
}

.hero-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, #1E90FF 0%, #00A8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 90%;
}

.hero-trust-line {
    margin-top: 1.25rem !important;
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: 0 !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.hero-image {
    order: 2;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient Fade Overlay on Left Side of Image */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* ================================================
   BUTTON STYLES
   ================================================ */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-premium {
    padding: 13px 32px;
    font-size: 0.98rem;
    letter-spacing: 0.4px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0073e6 0%, #005eb8 100%);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.35);
    transform: translateY(-2px);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: #0066cc;
    border: 1.5px solid #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
}

.btn-secondary:hover {
    background: #f0f7ff;
    color: #005eb8;
    border-color: #005eb8;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* ================================================
   TRUST / IMPACT STRIP
   ================================================ */

.trust-section {
    background: var(--surface);
    padding: 28px 1.5rem;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trust-strip::-webkit-scrollbar { display: none; }

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 8px 32px;
    flex-shrink: 0;
}

.trust-check {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
}

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

.trust-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: 90px 1.5rem;
}

.about-content {
    max-width: 680px;
}

.about-accent {
    padding-left: 28px;
    border-left: 4px solid var(--primary);
}

.section-tag {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.85;
}

.about-content p strong {
    color: var(--text-primary);
    font-weight: 700;
}

.about-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ================================================
   FOCUS AREAS / SERVICES
   ================================================ */

#services {
    padding: 80px 1.5rem;
    background: var(--bg-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.focus-card {
    background: white;
    padding: 2.25rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--border-color);
}

.focus-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 28px rgba(30, 144, 255, 0.12);
}

.focus-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.focus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.focus-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.97rem;
}

/* ================================================
   IMPACT & STATS
   ================================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003D7F 100%);
    padding: 90px 1.5rem;
}

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

.stat-item {
    text-align: center;
    color: white;
    position: relative;
}

.stat-item h4 {
    font-size: 3.5rem;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1;
    display: inline;
    letter-spacing: -1px;
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    vertical-align: top;
    line-height: 1.15;
    margin-left: 2px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    letter-spacing: 0.3px;
}

/* ================================================
   ACTIVITIES / VOLUNTEERS
   ================================================ */

.activities-section {
    padding: 90px 1.5rem;
    background: var(--surface);
}

/* ========== CARD SLIDER CONTAINER ========== */
.card-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.card-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    list-style: none;
    width: max-content;
}

/* ========== STORY CARDS (WHY JOIN SECTION) ========== */
.activities-cards {
    flex-wrap: nowrap;
}

.card-story {
    flex: 0 0 100%;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 100%;
    width: 100%;
}

.card-story:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f5ff 100%);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ========== EVENT CARDS ========== */
.events-cards {
    flex-wrap: nowrap;
}

.card-event {
    flex: 0 0 100%;
    border-radius: 12px;
    overflow: visible;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 100%;
    width: 100%;
    padding: 0;
    position: relative;
}

.card-event:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-event-date {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin: 1.5rem 1.5rem 0 1.5rem;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-buttons {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
}

.btn-card {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-register {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: 1px solid rgba(0, 102, 204, 0.3);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.btn-register:hover {
    background: linear-gradient(135deg, #0073e6 0%, #005eb8 100%);
    border-color: rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.btn-view {
    background: white;
    color: #0066cc;
    border: 1.5px solid #0066cc;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.08);
}

.btn-view:hover {
    background: #f0f7ff;
    border-color: #005eb8;
    color: #005eb8;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

/* ========== SLIDER ARROWS ========== */
.slider-arrow {
    position: relative;
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.slider-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(30, 144, 255, 0.2);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-arrow-prev {
    order: -1;
}

.slider-arrow-next {
    order: 1;
}

/* ========== OLD STYLES (KEPT FOR COMPATIBILITY) ========== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.activity-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}

.activity-item:hover {
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 4px 16px rgba(30, 144, 255, 0.08);
    background: white;
}

.activity-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.activity-item:hover .activity-icon {
    background: var(--primary);
    color: white;
}

.activity-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.activity-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.93rem;
}

/* ================================================
   EVENTS
   ================================================ */

#events {
    padding: 80px 1.5rem;
    background: var(--bg-light);
}

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

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 144, 255, 0.12);
}

.event-date {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-number {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 0.85rem;
    opacity: 0.9;
    letter-spacing: 1px;
    margin-top: 2px;
}

.event-card h4 {
    padding: 1.25rem 1.25rem 0.4rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.4;
}

.event-card p {
    padding: 0 1.25rem;
    color: var(--text-muted);
    flex-grow: 1;
    font-size: 0.93rem;
    line-height: 1.65;
}

.event-details {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.event-buttons {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    gap: 0.75rem;
}

.btn-event {
    flex: 1;
    padding: 9px 14px;
    font-size: 0.87rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-register {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(30,144,255,0.2);
}

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

.btn-view {
    background: var(--bg-light);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

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

/* ================================================
   GALLERY
   ================================================ */

#gallery {
    padding: 80px 1.5rem;
    background: var(--surface);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #ddd;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

.gallery-item:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-medium {
    grid-column: span 1;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 144, 255, 0.45) 0%, rgba(0, 43, 91, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ================================================
   CONTACT SECTION
   ================================================ */

#contact {
    padding: 80px 1.5rem;
    background: var(--bg-light);
}

.contact-banner {
    background: linear-gradient(135deg, #003D7F 0%, var(--primary) 60%, #00A8FF 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.25);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-emotion-tag {
    font-size: 0.82rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75) !important;
    margin-bottom: 0.75rem !important;
}

.contact-banner h3 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.contact-item a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.97rem;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 13px 40px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: 1.5px solid transparent;
}

.cta-button:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.2);
    color: #005eb8;
    border-color: #0066cc;
}

.cta-button-enhanced {
    border: 1.5px solid rgba(255,255,255,0.4);
}

/* ================================================
   FOOTER
   ================================================ */

footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 1.5rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ================================================
   RESPONSIVE DESIGN - TABLET (769px - 1023px)
   ================================================ */

@media (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content {
        padding: 60px 40px;
        order: 1;
    }

    .hero-image {
        order: 2;
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 60%, transparent 100%);
    }

    .focus-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .activities-grid,
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 200px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

/* ================================================
   RESPONSIVE DESIGN - MOBILE (481px - 768px)
   ================================================ */

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Trust strip - scrollable on mobile */
    .trust-section {
        padding: 20px 0;
    }

    .trust-strip {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .trust-strip-item {
        padding: 6px 18px;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
    }

    .hero-image {
        order: 1;
        height: 350px;
        width: 100%;
    }

    .hero-image::before {
        width: 100%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 30%, transparent 100%);
    }

    .hero-content {
        order: 2;
        padding: 40px 20px;
        background: white;
        border-radius: 24px 24px 0 0;
        margin-top: -20px;
        position: relative;
        z-index: 10;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .about-accent {
        padding-left: 18px;
        border-left-width: 3px;
    }

    .focus-grid,
    .activities-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

@media (max-width: 768px) {
    #gallery {
        padding: 50px 1.5rem;
        background: linear-gradient(135deg, var(--surface) 0%, #f8fafb 100%);
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 0.75rem;
        animation: fadeInUp 0.6s ease-out;
    }

    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:active {
        transform: scale(0.98);
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Mobile stack card layout */
    .gallery-stack {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 480px;
        position: relative;
        margin-top: 1.5rem;
    }

    .gallery-stack-card {
        position: absolute;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 14px;
        overflow: hidden;
        background: white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .gallery-stack-card img {
        width: 100%;
        height: 280px;
    }

    .gallery-card-info {
        padding: 14px;
        gap: 6px;
    }

    .gallery-card-info h3 {
        font-size: 1rem;
    }

    .card-location {
        font-size: 0.85rem;
    }

    .card-stats {
        font-size: 0.8rem;
    }

    #gallerySwapContainer {
        margin-top: 1.5rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    #gallerySwapContainer .swap-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        flex: 0 1 auto;
        min-width: 45px;
    }

    .gallery-see-all {
        flex: 1 1 auto;
        min-width: 80px;
        max-width: 100px;
        font-size: 0.85rem !important;
        padding: 10px 16px !important;
    }

    .gallery-see-all span {
        font-size: 0.75rem;
    }

    .gallery-see-all i {
        font-size: 0.8rem;
    }
}

    .contact-banner {
        padding: 2.5rem 1.5rem;
    }

    .contact-banner h3 {
        font-size: 1.7rem;
    }
}

/* ================================================
   RESPONSIVE DESIGN - MOBILE (480px and below)
   ================================================ */

@media (max-width: 480px) {
    /* Navigation */
    .logo {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* ── old side-drawer override (safety) ── */
    .side-drawer {
        display: none !important;
    }

    /* BREAK OUT OF CONTAINER FOR SLIDERS */
    .activities-section .card-slider-container,
    .events-section .card-slider-container {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0 1rem;
        width: 100vw;
    }

    /* Hero */
    .hero {
        padding: 0;
        gap: 0;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        height: 280px;
        order: 1;
        position: relative;
        overflow: hidden;
    }

    /* Curved Bottom Shape */
    .hero-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: white;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        z-index: 15;
    }

    /* Fade/Blur Effect from Bottom */
    .hero-image::before {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
        z-index: 10;
        pointer-events: none;
    }

    .hero-image-circle {
        width: 100%;
        height: 100%;
        border-radius: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .hero-image-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        padding: 1.5rem 1rem 2rem;
        background: white;
        border-radius: 0;
        margin-top: 0;
        position: relative;
        z-index: 20;
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        margin: 0;
        line-height: 1.2;
        color: var(--text-primary);
        font-weight: 900;
        word-wrap: break-word;
        word-break: break-word;
    }

    .hero-content h1 span {
        display: inline;
        color: var(--primary);
        background: linear-gradient(135deg, #1E90FF 0%, #00A8FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-tag {
        font-size: 0.7rem;
        margin: 0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--primary);
    }

    .hero-content p {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.6;
        color: var(--text-muted);
        word-wrap: break-word;
        word-break: break-word;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-top: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 11px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
        text-align: center;
        border: none;
        transition: all 0.2s ease;
        font-weight: 600;
    }

    .hero-buttons .btn-primary {
        background: var(--primary);
        color: white;
        box-shadow: 0 2px 8px rgba(30, 144, 255, 0.2);
    }

    .hero-buttons .btn-primary:active {
        background: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    }

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

    .hero-buttons .btn-secondary:active {
        background: var(--bg-light);
        color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

    /* General Sections */
    section {
        padding: 50px 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Trust Section - OLD override (new strip handles itself) */
    .trust-section {
        padding: 16px 0;
    }

    .trust-strip {
        justify-content: flex-start;
    }

    .trust-strip-item {
        padding: 5px 12px;
    }

    .trust-number {
        font-size: 1rem;
    }

    .trust-label {
        font-size: 0.76rem;
    }

    /* Stats counter mobile */
    .stat-item h4 {
        font-size: 2.5rem;
    }

    .stat-plus {
        font-size: 1.8rem;
    }

    /* Hero trust line */
    .hero-trust-line {
        font-size: 0.78rem !important;
    }

    /* Contact banner */
    .contact-emotion-tag {
        font-size: 0.75rem !important;
    }

    /* Focus Cards */
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .focus-card {
        padding: 1.25rem;
    }

    .focus-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .focus-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .focus-card p {
        font-size: 0.9rem;
    }

    /* Stats */
    .stats-section {
        padding: 50px 1rem;
    }

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

    .stat-item p {
        font-size: 0.85rem;
    }

    /* ========== MOBILE SLIDER ========== */
    .mobile-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-slider-track {
        display: flex !important;
        gap: 1rem;
        padding-left: 0;
    }

    .mobile-slider-track > * {
        min-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
    }

    .mobile-slider-track > *:active {
        transform: scale(0.97);
    }

    /* ========== MOBILE CARD SLIDER STYLES - ENLARGED ========== */
    .card-slider-container {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        flex-shrink: 0;
    }

.card-slider {
    flex: 1;
    overflow-x: auto; 
    overflow-y: hidden;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    border-radius: 12px;
    scrollbar-width: none; 
}


.card-slider::-webkit-scrollbar {
    display: none;
}

    .card-slider-track {
        gap: 1.5rem;
        overflow: visible;
        width: auto;
        padding: 0;
    }

    /* WHY JOIN CARDS - SINGLE LARGE CARD */
    .card-story {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        border-radius: 14px;
    }

    .card-story .card-image-wrapper {
        padding-bottom: 55%;
        min-height: 200px;
    }

    .card-story .card-content {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .card-story .card-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .card-story .card-content p {
        font-size: 0.95rem;
        line-height: 1.65;
        color: var(--text-muted);
    }

    /* EVENT CARDS - NO IMAGE, MORE SPACIOUS */
    .card-event {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        border-radius: 14px;
        padding: 1.5rem 0;
    }

    .card-event .card-event-date {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 1.5rem;
        display: inline-block;
        box-shadow: 0 4px 16px rgba(30, 144, 255, 0.25);
    }

    .card-event .card-content {
        padding: 0 1.75rem 1.75rem 1.75rem;
        gap: 1.25rem;
    }

    .card-event .card-content h4 {
        font-size: 1.35rem;
        margin: 0;
        font-weight: 800;
        line-height: 1.3;
        color: var(--text-primary);
    }

    .card-event .card-content p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0;
    }

    .event-meta {
        padding: 1.5rem 0;
        border-top: none;
        border-bottom: none;
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .event-meta span {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        color: var(--text-muted);
    }

    .card-buttons {
        padding: 0;
        gap: 1rem;
        flex-direction: row;
    }

    .btn-card {
        flex: 1;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 8px;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .activity-item {
        grid-template-columns: auto 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .activity-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .activity-item h4 {
        font-size: 1rem;
    }

    .activity-item p {
        font-size: 0.85rem;
    }

    /* Events - IMPROVED MOBILE LAYOUT */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
    }

    .event-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .event-card:active {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .event-date {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
        padding: 1.25rem;
        text-align: center;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
    }

    .date-number {
        font-size: 1.8rem;
        font-weight: 900;
        line-height: 1;
    }

    .date-month {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1px;
        opacity: 0.95;
        text-transform: uppercase;
    }

    .event-card h4 {
        padding: 1rem 1rem 0.5rem;
        color: var(--text-primary);
        font-size: 1rem;
        line-height: 1.3;
        margin: 0;
        word-wrap: break-word;
        word-break: break-word;
    }

    .event-card p {
        padding: 0.5rem 1rem;
        color: var(--text-muted);
        flex-grow: 1;
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
        word-wrap: break-word;
        word-break: break-word;
    }

    .event-details {
        padding: 1rem 1rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .event-details span {
        display: block;
        word-wrap: break-word;
        word-break: break-word;
        padding: 0.25rem 0;
    }

    .event-buttons {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-event {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 6px;
        text-align: center;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        font-weight: 600;
        white-space: nowrap;
        display: block;
    }

    .btn-register {
        background: var(--primary);
        color: white;
        box-shadow: 0 2px 8px rgba(30, 144, 255, 0.2);
    }

    .btn-register:active {
        background: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    }

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

    .btn-view:active {
        background: var(--bg-light);
        border-color: var(--primary-dark);
    }

    /* Gallery */
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Contact Banner */
    .contact-banner {
        padding: 2rem 1rem;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .contact-banner h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .contact-banner p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .contact-info {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .contact-item a {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 32px;
        font-size: 0.95rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* ================================================
   EXTRA SMALL DEVICES (360px and below)
   ================================================ */

@media (max-width: 360px) {
    section {
        padding: 40px 0.75rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-image {
        height: 240px;
    }

    .focus-grid,
    .activities-grid,
    .events-grid {
        gap: 0.75rem;
    }

    .focus-card {
        padding: 1rem;
    }

    .activity-item {
        padding: 0.5rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }
}
/* ================================================
   TARGETED CSS CHANGES
   Focus Areas (Services) & Why Join (Volunteer) Sections
   Remove card styling ONLY from these sections
   ================================================ */

/* ================================================
   FOCUS AREAS / SERVICES - CLEAN MINIMAL LAYOUT
   ================================================ */

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.focus-card {
    /* REMOVE all card styling */
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none !important;
    border: none;
    
    /* Add clean minimal layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.focus-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem; /* bas etlu enough */

    border-radius: 12px;
}

.focus-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.focus-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ================================================
   WHY JOIN / ACTIVITIES - CLEAN MINIMAL LAYOUT
   ================================================ */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-item {
    /* REMOVE all card styling */
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none !important;
    border: none;
    
    /* Add clean minimal layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.activity-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    color: var(--primary);
    margin: 0 !important;
}

.activity-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.activity-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ================================================
   RESPONSIVE - TABLET (768px to 1024px)
   ================================================ */

@media (max-width: 1024px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* ================================================
   RESPONSIVE - SMALL TABLET (640px to 767px)
   ================================================ */

@media (max-width: 767px) {
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .focus-card {
        padding: 1rem 0;
    }

    .activity-item {
        padding: 1rem 0;
    }

    .focus-icon {
        width: 70px;
        height: 70px;
    }

    .activity-icon {
        width: 65px;
        height: 65px;
    }

    .focus-card h3 {
        font-size: 1.1rem;
    }

    .activity-item h4 {
        font-size: 1.1rem;
    }

    .focus-card p,
    .activity-item p {
        font-size: 0.95rem;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (480px and below)
   ================================================ */

@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .focus-card {
        padding: 0;
    }

    .activity-item {
        padding: 0;
    }

    .focus-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .focus-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .activity-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .focus-card p,
    .activity-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ================================================
   RESPONSIVE - EXTRA SMALL (360px and below)
   ================================================ */

@media (max-width: 360px) {
    .focus-grid,
    .activities-grid {
        gap: 1rem;
    }

    .focus-icon,
    .activity-icon {
        width: 60px;
        height: 60px;
    }

    .focus-card h3,
    .activity-item h4 {
        font-size: 1rem;
    }

    .focus-card p,
    .activity-item p {
        font-size: 0.85rem;
    }

    /* ================================================
       EXTRA SMALL DEVICES (≤ 360px) - FINE TUNING
       ================================================ */
}

@media (max-width: 360px) {
    /* Hero Image Height Adjustment */
    .hero-image {
        height: 240px;
    }

    .hero-image::after {
        height: 30px;
    }

    .hero-image::before {
        height: 55%;
    }

    /* Tighter Padding */
    .hero-content {
        padding: 1.25rem 0.75rem 1.5rem;
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Event Card Adjustments */
    .event-card h4 {
        font-size: 0.95rem;
        padding: 0.75rem 0.75rem 0.5rem;
    }

    .event-card p {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .event-details {
        padding: 0.75rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .event-details span {
        padding: 0.2rem 0;
    }

    .event-buttons {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .btn-event {
        padding: 9px 12px;
        font-size: 0.8rem;
    }

    .date-number {
        font-size: 1.6rem;
    }

    .date-month {
        font-size: 0.7rem;
    }

    .event-date {
        padding: 1rem;
    }

    /* Section Header */
    #events {
        padding: 1.5rem 0.5rem;
    }

    .section-header h2 {
        font-size: 1.1rem;
    }

    .section-header p {
        font-size: 0.8rem;
    }

    /* General Buttons */
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}



/* ================================================
   ABOUT PAGE STYLES - CLEAN MINIMAL TEXT LAYOUT
   ================================================ */

/* ========== SIMPLE CONTENT CLASS ========== */
.simple-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.simple-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.5rem 0;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.simple-content h3:first-child {
    margin-top: 0;
}

.simple-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
}

.team-role,
.mentor-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: -1rem 0 0.75rem 0 !important;
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0, 172, 193, 0.05) 100%);
    padding: 100px 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content .hero-tag {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== OUR STORY SECTION ========== */
#our-story {
    background: var(--surface);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: justify;
}

/* ========== MISSION & VISION SECTION ========== */
#mission-vision {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08) 0%, rgba(0, 172, 193, 0.08) 100%);
}

/* ========== CORE VALUES SECTION ========== */
#core-values {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08) 0%, rgba(0, 172, 193, 0.08) 100%);
}

/* ========== TEAM SECTION ========== */
#team {
    background: var(--surface);
}

/* Enhanced Team Member Styling */
.team-member {
    padding: 2rem 0;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-member:hover {
    transform: translateX(4px);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.team-member .team-role {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 1.2rem 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

/* ========== MENTORS SECTION ========== */
#mentors {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08) 0%, rgba(0, 172, 193, 0.08) 100%);
}

/* ========== FOUNDER SECTION - PROFESSIONAL DESKTOP DESIGN ========== */

.founder-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 0;
}

/* MOBILE: Image on top */
.founder-hero .founder-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    order: 1;
}

.founder-hero .founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Wave curve for mobile */
.founder-hero .founder-image::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}

/* MOBILE: Content below image */
.founder-hero .founder-content {
    padding: 2rem 1.5rem;
    text-align: center;
    background: white;
    order: 2;
    position: relative;
    z-index: 2;
}

.founder-hero .hero-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 1rem;
}

.founder-hero h1 {
    font-size: 1.8rem;
    margin: 0.5rem 0 0.5rem 0;
    color: var(--text-primary);
    font-weight: 900;
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.founder-hero p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.founder-message {
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    color: var(--text-muted);
    line-height: 1.8;
}

.founder-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.founder-detail strong {
    color: var(--primary);
    font-weight: 600;
}

/* ================================================
   DESKTOP CARD SLIDER STYLES
   ================================================ */

@media (min-width: 769px) {
    .card-slider-container {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .slider-arrow {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .card-slider {
        flex: 1;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    .card-slider-track {
        gap: 2rem;
    }

    .card-story,
    .card-event {
        flex: 0 0 calc(50% - 1rem);
        max-width: 450px;
    }

    .card-image-wrapper {
        padding-bottom: 70%;
    }

    .card-content {
        padding: 1.75rem;
    }

    .card-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .card-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (min-width: 1200px) {
    .card-story,
    .card-event {
        flex: 0 0 calc(33.333% - 1.4rem);
    }
}

/* ================================================
   DESKTOP: Perfect Circular Image Design (Fixed)
   ================================================ */
@media (min-width: 1025px) {
    /* ========== DESKTOP: CARD SLIDER STYLES ========== */
    .card-slider-container {
        gap: 2rem;
    }

    .card-slider-track {
        display: flex !important;
        gap: 2rem;
    }

    .card-story,
    .card-event {
        flex: 0 0 calc(50% - 1rem);
        min-width: auto;
        scroll-snap-align: none;
    }

    @media (min-width: 1400px) {
        .card-story,
        .card-event {
            flex: 0 0 calc(33.333% - 1.33rem);
        }
    }

    /* ========== DESKTOP: RESTORE GRID LAYOUT (OLD STYLES) ========== */
    .mobile-slider {
        overflow-x: visible;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
        padding-bottom: 0;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-slider-track > * {
        min-width: auto;
        flex-shrink: unset;
        scroll-snap-align: none;
    }

    .mobile-slider-track > *:active {
        transform: none;
    }

    /* Activities - Desktop Grid */
    .mobile-slider-track.activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* Events - Desktop Grid */
    .mobile-slider-track.events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .founder-hero {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: center;
        padding: 80px 60px;
        background: linear-gradient(135deg, #E8F0FB 0%, #F5F9FE 100%);
        position: relative;
        overflow: visible;
    }
    
    /* Large subtle background circle for the image area */
    .founder-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 5%;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        filter: blur(1px);
        z-index: 0;
        pointer-events: none;
        transform: translateY(-50%);
    }
    
    .founder-hero .founder-image {
        order: 2;
        width: 100%;
        height: auto;
        overflow: visible;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
    }
    
    /* Main circle cutout - large, clean circle */
    .founder-hero .founder-image::before {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 12px solid rgba(255, 255, 255, 0.9);
        z-index: 1;
        pointer-events: none;
        box-shadow: 0 20px 60px rgba(30, 144, 255, 0.12);
    }
    
    /* Decorative dot accent - top right */
    .founder-hero .founder-image::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #1E90FF;
        z-index: 3;
        pointer-events: none;
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
    }
    
    /* Perfect circular image - main focus */
    .founder-hero .founder-image img {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center 15%;
        display: block;
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }
    
    .founder-hero .founder-image img:hover {
        transform: scale(1.02);
    }
    
    /* Additional decorative dots using pseudo elements on content */
    .founder-hero .founder-content::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -80px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #1E90FF;
        z-index: 3;
        pointer-events: none;
        box-shadow: 0 3px 10px rgba(30, 144, 255, 0.35);
    }
    
    .founder-hero .founder-content::after {
        content: '';
        position: absolute;
        bottom: 15%;
        right: -65px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #1E90FF;
        z-index: 3;
        pointer-events: none;
        box-shadow: 0 3px 10px rgba(30, 144, 255, 0.35);
    }
    
    .founder-hero .founder-content {
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        background: transparent;
        text-align: left;
        z-index: 3;
        height: auto;
        position: relative;
    }
    
    .founder-hero .hero-tag {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        letter-spacing: 2.5px;
        color: #1E90FF;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .founder-hero h1 {
        font-size: 2.8rem;
        margin: 0 0 0.5rem 0;
        line-height: 1.15;
        color: #001F4D;
        font-weight: 900;
    }
    
    .founder-role {
        font-size: 1rem;
        color: #666;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
    
    .founder-hero p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        color: #555;
        max-width: 450px;
    }
    
    .founder-message {
        font-size: 0.95rem;
        margin-top: 1.8rem;
        padding-top: 1.8rem;
        border-top: 2px solid #1E90FF;
        font-style: italic;
        color: #666;
        line-height: 1.8;
        max-width: 450px;
    }
}

/* ========== JOIN US SECTION ========== */
.join-us-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.join-us-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-us-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.join-us-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-buttons .btn-primary {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

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

.join-buttons .btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
}

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

/* ================================================
   RESPONSIVE - TABLET (1025px to 1200px)
   ================================================ */

@media (max-width: 1200px) {
    .founder-section {
        padding: 60px 1.5rem;
    }

    .founder-container {
        gap: 3rem;
    }

    .founder-name {
        font-size: 2rem;
    }

    .founder-description,
    .founder-message {
        font-size: 1rem;
    }
}

/* ================================================
   RESPONSIVE - TABLET (768px to 1024px)
   ================================================ */

@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .founder-content {
        align-items: center;
    }

    .founder-tag {
        margin: 0 auto;
    }

    .founder-message {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--primary);
        padding-top: 1.5rem;
    }

    .simple-content {
        max-width: 700px;
    }
}

/* ================================================
   RESPONSIVE - SMALL TABLET (640px to 767px)
   ================================================ */

@media (max-width: 767px) {
    .about-hero {
        padding: 60px 1.5rem;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .story-content {
        gap: 1.2rem;
    }

    .story-content p {
        font-size: 1rem;
        text-align: left;
    }

    .founder-section {
        padding: 50px 1.5rem;
    }

    .founder-container {
        gap: 2rem;
    }

    .founder-name {
        font-size: 1.7rem;
    }

    .founder-role {
        font-size: 0.95rem;
    }

    .founder-description,
    .founder-message {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .founder-message {
        padding-top: 1.25rem;
    }

    .simple-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.5rem 0;
    }

    .simple-content h3:first-child {
        margin-top: 0;
    }

    .simple-content p {
        font-size: 0.95rem;
    }

    .join-us-content h2 {
        font-size: 1.8rem;
    }

    .join-us-content p {
        font-size: 1rem;
    }

    .join-buttons {
        gap: 1rem;
    }

    .join-buttons .btn-primary,
    .join-buttons .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (480px and below)
   ================================================ */

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 1rem;
    }

    .about-hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .about-hero-content p {
        font-size: 0.95rem;
    }

    .simple-content {
        max-width: 100%;
    }

    .simple-content h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.4rem 0;
    }

    .simple-content h3:first-child {
        margin-top: 0;
    }

    .simple-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .team-role,
    .mentor-title {
        font-size: 0.85rem;
        margin: -0.75rem 0 0.5rem 0 !important;
    }

    .founder-section {
        padding: 40px 1rem;
    }

    .founder-container {
        gap: 1.5rem;
    }

    .founder-tag {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .founder-name {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .founder-role {
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    .founder-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0.75rem;
    }

    .founder-message {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .join-us-section {
        padding: 60px 1rem;
    }

    .join-us-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .join-us-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .join-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .join-buttons .btn-primary,
    .join-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ================================================
   RESPONSIVE - EXTRA SMALL (360px and below)
   ================================================ */

@media (max-width: 360px) {
    .about-hero-content h1 {
        font-size: 1.3rem;
    }

    .founder-section {
        padding: 35px 0.75rem;
    }

    .founder-name {
        font-size: 1.3rem;
    }

    .founder-role {
        font-size: 0.85rem;
    }

    .founder-description,
    .founder-message {
        font-size: 0.85rem;
    }

    .founder-image img {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.1);
    }

    .simple-content h3 {
        font-size: 1rem;
    }

    .simple-content p {
        font-size: 0.85rem;
    }

    .team-role,
    .mentor-title {
        font-size: 0.8rem;
    }

    .join-us-content h2 {
        font-size: 1.3rem;
    }

    .join-us-content p {
        font-size: 0.9rem;
    }

    .join-buttons .btn-primary,
    .join-buttons .btn-secondary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}
/* =========================================================
   PREMIUM CARD DESIGN (NEW) - ADDED AT THE BOTTOM
   ========================================================= */

/* 1. Why Join (Story) કાર્ડની ડિઝાઇન - મોડર્ન શેડો અને ગોળ ખૂણા */
.card-story {
    background: #ffffff !important;
    border-radius: 24px !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(30, 144, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden !important;
}

/* 2. Events કાર્ડની ડિઝાઇન */
.card-event {
    background: #ffffff !important;
    border-radius: 24px !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(30, 144, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: visible !important;
}

/* 3. માઉસ લઈ જવાથી (Hover) સ્મુથ બાઉન્સ ઇફેક્ટ */
.card-story:hover, .card-event:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.15) !important;
    border-color: rgba(30, 144, 255, 0.2) !important;
}

/* 4. ફોટોની ડિઝાઇન - ફોટો ધીમેથી ઝૂમ થશે */
.card-image {
    transition: transform 0.6s ease !important;
}
.card-story:hover .card-image {
    transform: scale(1.08) !important;
}

/* 5. ઈવેન્ટની તારીખ (Date Badge) ને પ્રીમિયમ લુક આપવા */
.card-event-date {
    background: linear-gradient(135deg, #1E90FF 0%, #00A8FF 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3) !important;
    border: 3px solid #ffffff !important;
    margin-top: -20px !important; /* કાર્ડની થોડી બહાર નીકળતી દેખાશે */
    padding: 1.2rem 1.5rem !important;
}

.date-day {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
}

/* 6. લખાણ (Typography) સુધારવા */
.card-content h4 {
    color: #002B5B !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 0.5rem !important;
}

.card-content p {
    color: #555555 !important;
    line-height: 1.7 !important;
}

/* 7. બટનની ડિઝાઇન (Register / View More) */
.btn-card {
    border-radius: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 12px 0 !important;
    transition: all 0.3s ease !important;
}

.btn-register {
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2) !important;
}

.btn-register:hover {
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4) !important;
    transform: scale(1.03) !important;
}
/* =========================================================
   SWIPE INDICATOR & VIBRANT CARD COLORS
   ========================================================= */

/* 1. સ્વાઇપ કરવાનું લખાણ અને એરો (Animated Swipe Indicator) */
.swipe-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* જમણી બાજુ રાખવા */
    gap: 8px;
    color: #FF6B6B; /* ધ્યાન ખેંચે તેવો લાલ/ઓરેન્જ કલર */
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-right: 10px;
    animation: swipePulse 2s infinite; /* લાઈટ વધ-ઘટ થવા માટે */
}

.swipe-indicator svg {
    animation: swipeArrowMove 1.5s infinite ease-in-out; /* એરો ડાબે-જમણે હલશે */
}

@keyframes swipeArrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

@keyframes swipePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ડેસ્કટોપમાં સ્વાઇપ લખાણ છુપાવવા (કારણ કે ત્યાં માઉસથી સ્ક્રોલ થાય છે) */
@media (min-width: 1025px) {
    .swipe-indicator { display: none; }
}

/* 2. કાર્ડની નવી રંગીન ડિઝાઇન (Gradient & Top Border) */
.card-story, .card-event {
    background: linear-gradient(to bottom, #ffffff, #F0F7FF) !important; /* સફેદ થી લાઈટ બ્લુ ગ્રેડિયન્ટ */
    border-top: 5px solid #1E90FF !important; /* ઉપર મસ્ત બ્લુ પટ્ટી */
    border-radius: 20px !important; 
    box-shadow: 0 8px 24px rgba(0, 43, 91, 0.08) !important;
}

/* 3. માઉસ લઈ જવાથી કલર બદલાશે */
.card-story:hover, .card-event:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.2) !important;
    border-top: 5px solid #00BCD4 !important; /* હોવર કરવાથી ઉપરની પટ્ટીનો કલર સાયન (Cyan) થશે */
}

/* 4. Event Date નો કલર બદલીને આકર્ષક (Warm) બનાવ્યો */
.card-event-date {
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%) !important; /* મસ્ત ઓરેન્જ ગ્રેડિયન્ટ */
    color: white !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 8px 20px rgba(255, 81, 47, 0.3) !important;
}

/* 5. બટનનો કલર */
.btn-register {
    background: linear-gradient(135deg, #1E90FF 0%, #00A8FF 100%) !important;
    border: none !important;
    color: white !important;
}
.btn-register:hover {
    background: linear-gradient(135deg, #00A8FF 0%, #1E90FF 100%) !important;
}
/* =========================================================
   PC / DESKTOP LAYOUT (GRID - NO SWIPE NEEDED)
   ========================================================= */
@media (min-width: 1025px) {
    /* પીસીમાં સ્ક્રોલ બંધ કરીને બધા કાર્ડ્સ એકસાથે સામે જ બતાવવા */
    .card-slider {
        overflow: visible !important;
    }
    
    .card-slider-track {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 2.5rem !important;
        width: 100% !important;
    }
    
    .card-story, .card-event {
        width: 100% !important;
        flex: unset !important; /* જૂનું ફ્લેક્સ સેટિંગ હટાવવા */
        margin-bottom: 1rem !important;
    }

    /* પીસીમાં માઉસ લઈ જવાથી કાર્ડ થોડું વધારે ઉપર આવે તે માટે */
    .card-story:hover, .card-event:hover {
        transform: translateY(-12px) !important;
        box-shadow: 0 25px 45px rgba(30, 144, 255, 0.15) !important;
    }
}

/* ================================================
   SWAP BUTTON STYLES (PROFESSIONAL DESIGN)
   ================================================ */

.swap-button-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease-out;
    gap: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swap-btn {
    background: linear-gradient(135deg, #1E90FF 0%, #00A8FF 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    letter-spacing: 0.3px;
}

.swap-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, #00A8FF 0%, #0073E6 100%);
}

.swap-btn:active {
    transform: translateY(0);
}

.swap-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.swap-btn-prev:hover i {
    transform: translateX(-2px);
}

.swap-btn-next:hover i {
    transform: translateX(2px);
}

/* Desktop - Hide forward/backward buttons, show only swap for normal cards */
@media (min-width: 1025px) {
    .swap-button-container {
        display: none;
    }

    #gallerySwapContainer {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    #gallerySwapContainer .swap-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .swap-button-container {
        gap: 0.5rem;
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .swap-btn {
        padding: 13px 28px;
        font-size: 0.9rem;
        flex: 0 1 auto;
        justify-content: center;
        border-radius: 50px;
        min-width: 50px;
    }

    .swap-btn span {
        display: inline;
        margin-left: 6px;
    }

    .swap-btn i {
        font-size: 1.2rem;
    }

    #gallerySwapContainer .swap-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    #gallerySwapContainer .swap-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .swap-button-container {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .swap-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .swap-btn i {
        font-size: 1.2rem;
    }
}

/* Grid swapping animation */
.focus-grid,
.activities-cards,
.events-cards {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-grid.swapping,
.activities-cards.swapping,
.events-cards.swapping {
    opacity: 0;
}

/* ================================================
   GALLERY STACK CARD LAYOUT
   ================================================ */

.gallery-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    margin-top: 2.5rem;
}

.gallery-stack-card {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gallery-stack-card img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    display: block;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 144, 255, 0.3) 0%, rgba(0, 43, 91, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-stack-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Card Info Section */
.gallery-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    background: white;
}

.gallery-card-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.card-location {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-location i {
    color: var(--primary);
    font-size: 0.85rem;
}

.card-stats {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* See All Button */
.gallery-see-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px !important;
    white-space: nowrap;
}

.gallery-see-all span {
    font-weight: 600;
}

/* Desktop - show grid layout */
@media (min-width: 1025px) {
    .gallery-stack {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: auto;
        gap: 1.25rem;
        margin-top: 2.5rem;
        min-height: auto;
    }

    .gallery-stack-card {
        position: relative;
        width: 100%;
        max-width: none;
        height: auto;
        flex-direction: column;
    }

    .gallery-stack-card img {
        height: 250px;
        width: 100%;
    }

    .gallery-card-overlay {
        position: absolute;
        inset: 0;
    }
}

/* Tablet - grid layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-stack {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1rem;
        margin-top: 2rem;
        min-height: auto;
    }

    .gallery-stack-card {
        position: relative;
        width: 100%;
        max-width: none;
        height: auto;
        flex-direction: column;
    }

    .gallery-stack-card img {
        height: 200px;
        width: 100%;
    }

    .gallery-card-overlay {
        position: absolute;
        inset: 0;
    }
}

/* ================================================
   GALLERY SECTION STYLES - MOBILE FRIENDLY
   ================================================ */

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 1.5rem;
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    color: white;
}

.gallery-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 1.5rem;
    background-color: var(--bg-lighter);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 1rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background-color: white;
    color: var(--text-primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.show {
    display: block !important;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.15);
}

/* Gallery Image Wrapper */
.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 144, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-zoom-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary);
    color: white;
}

/* Gallery Info */
.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ================================================
   LIGHTBOX MODAL
   ================================================ */

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    animation: lightboxSlideIn 0.3s ease;
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-info {
    padding: 20px;
    background-color: var(--bg-lighter);
}

.lightbox-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.lightbox-info p {
    color: var(--text-muted);
}

/* ================================================
   GALLERY STATS SECTION
   ================================================ */

.gallery-stats {
    padding: 60px 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.stat-card {
    text-align: center;
    color: white;
    padding: 20px;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* ================================================
   GALLERY INFO SECTION
   ================================================ */

.gallery-info-section {
    padding: 60px 1.5rem;
    background-color: var(--surface);
}

.gallery-info-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--text-primary);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--bg-lighter);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.15);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.gallery-testimonials {
    padding: 60px 1.5rem;
    background-color: var(--bg-light);
}

.gallery-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================================
   CTA SECTION
   ================================================ */

.gallery-cta {
    padding: 60px 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.gallery-cta h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 15px;
    color: white;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* ================================================
   FOOTER STYLES
   ================================================ */

.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 60px 1.5rem 20px;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.footer-social a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================ */

@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.5rem;
        padding: 0;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }

    .gallery-img-wrapper {
        height: 240px;
    }

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

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .btn {
        width: 100%;
    }

    .lightbox-content {
        width: 95%;
        max-width: none;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-hero-content h1 {
        font-size: 1.5rem;
    }

    .gallery-hero-content p {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-img-wrapper {
        height: 200px;
    }

    .filter-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .gallery-testimonials h2,
    .gallery-info-section h2,
    .gallery-cta h2 {
        font-size: 1.5rem;
    }

    .gallery-cta p {
        font-size: 1rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .lightbox-info {
        padding: 15px;
    }

    .lightbox-info h4 {
        font-size: 1rem;
    }
}

/* ================================================
   TEAM SECTION - PROFESSIONAL CARD LAYOUT
   ================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.team-card {
    background-color: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(30, 144, 255, 0.15);
    transform: translateY(-6px);
}

/* Image wrapper with crop control and zoom effect */
.team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent) 100%);
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.08);
}

/* Overlay with social links */
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.92) 0%, rgba(0, 43, 91, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Social links strip */
.team-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-social-links {
    transform: translateY(0);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background-color: white;
    color: var(--primary);
    border-color: white;
    transform: scale(1.15);
}

/* Content section */
.team-content {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.team-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

/* ================================================
   TEAM SECTION - RESPONSIVE DESIGN
   ================================================ */

/* Tablets/Medium screens: 2 columns */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile devices: 1 column */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .team-card:hover {
        box-shadow: 0 6px 16px rgba(30, 144, 255, 0.12);
        transform: translateY(-4px);
    }

    .team-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .team-content {
        padding: 20px 18px;
    }

    .team-name {
        font-size: 1.15rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-description {
        font-size: 0.85rem;
    }
}

/* Extra small mobile: 1 column with adjusted padding */
@media (max-width: 480px) {
    .team-grid {
        gap: 16px;
    }

    .team-card {
        border-radius: 10px;
    }

    .team-content {
        padding: 18px 16px;
    }

    .team-name {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .team-role {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .team-description {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .team-social-links {
        gap: 12px;
    }
}
/* ટીમ મેમ્બરના નામ અને રોલ વચ્ચે સ્પેસ વધારવા માટે */
.team-name {
    margin-bottom: 12px !important; /* અહીંથી તમે સ્પેસ કંટ્રોલ કરી શકો છો */
}