/* ============================================
   SENAY HILNA - Online Catholic Program
   Good Conscience Community
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #00acc1;
    --accent-color: #ffd700;
    --gold-color: #FFA500;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-bg: #f0f4f8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 16px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.nav-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.88) 0%, rgba(21, 101, 192, 0.92) 100%);
}

/* Logo Animations */
.logo-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    color: rgba(255, 107, 107, 0.5);
    font-size: 2rem;
    animation: floatHeart 6s ease-in-out infinite;
}

.heart-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 2.5rem; }
.heart-2 { top: 25%; right: 10%; animation-delay: 1s; font-size: 1.8rem; }
.heart-3 { top: 60%; left: 5%; animation-delay: 2s; font-size: 2rem; }
.heart-4 { top: 70%; right: 8%; animation-delay: 1.5s; font-size: 2.2rem; }
.heart-5 { top: 40%; left: 12%; animation-delay: 0.5s; font-size: 1.5rem; }

@keyframes floatHeart {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.5; }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.1); opacity: 0.7; }
    50% { transform: translateY(-40px) rotate(0deg) scale(1); opacity: 0.5; }
    75% { transform: translateY(-20px) rotate(-5deg) scale(0.9); opacity: 0.4; }
}

.floating-hand {
    position: absolute;
    color: rgba(255, 255, 255, 0.35);
    font-size: 3rem;
    animation: floatHand 8s ease-in-out infinite;
}

.hand-1 { top: 20%; right: 20%; animation-delay: 0s; }
.hand-2 { bottom: 25%; left: 15%; animation-delay: 2s; font-size: 2.5rem; }
.hand-3 { top: 50%; right: 5%; animation-delay: 4s; font-size: 2rem; }

@keyframes floatHand {
    0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.35; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.6; }
}

.golden-ray {
    position: absolute;
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.7), transparent);
    border-radius: 2px;
    animation: rayPulse 3s ease-in-out infinite;
}

.ray-1 { top: 5%; left: 20%; transform: rotate(-30deg); animation-delay: 0s; }
.ray-2 { top: 3%; left: 35%; transform: rotate(-15deg); animation-delay: 0.3s; height: 100px; }
.ray-3 { top: 2%; left: 50%; transform: rotate(0deg); animation-delay: 0.6s; height: 120px; }
.ray-4 { top: 3%; right: 35%; transform: rotate(15deg); animation-delay: 0.9s; height: 100px; }
.ray-5 { top: 5%; right: 20%; transform: rotate(30deg); animation-delay: 1.2s; }
.ray-6 { top: 8%; left: 28%; transform: rotate(-22deg); animation-delay: 1.5s; height: 60px; }
.ray-7 { top: 8%; right: 28%; transform: rotate(22deg); animation-delay: 1.8s; height: 60px; }
.ray-8 { top: 6%; left: 42%; transform: rotate(-8deg); animation-delay: 2.1s; height: 90px; }

@keyframes rayPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

.floating-cross {
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    font-size: 2rem;
    animation: floatCross 7s ease-in-out infinite;
}

.cross-1 { top: 30%; left: 3%; animation-delay: 0s; }
.cross-2 { top: 55%; right: 3%; animation-delay: 2s; font-size: 1.5rem; }
.cross-3 { bottom: 20%; left: 8%; animation-delay: 4s; font-size: 1.8rem; }
.cross-4 { top: 45%; right: 12%; animation-delay: 1s; font-size: 1.3rem; }

@keyframes floatCross {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
    50% { transform: translateY(-25px) rotate(10deg); opacity: 0.5; }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, transparent 70%);
    animation: orbGlow 4s ease-in-out infinite;
}

.orb-1 { width: 150px; height: 150px; top: 10%; left: 15%; animation-delay: 0s; }
.orb-2 { width: 100px; height: 100px; bottom: 20%; right: 10%; animation-delay: 1.5s; }
.orb-3 { width: 80px; height: 80px; top: 50%; left: 5%; animation-delay: 3s; }

@keyframes orbGlow {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.3); opacity: 0.65; }
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: var(--white);
    padding: 100px 20px 60px;
    position: relative;
    z-index: 10;
}

.hero-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.main-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.45; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.75; }
}

.hero-title {
    margin-bottom: 15px;
}

.hero-title .amharic {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .english {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.95;
    color: var(--accent-color);
}

.hero-mission {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-verse {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 30px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
    border-left: 3px solid var(--accent-color);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffc107 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}

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

.btn-zoom {
    background: #2D8CFF;
    color: var(--white);
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.btn-zoom:hover {
    background: #0b5cff;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission {
    background: var(--white);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 60px;
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.mission-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mission-statement h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.mission-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
}

.mission-text .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

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

.pillar {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 35px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.pillar:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.pillar h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pillar p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.about-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(30, 136, 229, 0.2);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.activities {
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.activity-image {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image i {
    font-size: 3.5rem;
    color: var(--white);
}

.activity-content {
    padding: 25px;
}

.activity-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.activity-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule {
    background: var(--off-white);
}

.schedule-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 45px;
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.day-badge {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-badge i {
    font-size: 1.6rem;
}

.day-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

.day-amharic {
    font-size: 1.1rem;
    opacity: 0.9;
}

.schedule-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
}

.time-item i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.time-item div {
    display: flex;
    flex-direction: column;
}

.time-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.time-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.time-sub {
    font-size: 0.8rem;
    opacity: 0.7;
}

.time-separator i {
    font-size: 1.2rem;
    opacity: 0.6;
}

.schedule-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   ZOOM SECTION
   ============================================ */
.zoom {
    background: var(--white);
}

.zoom-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid #eee;
}

.zoom-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #2D8CFF 0%, #0b5cff 100%);
    color: var(--white);
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-icon i {
    font-size: 1.5rem;
}

.zoom-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.zoom-title p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.zoom-details {
    padding: 25px 30px;
}

.zoom-item {
    margin-bottom: 20px;
}

.zoom-item:last-child {
    margin-bottom: 0;
}

.zoom-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.zoom-value-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-bg);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid #e0e0e0;
}

.zoom-value {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.copy-btn:hover {
    background: rgba(30, 136, 229, 0.1);
}

.zoom-action {
    padding: 0 30px 30px;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social {
    background: var(--off-white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    text-align: center;
}

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

.social-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.social-icon i {
    font-size: 1.5rem;
}

.social-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-card p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Social Card Colors */
.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.telegram { background: linear-gradient(135deg, #0088cc 0%, #005f8a 100%); }
.facebook { background: linear-gradient(135deg, #1877F2 0%, #0d5cb5 100%); }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.youtube { background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%); }
.linkedin { background: linear-gradient(135deg, #0077b5 0%, #005885 100%); }
.twitter { background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%); }
.tiktok { background: linear-gradient(135deg, #000000 0%, #333333 100%); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-card {
    background: var(--off-white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

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

.contact-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    word-break: break-all;
}

.contact-card .btn {
    margin: 3px;
}

.contact-quote {
    text-align: center;
    max-width: 650px;
    margin: 50px auto 0;
    padding: 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    color: var(--white);
}

.contact-quote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-quote span {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 55px;
    width: auto;
    border-radius: 50%;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom i {
    color: #e74c3c;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-hover);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: #2ecc71;
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .main-logo {
        width: 140px;
        height: 140px;
    }

    .logo-glow {
        width: 170px;
        height: 170px;
    }

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

    .hero-title .english {
        font-size: 1.8rem;
    }

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

    .mission-statement h3 {
        font-size: 1.6rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .schedule-card {
        padding: 25px;
    }

    .schedule-time {
        flex-direction: column;
        gap: 15px;
    }

    .time-separator {
        transform: rotate(90deg);
    }

    .zoom-header,
    .zoom-details,
    .zoom-action {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .floating-heart,
    .floating-hand,
    .floating-cross,
    .golden-ray,
    .glow-orb {
        display: none;
    }
}

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

    .hero-title .english {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    .main-logo {
        width: 120px;
        height: 120px;
    }

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