/* Base Styles */
:root {
    --primary-color: #00d2d3;     /* Teal - was purple */
    --primary-light: #7efff5;    /* Light teal - was light purple */
    --secondary-color: #feca57;   /* Golden yellow - was red */
    --secondary-light: #ffdd59;   /* Light yellow - was light red */
    --accent1: #1dd1a1;           /* Vibrant green */
    --accent1-light: #7bed9f;     /* Light green */
    --accent2: #ff9ff3;           /* Pink */
    --accent2-light: #fecde6;     /* Light pink */
    --accent3: #54a0ff;           /* Blue */
    --accent3-light: #70c1ff;     /* Light blue */
    --text-dark: #2d3436;         /* Almost black */
    --text-light: #636e72;        /* Medium gray */
    --white: #fff;                /* White */
    --light-bg: #e7fffd;          /* Very light teal tint */
    --border-color: #dfe6e9;      /* Light gray */
    --success-color: #1dd1a1;     /* Vibrant green */
    --upcoming-color: #feca57;    /* Golden yellow */
    --shadow: 0 8px 20px rgba(0, 210, 211, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.primary-btn {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.primary-btn:hover {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.secondary-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    color: var(--white);
}

.secondary-btn:hover {
    background: linear-gradient(to right, var(--secondary-light), var(--secondary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Header Styles */
header {
    background-color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 12px 0 !important;
    border-bottom: 3px solid var(--primary-color) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

header.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    margin-right: 20px;
}

.logo {
    max-height: 120px;
    width: auto;
    margin-right: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 6px 10px rgba(0, 210, 211, 0.4));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 8px rgba(0, 210, 211, 0.4));
}

header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

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

nav ul {
    display: flex;
    gap: 15px;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    background-size: 200% auto;
    font-size: 0.95rem;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to right, var(--accent1-light), var(--accent1));
    border-radius: 30px;
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

nav a:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 210, 211, 0.3);
}

nav a:hover::before {
    height: 100%;
    opacity: 1;
}

nav a:nth-child(2n)::before {
    background: linear-gradient(to right, var(--accent2-light), var(--accent2));
}

nav a:nth-child(2n):hover {
    box-shadow: 0 5px 15px rgba(254, 202, 87, 0.3);
}

nav a:nth-child(3n)::before {
    background: linear-gradient(to right, var(--accent3-light), var(--accent3));
}

nav a:nth-child(3n):hover {
    box-shadow: 0 5px 15px rgba(29, 209, 161, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 210, 211, 0.7), rgba(254, 202, 87, 0.7)), url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--white);
    text-align: center;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(29, 209, 161, 0.4), transparent 40%),
               radial-gradient(circle at bottom left, rgba(84, 160, 255, 0.3), transparent 40%);
    z-index: 0;
    animation: pulse-bg 8s infinite alternate;
}

@keyframes pulse-bg {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.9;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.4) 0%, rgba(254, 202, 87, 0.3) 100%);
    z-index: 1;
}

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

.hero h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
    color: var(--white);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 800;
}

.hero .highlight {
    color: var(--secondary-color);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero .highlight-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.animated-text {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    min-width: 150px;
}

.animated-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 210, 211, 0.7), rgba(254, 202, 87, 0.7));
    border-left: 3px solid var(--secondary-color);
    animation: typing 3s steps(10) infinite;
}

@keyframes typing {
    0%, 10% {
        width: 100%;
    }
    30%, 70% {
        width: 0;
    }
    90%, 100% {
        width: 100%;
    }
}

.hero h2::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 30px;
    background: linear-gradient(to right, var(--accent2), var(--accent1));
    bottom: -15px;
    left: -10%;
    z-index: -1;
    border-radius: 30px;
    filter: blur(15px);
    opacity: 0.7;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        filter: blur(15px);
    }
    100% {
        opacity: 0.8;
        filter: blur(20px);
    }
}

.hero h2::after {
    left: 50%;
    transform: translateX(-50%);
    height: 6px;
    width: 100px;
    background: linear-gradient(to right, var(--accent1), var(--accent2));
    border-radius: 3px;
}

.hero p {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease-out;
    line-height: 1.8;
    font-weight: 300;
}

.hero .btn {
    margin: 0 15px 15px;
    animation: fadeInUp 1.4s ease-out;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent1), var(--accent2));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.hero .primary-btn::before {
    background: linear-gradient(45deg, var(--accent1), var(--accent3));
}

.hero .secondary-btn::before {
    background: linear-gradient(45deg, var(--accent2), var(--secondary-color));
}

.hero .btn:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

.hero .btn:hover::before {
    opacity: 1;
}

.hero .btn:active {
    transform: translateY(-3px) scale(0.98);
}

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

/* Calendar Section */
.calendar-section {
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.05), rgba(0, 210, 211, 0.1));
    position: relative;
    overflow: hidden;
}

.calendar-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent1-light) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    opacity: 0.4;
    z-index: 0;
    animation: float 15s infinite alternate ease-in-out;
}

.calendar-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent2-light) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    opacity: 0.4;
    z-index: 0;
    animation: float 10s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 20px) scale(1.1);
    }
    100% {
        transform: translate(10px, 40px) scale(1);
    }
}

.calendar-section .container {
    position: relative;
    z-index: 1;
}

.calendar-container {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(106, 61, 232, 0.15);
    padding: 50px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(106, 61, 232, 0.1);
    backdrop-filter: blur(5px);
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent3-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.calendar-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--accent1), var(--accent2));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 210, 211, 0.3);
}

.calendar-header h3 {
    font-size: 2.4rem;
    margin: 0 30px;
    background: linear-gradient(to right, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 210, 211, 0.2);
    letter-spacing: 1px;
    font-weight: 700;
}

.calendar-nav {
    background: none;
    border: 2px solid transparent;
    font-size: 1.5rem;
    color: var(--accent1);
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(0, 210, 211, 0.1);
    box-shadow: 0 8px 20px rgba(0, 210, 211, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calendar-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent1), var(--accent1-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.calendar-nav:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 210, 211, 0.25);
    border-color: var(--accent1-light);
}

.calendar-nav:hover::before {
    opacity: 1;
}

.quarters-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    padding-bottom: 10px;
}

.quarter {
    background-color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 210, 211, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 200px;
    border: 1px solid rgba(0, 210, 211, 0.1);
}

.quarter:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    z-index: 2;
}

.quarter:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    z-index: 2;
}

.quarter:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--accent1), var(--accent1-light));
    z-index: 2;
}

.quarter:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--accent3), var(--accent3-light));
    z-index: 2;
}

.quarter {
    cursor: pointer;
}

.quarter:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 211, 0.15);
}

.quarter:hover h4 {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.view-details-btn {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 210, 211, 0.2);
    opacity: 0;
    transform: translateY(10px);
}

.quarter:hover .view-details-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 210, 211, 0.3);
}

.quarter h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.event-date {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.event-date::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 3px;
    opacity: 0.7;
}

.quarter:nth-child(2) .event-date::after {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
}

.quarter:nth-child(3) .event-date::after {
    background: linear-gradient(to right, var(--accent1), var(--accent1-light));
}

.quarter:nth-child(4) .event-date::after {
    background: linear-gradient(to right, var(--accent3), var(--accent3-light));
}

.event-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    background-color: var(--light-bg);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 210, 211, 0.1);
    transition: all 0.3s ease;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.event-status.upcoming {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    color: #333;
    animation: pulse 2s infinite;
}

.event-status.completed {
    background: linear-gradient(to right, var(--accent1), var(--accent1-light));
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 202, 87, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(254, 202, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 202, 87, 0);
    }
}

/* Event Modal Styles */
.event-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 70px auto;
    padding: 25px;
    width: 85%;
    max-width: 750px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
    border: 1px solid rgba(0, 210, 211, 0.1);
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-bg);
}

/* Modal Styles */
.modal-description {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.modal-description p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: justify;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.modal-item {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.modal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 210, 211, 0.15);
}

.modal-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-item h4 i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.modal-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.modal-btn {
    min-width: 180px;
    text-align: center;
}

/* RSVP Section */
.rsvp-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%234e54c8" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.rsvp-section .container {
    position: relative;
    z-index: 1;
}

.rsvp-form {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rsvp-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.rsvp-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 0 20px 0 100%;
    opacity: 0.1;
    z-index: 0;
}

.rsvp-section h2 {
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out;
}

.rsvp-section p {
    animation: fadeIn 1.2s ease-out;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d0d4e4;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.2);
    transform: translateY(-2px);
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.form-group:focus-within label {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 300%;
    height: 300%;
}

/* Donation Section */
.donate-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, var(--secondary-light), var(--secondary-color));
    border-radius: 50%;
    top: -200px;
    left: -200px;
    opacity: 0.1;
    z-index: 0;
}

.donate-section .container {
    position: relative;
    z-index: 1;
}

.donate-section h2 {
    animation: slideInLeft 1s ease-out;
}

.donate-section > .container > p {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.donation-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.stat {
    text-align: center;
    padding: 30px 25px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.1) 0%, rgba(143, 148, 251, 0.05) 100%);
    z-index: -1;
}

.stat:hover {
    transform: translateZ(20px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat i {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    transform: translateZ(10px);
    transition: all 0.3s ease;
}

.stat:hover i {
    transform: translateZ(20px) scale(1.1);
}

.stat span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    transform: translateZ(5px);
    transition: all 0.3s ease;
}

.stat:hover span {
    transform: translateZ(15px);
}

.stat p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
    transform: translateZ(5px);
}

.donation-categories {
    margin-bottom: 70px;
    position: relative;
}

.donation-categories h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.donation-categories h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.category {
    background-color: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transition: height 0.4s ease;
    z-index: -1;
}

.category:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category:hover::before {
    height: 100%;
    opacity: 0.05;
}

.category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category:hover i {
    transform: scale(1.2) rotate(10deg);
}

.category h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.category:hover h4 {
    color: var(--primary-color);
}

.category p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.donation-form {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.donation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    border-radius: 0 0 150px 0;
    opacity: 0.1;
    z-index: 0;
}

.donation-form h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.donation-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    border-radius: 2px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
    width: auto;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.05) 0%, rgba(143, 148, 251, 0.02) 100%);
    border-radius: 50%;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    perspective: 1000px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateY(0);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateZ(20px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

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

.testimonials {
    position: relative;
    z-index: 1;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    perspective: 1000px;
}

.testimonial {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(78, 84, 200, 0.1);
    line-height: 1;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    bottom: 0;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(78, 84, 200, 0.1);
    line-height: 1;
}

.testimonial:hover {
    transform: translateZ(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.testimonial-author::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
}

.testimonial:hover .testimonial-author::after {
    width: 100%;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    perspective: 1000px;
}

.slider-nav {
    background: none;
    border: 2px solid transparent;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.slider-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.slider-nav:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.slider-nav:hover::before {
    opacity: 1;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background-color: transparent;
    transform: scale(1.3);
    box-shadow: 0 3px 10px rgba(78, 84, 200, 0.3);
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--text-dark), #1a4b4b);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent1), var(--secondary-color));
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(78, 84, 200, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

footer h3:hover::after {
    width: 100%;
}

.footer-about p {
    line-height: 1.9;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    animation: fadeIn 1.2s ease-out;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    z-index: 1;
}

.footer-contact p:hover {
    transform: translateX(5px);
}

.footer-contact p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-light));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.footer-contact p:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    transform: scale(1.2);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover i {
transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom a {
    color: var(--secondary-light);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 210, 211, 0.3);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 210, 211, 0.4);
}

.scroll-top i {
    font-size: 20px;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 210, 211, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-chat a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 210, 211, 0.5);
}

.whatsapp-chat i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-chat span {
    font-weight: 500;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero .btn {
        display: block;
        margin: 10px auto;
        max-width: 80%;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    section p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .donation-stats {
        gap: 20px;
    }
    
    .stat {
        min-width: 140px;
        padding: 15px;
    }
    
    .stat i {
        font-size: 2rem;
    }
    
    .stat span {
        font-size: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .calendar-header h3 {
        font-size: 1.5rem;
    }
    
    .quarters-container {
        grid-template-columns: 1fr;
    }
    
    .donation-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 250px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    /* Add to styles.css */
    #year-feedback {
        color: #2c3e50;
        font-size: 0.9rem;
        margin-top: 8px;
        font-style: italic;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    #year-feedback.show {
        opacity: 1;
    }
    
    
}

