/* ========================================
   Nyakach Pets Lovers - Modern Stylesheet
   Crisp, Clean & Premium Design System
   ======================================== */

/* CSS Variables — refined palette */
:root {
    /* Primary — deep greens with richer tones */
    --primary-color: #2D6A4F;
    --primary-dark: #1B4332;
    --primary-light: #52B788;
    --primary-glow: rgba(45, 106, 79, 0.15);

    /* Secondary — warm terracotta tones */
    --secondary-color: #C1553B;
    --secondary-dark: #993D28;
    --secondary-light: #E07B5F;

    /* Accent — warm gold */
    --accent-color: #D4A843;
    --accent-light: #F0D98D;

    /* Neutrals — cool-toned for a crisp feel */
    --text-color: #1A1A2E;
    --text-light: #4A4A68;
    --text-muted: #8E8EA0;
    --white: #ffffff;
    --off-white: #FAFBFC;
    --light-bg: #F4F6F8;
    --light-green: #E8F5E9;
    --border-color: #E2E4E9;

    /* Effects */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 8px 30px rgba(45, 106, 79, 0.2);
    --shadow-red: 0 8px 30px rgba(193, 85, 59, 0.2);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 100px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Typography — crisp and modern
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ==========================================
   Buttons — polished with gradients
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(193, 85, 59, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

/* ==========================================
   Header — clean glass effect on scroll
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 24px;
    opacity: 0.9;
}

.contact-info i {
    margin-right: 6px;
    font-size: 0.75rem;
}

.social-links a {
    color: var(--white);
    margin-left: 16px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--accent-light);
    opacity: 1;
    transform: translateY(-1px);
}

/* Navigation */
.main-nav {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header.scrolled .main-nav {
    padding: 10px 0;
    border-bottom-color: transparent;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-green);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.logo-icon i.fa-cat {
    color: var(--accent-light);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--primary-glow);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-btn {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full) !important;
}

.nav-btn::after {
    display: none !important;
}

.nav-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   Hero Section — immersive and modern
   ========================================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-color) 50%, #40916c 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.2), transparent 70%);
    border-radius: 50%;
    animation: floatOrb 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
    border-radius: 50%;
    animation: floatOrb 15s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--accent-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
}

.hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -50px;
    bottom: 0;
    max-width: 500px;
    opacity: 0.15;
}

/* Hero with Dual Photos */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.hero-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-photo:hover img {
    transform: scale(1.08);
}

.hero-photo .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 24px 14px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ==========================================
   Section Styles — clean spacing
   ========================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 0 auto 16px;
    border-radius: 3px;
}

/* ==========================================
   About Preview — refined
   ========================================== */
.about-preview {
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
    transition: var(--transition);
}

.about-image:hover::before {
    top: -16px;
    left: -16px;
    opacity: 0.6;
}

.about-content h2 {
    color: var(--primary-dark);
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

/* ==========================================
   Stats — refined glassmorphism
   ========================================== */
.stats-section {
    background: linear-gradient(160deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--accent-light);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* ==========================================
   Objective / Service Cards — modern
   ========================================== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.objective-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-glow), rgba(82, 183, 136, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.objective-card:hover .objective-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: scale(1.05);
}

.objective-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.objective-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================
   Philosophy Cards — clean layout
   ========================================== */
.philosophy-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.philosophy-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.philosophy-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: transparent;
}

.philosophy-card .icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.philosophy-card h4 {
    color: var(--text-color);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.philosophy-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ==========================================
   Activity Cards — image-driven clean look
   ========================================== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.activity-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.activity-card:hover img {
    transform: scale(1.08);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 48px 24px 24px;
    color: var(--white);
}

.activity-overlay h3 {
    color: var(--white);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.activity-overlay p {
    font-size: 0.88rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   Achievements — timeline style
   ========================================== */
.achievements-section {
    background: var(--light-bg);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.achievement-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.achievement-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.achievement-year {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.achievement-content h4 {
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.achievement-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* Achievement Photos Gallery */
.achievement-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.achievement-photo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.achievement-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.achievement-photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.achievement-photo-card:hover img {
    transform: scale(1.05);
}

.achievement-photo-card .photo-info {
    padding: 20px;
}

.achievement-photo-card .photo-info h4 {
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.achievement-photo-card .photo-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ==========================================
   CTA Section — bold and inviting
   ========================================== */
.cta-section {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-color) 60%, #40916c 100%);
    color: var(--white);
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ==========================================
   Events — modern cards
   ========================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 18px;
    text-align: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-content {
    padding: 24px;
}

.event-type {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-glow);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.event-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.event-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.event-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ==========================================
   Contact Section — clean two-panel layout
   ========================================== */
.contact-section {
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-box {
    background: linear-gradient(160deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
}

.contact-info-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--accent-light);
    margin-top: 2px;
}

.contact-item h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.contact-item a:hover {
    color: var(--accent-light);
}

/* ==========================================
   Forms — refined inputs
   ========================================== */
.form-box {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-box h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--off-white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #E8F5E9;
    color: var(--primary-dark);
    border: 1px solid var(--primary-light);
}

.alert-error {
    background: #FFF3F0;
    color: #9A2B11;
    border: 1px solid #E07B5F;
}

/* ==========================================
   Page Header — subtle and elegant
   ========================================== */
.page-header {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-color) 60%, #40916c 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: var(--accent-light);
}

/* ==========================================
   Volunteer Page — clean benefit cards
   ========================================== */
.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.benefit-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================
   Donate Page — pricing cards
   ========================================== */
.donate-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.donate-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.donate-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.donate-card.featured {
    border-color: var(--secondary-color);
    position: relative;
    box-shadow: var(--shadow-red);
}

.donate-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 4px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.donate-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donate-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.donate-card h4 {
    margin-bottom: 1rem;
}

.donate-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
}

.donate-card li {
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
}

.donate-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================
   Map
   ========================================== */
.map-container {
    margin-top: 48px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==========================================
   Footer — modern dark footer
   ========================================== */
.main-footer {
    background: #0D0D0D;
    color: var(--white);
}

.footer-top {
    padding: 72px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-col h3, .footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-col address {
    font-style: normal;
}

.footer-col address p {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-col address i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-col address a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col address a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #080808;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================
   Scroll-triggered reveal animation
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design — polished breakpoints
   ========================================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

    .stats-grid,
    .volunteer-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .objectives-grid,
    .events-grid,
    .activities-grid,
    .donate-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    section {
        padding: 72px 0;
    }

    .top-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 50;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .nav-menu a:hover {
        background: transparent;
        color: var(--primary-color);
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 64px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-photos {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid,
    .objectives-grid,
    .philosophy-grid,
    .events-grid,
    .activities-grid,
    .achievements-grid,
    .achievement-photos,
    .volunteer-benefits,
    .donate-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col address p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info-box {
        padding: 32px;
    }

    .form-box {
        padding: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 56px 0;
    }

    .hero {
        padding: 48px 0;
        min-height: auto;
    }

    .hero-photos {
        gap: 10px;
    }

    .form-box {
        padding: 24px;
    }

    .contact-info-box {
        padding: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-header {
        padding: 56px 0;
    }
}
