/* Sample3.css - Pink & Green Theme */

/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pink Color Palette */
    --pink-primary: #E83F8E;
    --pink-light: #FF7EB9;
    --pink-dark: #C2185B;
    --pink-pastel: #FFD6E7;
    
    /* Green Color Palette */
    --green-primary: #2E8B57;
    --green-light: #4CAF50;
    --green-dark: #1B5E20;
    --green-pastel: #D4EDDA;
    
    /* Neutral Colors */
    --black: #121212;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    
    /* Additional Colors */
    --gold: #FFD700;
    --purple: #9C27B0;
    
    /* Design Elements */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .logo-text {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background-color: var(--pink-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232, 63, 142, 0.3);
}

.btn-primary:hover {
    background-color: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 63, 142, 0.4);
}

.btn-secondary {
    background-color: var(--green-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.btn-secondary:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
}

.btn-outline:hover {
    background-color: var(--pink-primary);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-highlight {
    color: var(--pink-primary);
    position: relative;
}

.section-title-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(232, 63, 142, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.section-subtitle {
    color: var(--gray-medium);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.loader-logo i {
    font-size: 3rem;
    color: var(--pink-primary);
    margin-bottom: 15px;
}

.loader-logo span {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--pink-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header */
.header-top {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 25px;
}

.header-contact a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact a:hover {
    color: var(--pink-light);
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.header-social a:hover {
    color: var(--pink-light);
    transform: translateY(-2px);
}

.header-main {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.logo-text h1 span {
    color: var(--pink-primary);
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--pink-primary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-primary);
}

.nav-button {
    padding: 12px 25px !important;
    border-radius: var(--border-radius);
    font-weight: 600;
    background-color: var(--green-primary);
    color: var(--white);
}

.nav-button:hover {
    background-color: var(--green-dark);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--pink-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 214, 231, 0.2) 0%, rgba(212, 237, 218, 0.2) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-flower {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: radial-gradient(circle, var(--pink-primary) 0%, transparent 70%);
}

.hero-flower-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.hero-flower-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    background: radial-gradient(circle, var(--green-primary) 0%, transparent 70%);
}

.hero-flower-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--pink-primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(232, 63, 142, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    z-index: 2;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    text-align: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stat-content {
    flex-grow: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-medium);
    margin-bottom: 0;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-frame:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 30px;
}

.about-image-overlay h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 5px;
}

.about-image-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.about-text h3 {
    color: var(--green-dark);
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-features {
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-content p {
    color: var(--gray-medium);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--pink-primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--pink-primary);
    margin-bottom: 25px;
}

.service-content h3 {
    color: var(--green-dark);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.service-content p {
    color: var(--gray-medium);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-list i {
    color: var(--green-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.service-link {
    color: var(--pink-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* Stories Section */
.stories-section {
    padding: 100px 0;
    background-color: var(--white);
}

.stories-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.story-featured {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    display: flex;
    flex-direction: column;
}

.story-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-featured:hover .story-image img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.story-quote {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
}

.story-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-content h3 {
    color: var(--green-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.story-excerpt {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.story-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.author-info h4 {
    color: var(--black);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-medium);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.story-read-more {
    color: var(--pink-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-read-more:hover {
    gap: 12px;
}

/* Stories Sidebar */
.stories-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-title {
    color: var(--green-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.sidebar-story {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sidebar-story:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.sidebar-story-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-story-content {
    flex-grow: 1;
}

.sidebar-story-content h4 {
    color: var(--black);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.sidebar-story-content p {
    color: var(--gray-medium);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.story-link {
    color: var(--pink-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-view-all {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: var(--green-primary);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 10px;
}

.btn-view-all:hover {
    background-color: var(--green-dark);
    color: var(--white);
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 25px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 15px;
    flex-shrink: 0;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex-grow: 1;
}

.event-content h3 {
    color: var(--green-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.event-info {
    color: var(--gray-medium);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.event-info i {
    color: var(--pink-primary);
}

.event-content p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.event-register {
    color: var(--pink-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.event-register:hover {
    gap: 12px;
}

.events-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    color: var(--white);
    border-radius: var(--border-radius-lg);
}

.events-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--green-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--gray-medium);
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-cta {
    background-color: var(--gray-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-top: 40px;
}

.contact-cta h4 {
    color: var(--green-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-cta p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
}

.contact-form-container h3 {
    color: var(--green-dark);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eaeaea;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 63, 142, 0.1);
}

/* Footer */
.footer {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo .logo {
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--pink-primary);
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: var(--pink-light);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
}

.copyright a:hover {
    color: var(--pink-light);
}

.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-newsletter h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: var(--white);
    width: 200px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--pink-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--pink-dark);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.modal-header h3 {
    color: var(--green-dark);
    margin-bottom: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--pink-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-intro {
    color: var(--gray-medium);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.amount-option {
    border: 2px solid #eaeaea;
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.amount-option:hover {
    border-color: var(--pink-light);
    background-color: rgba(232, 63, 142, 0.05);
}

.amount-option.active {
    border-color: var(--pink-primary);
    background-color: rgba(232, 63, 142, 0.1);
}

.amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-primary);
    margin-bottom: 8px;
}

.amount-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.custom-amount {
    margin-bottom: 30px;
}

.custom-amount label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-dark);
}

.custom-amount input {
    width: 100%;
    padding: 16px;
    border: 2px solid #eaeaea;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--pink-primary);
}

.donation-type {
    margin-bottom: 30px;
}

.donation-type h4 {
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.type-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.type-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.type-option:hover {
    border-color: var(--green-light);
}

.type-option input[type="radio"] {
    margin: 0;
}

.type-label {
    flex-grow: 1;
    font-weight: 500;
}

.type-badge {
    background-color: var(--green-primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-donate {
    margin-bottom: 20px;
}

.donation-security {
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.donation-security i {
    color: var(--green-primary);
    margin-right: 8px;
}

/* Floating Donate Button */
.floating-donate {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-donate-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 63, 142, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(232, 63, 142, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 63, 142, 0);
    }
}

.floating-donate-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-primary));
}

.floating-donate-btn i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-heavy);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .stories-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .floating-donate-btn span {
        display: none;
    }
    
    .floating-donate-btn {
        padding: 20px;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        justify-content: center;
    }
    
    .floating-donate-btn i {
        font-size: 1.5rem;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 70px 0;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 0;
    }
}