/* ==========================================
   WHATSUPUK - Custom Styles
   ========================================== */

/* ==========================================
   Global Styles
   ========================================== */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --water-blue: #1e88e5;
    --water-light: #64b5f6;
    --sand-color: #f5deb3;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --orange-primary: #ff6b35;
    --orange-secondary: #f7931e;
    --orange-light: #fdc830;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================
   Navigation Styles
   ========================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--water-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--water-blue) !important;
    transform: translateY(-2px);
}

.btn-fundraising {
    background: linear-gradient(135deg, var(--success-color), #28a745);
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-fundraising:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
}

/* ==========================================
   Hero Section (Main Page)
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, var(--water-blue) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-links {
    position: relative;
    z-index: 1;
}

.hero-links .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-links .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-links .btn-primary {
    background: linear-gradient(135deg, var(--water-blue), var(--water-light));
    border: none;
}

.hero-links .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

/* ==========================================
   About Section
   ========================================== */
.about-section {
    background: linear-gradient(to bottom, white 0%, #f8f9fa 100%);
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--water-blue), transparent);
    border-radius: 2px;
}

.about-section .lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
}

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

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(30, 136, 229, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ==========================================
   Contact Form Section
   ========================================== */
.contact-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
}

.contact-form-section .card {
    border-radius: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-form-section h2 {
    color: var(--text-dark);
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--water-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--water-blue), var(--water-light));
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

/* ==========================================
   Footer Styles
   ========================================== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--water-blue), var(--water-light), var(--water-blue));
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.text-light-secondary {
    color: #b0b0b0 !important;
}

.footer a:hover {
    color: var(--water-light) !important;
    transform: translateX(5px);
}

.footer hr {
    opacity: 0.2;
}

.footer .fab,
.footer .fas {
    transition: all 0.3s ease;
}

.footer .fab:hover,
.footer .fas:hover {
    color: var(--water-light) !important;
    transform: scale(1.2);
}

/* ==========================================
   Fundraiser Page Styles
   ========================================== */

.fundraiser-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.fundraiser-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.fundraiser-hero h1,
.fundraiser-hero p {
    position: relative;
    z-index: 1;
}

.fundraiser-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.fundraising-widget-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.fundraising-widget {
    position: relative;
    min-height: 900px;
}

.fundraising-widget iframe {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.support-icon {
    transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.impact-stat {
    padding: 1rem;
}

.impact-stat h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.5rem;
}

.impact-section .card {
    border-radius: 20px;
    background: white;
}

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

.support-card {
    animation: slideInUp 0.6s ease-out;
}

.support-card:nth-child(1) {
    animation-delay: 0.1s;
}

.support-card:nth-child(2) {
    animation-delay: 0.2s;
}

.support-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ==========================================
   Booking FAQ Page Styles
   ========================================== */

.booking-hero {
    background: linear-gradient(rgba(30, 136, 229, 0.3), rgba(30, 136, 229, 0.5)),
                url('https://web.archive.org/web/20231001093245im_/http://www.whatsupuk.com/uploads/8/7/3/0/87303656/background-images/1666004842.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 136, 229, 0.2);
}

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

.booking-info-box {
    background: rgba(233, 207, 118, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: #2a2a2a;
    animation: fadeInUp 0.8s ease-out;
}

.booking-info-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.booking-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.booking-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.schedule-section {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.schedule-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--water-blue);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.schedule-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.schedule-card ul {
    margin-left: 1.5rem;
}

.schedule-card li {
    margin-bottom: 0.5rem;
}

.btn-book-now {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5);
}

.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--water-blue), var(--water-light));
    color: white;
    box-shadow: none;
}

.accordion-button:hover {
    background: linear-gradient(135deg, var(--water-light), var(--water-blue));
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    line-height: 1.8;
}

.accordion-body ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.accordion-body li {
    margin-bottom: 0.75rem;
}

.accordion-body strong {
    color: var(--text-dark);
}

.accordion-body a {
    color: var(--water-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-body a:hover {
    color: var(--water-light);
    text-decoration: underline;
}

.text-warning {
    background: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    margin-top: 1rem;
}

.accordion-item {
    animation: fadeInUp 0.5s ease-out;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.15s; }
.accordion-item:nth-child(3) { animation-delay: 0.2s; }
.accordion-item:nth-child(4) { animation-delay: 0.25s; }
.accordion-item:nth-child(5) { animation-delay: 0.3s; }
.accordion-item:nth-child(6) { animation-delay: 0.35s; }
.accordion-item:nth-child(7) { animation-delay: 0.4s; }
.accordion-item:nth-child(8) { animation-delay: 0.45s; }
.accordion-item:nth-child(9) { animation-delay: 0.5s; }
.accordion-item:nth-child(10) { animation-delay: 0.55s; }

/* ==========================================
   Embrace Page Styles (SEND and Adaptive SUP)
   ========================================== */

.embrace-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.embrace-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: wave 15s ease-in-out infinite;
}

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

.embrace-badge {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.embrace-badge i {
    color: #667eea;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

.embrace-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.embrace-hero h2 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(to bottom, white 0%, #f8f9fa 100%);
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.mission-card .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

.embrace-icon-box {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.embrace-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.embrace-icon-box i {
    animation: float 3s ease-in-out infinite;
}

/* Partners Section */
.partners-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--water-blue), var(--water-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--water-blue), var(--water-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.partner-icon i {
    font-size: 2rem;
    color: white;
}

.partner-card:hover .partner-icon {
    transform: rotate(360deg) scale(1.1);
}

.partner-card h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partner-card h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partner-card.coming-soon {
    opacity: 0.7;
}

.partner-card.coming-soon .partner-icon {
    background: linear-gradient(135deg, #6c757d, #495057);
}

/* Booking Info Section */
.booking-info-section {
    background: white;
}

.info-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe9a8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-icon i {
    color: #ff9800;
}

.alert-content h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.alert-content p {
    color: var(--text-dark);
    line-height: 1.8;
}

.alert-content a {
    color: var(--water-blue);
    font-weight: 600;
    text-decoration: none;
}

.alert-content a:hover {
    text-decoration: underline;
}

.alert-content .alert {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ffc107;
}

/* Animations for partner cards */
.partner-card {
    animation: fadeInUp 0.6s ease-out;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }

/* Additional styling for better visual hierarchy */
.partners-section h2 {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.partners-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--water-blue), transparent);
    border-radius: 2px;
}

/* Button hover effects for partner cards */
.partner-card .btn-outline-primary {
    transition: all 0.3s ease;
}

.partner-card:hover .btn-outline-primary {
    background: var(--water-blue);
    color: white;
    border-color: var(--water-blue);
    transform: translateY(-2px);
}

/* ==========================================
   Community Page Styles
   ========================================== */

.community-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fdc830 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.community-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: wave 15s ease-in-out infinite;
}

.community-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.community-badge {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.community-badge i {
    color: #ff6b35;
}

.community-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.community-hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Mission Statement */
.mission-statement {
    animation: fadeInUp 0.8s ease-out;
}

.mission-statement .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.mission-statement h2 {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.mission-statement h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: 2px;
}

/* Programs Section */
.programs-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff6b35;
    animation: fadeInUp 0.6s ease-out;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-top-color: #f7931e;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card:hover .program-icon {
    transform: rotate(360deg) scale(1.1);
}

.program-card h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stagger animation for program cards */
.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }

/* Gallery Section */
.gallery-section {
    background: white;
}

.gallery-section h2 {
    font-weight: 700;
    color: var(--text-dark);
}

/* Community Form Section */
.community-form-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.community-form-section .card {
    border-radius: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.community-form-section h2 {
    color: var(--text-dark);
    font-weight: 700;
}

/* Form hover effects for community page */
.community-form-section .form-control:focus,
.community-form-section .form-select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.community-form-section .btn-primary:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

/* Additional animation for gallery items on community page */
.gallery-section .gallery-item {
    animation: fadeInUp 0.5s ease-out;
}

.gallery-section .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-section .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-section .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-section .gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-section .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-section .gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-section .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-section .gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-section .gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-section .gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-section .gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-section .gallery-item:nth-child(12) { animation-delay: 0.6s; }

/* Success button styling */
.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ==========================================
   Utility Classes
   ========================================== */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded {
    border-radius: 15px !important;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 991px) {
    .navbar-nav {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-fundraising {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

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

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-links .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

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

    .fundraiser-hero h1 {
        font-size: 2rem;
    }

    .support-card {
        margin-bottom: 1rem;
    }

    .fundraising-widget {
        min-height: 950px;
    }

    .impact-stat {
        margin-bottom: 1.5rem;
    }

    .booking-hero {
        padding: 3rem 0;
        min-height: auto;
        background-attachment: scroll;
    }

    .booking-info-box {
        padding: 1.5rem;
    }

    .booking-hero h1 {
        font-size: 2rem;
    }

    .schedule-card {
        padding: 1.5rem;
    }

    .btn-book-now {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .embrace-hero {
        padding: 3rem 0;
    }

    .embrace-hero h1 {
        font-size: 2rem;
    }

    .embrace-hero h2 {
        font-size: 1.5rem;
    }

    .embrace-badge {
        width: 80px;
        height: 80px;
    }

    .embrace-badge i {
        font-size: 2rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .embrace-icon-box {
        margin-top: 2rem;
    }

    .info-alert {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .community-hero {
        padding: 3rem 0;
    }

    .community-hero h1 {
        font-size: 2rem;
    }

    .community-hero p {
        font-size: 1.1rem;
    }

    .community-badge {
        width: 80px;
        height: 80px;
    }

    .community-badge i {
        font-size: 2rem;
    }

    .program-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .mission-statement .lead {
        font-size: 1rem;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--water-blue);
    color: white;
}

::-moz-selection {
    background-color: var(--water-blue);
    color: white;
}





/* ==========================================
   Global Styles
   ========================================== */

:root {
    --primary-color: #0d6efd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-radius: 10px;
}

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

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

/* Logo */
.logo {
    height: 50px;
    width: auto;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-fundraising {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-fundraising:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.text-light-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}

.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-section .card {
    border-radius: 20px;
    overflow: hidden;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(5%) translateY(5%);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   Team Page Styles (supteam.html)
   ========================================== */

.team-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: wave 15s ease-in-out infinite;
}

.team-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.team-badge {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.team-badge i {
    color: #11998e;
}

.team-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.team-hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Team Members Section */
.team-members-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
}

.team-members-section h2 {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.team-members-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #11998e, transparent);
    border-radius: 2px;
}

/* Team Card */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 0.25;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.3);
}

/* Градиенты для карточек */
.gradient-1::before { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2::before { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-3::before { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4::before { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5::before { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-6::before { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.gradient-7::before { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.gradient-8::before { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.gradient-9::before { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.gradient-10::before { background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%); }
.gradient-11::before { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.gradient-12::before { background: linear-gradient(135deg, #f8ff00 0%, #3ad59f 100%); }

/* Team Card Header */
.team-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: rotate(360deg) scale(1.1);
}

.team-avatar i {
    font-size: 2rem;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-initials {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

/* Team Card Body */
.team-card-body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-card-body h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-card-body .role {
    font-size: 1rem;
    font-weight: 600;
    color: #11998e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-body .description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.team-card-body .highlight {
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
    margin-top: auto;
}

.team-card-body strong {
    color: #11998e;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-left: 4px solid #11998e;
    border-radius: 10px;
    margin-top: 1rem;
}

.quote-box i {
    color: #11998e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.quote-box p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Staggered Animation */
.team-card {
    animation: fadeInUp 0.6s ease-out;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.15s; }
.team-card:nth-child(3) { animation-delay: 0.2s; }
.team-card:nth-child(4) { animation-delay: 0.25s; }
.team-card:nth-child(5) { animation-delay: 0.3s; }
.team-card:nth-child(6) { animation-delay: 0.35s; }
.team-card:nth-child(7) { animation-delay: 0.4s; }
.team-card:nth-child(8) { animation-delay: 0.45s; }
.team-card:nth-child(9) { animation-delay: 0.5s; }
.team-card:nth-child(10) { animation-delay: 0.55s; }
.team-card:nth-child(11) { animation-delay: 0.6s; }
.team-card:nth-child(12) { animation-delay: 0.65s; }

/* Responsive */
@media (max-width: 768px) {
    .team-hero {
        padding: 3rem 0;
    }

    .team-hero h1 {
        font-size: 2rem;
    }

    .team-hero p {
        font-size: 1.1rem;
    }

    .team-badge {
        width: 80px;
        height: 80px;
    }

    .team-badge i {
        font-size: 2rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .team-card-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .team-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .team-initials {
        font-size: 2rem;
    }

    .team-card-body h3 {
        font-size: 1.25rem;
    }

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

    .quote-box {
        padding: 1rem;
    }
}

/* Decorative elements */
.team-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(17, 153, 142, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.team-card:hover::after {
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
}