/* Variables CSS pour les couleurs */
:root {
    --primary-color: #137fec;
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --yellow-400: #fbbf24;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

/* Layout responsive */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-800);
}

.logo svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: bold;
}

/* Navigation */
nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #0f6bd6;
    transform: translateY(-1px);
}

.hero-btn {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    margin-top: 2rem;
}

/* Fix for bg-primary in Tailwind classes */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Menu mobile */
.mobile-menu-button {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 1.5rem;
    height: 2px;
    background: var(--gray-600);
    transition: all 0.3s;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.mobile-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Hero section */
.hero {
    position: relative;
    display: flex;
    min-height: 60vh;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 3rem 1rem;
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero .btn-primary {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

/* Cards */
.card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    color: var(--primary-color);
}

.card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-800);
}

.card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonial {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    background: var(--gray-50);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--gray-800);
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.stars {
    display: flex;
    gap: 0.125rem;
    color: var(--yellow-400);
}

.testimonial-text {
    color: var(--gray-700);
    font-style: italic;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: var(--gray-800);
    color: var(--gray-400);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-info {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.75rem;
    text-align: center;
}

/* Responsive design */
@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
    
    header {
        padding: 1rem 2.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero .btn-primary {
        font-size: 1.125rem;
        padding: 0.75rem 2rem;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .grid {
        gap: 2rem;
    }
    
    .grid-md-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h4 {
        font-size: 1.25rem;
    }
    
    .card p {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .testimonial-name {
        font-size: 1.125rem;
    }
    
    .testimonial-date {
        font-size: 0.875rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .copyright {
        text-align: right;
    }
    
    /* Responsive utilities for medium screens */
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:text-lg {
        font-size: 1.125rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:h-12 {
        height: 3rem;
    }
    
    .md\:h-14 {
        height: 3.5rem;
    }
    
    .md\:w-14 {
        width: 3.5rem;
    }
    
    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .md\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .md\:p-6 {
        padding: 1.5rem;
    }
    
    .md\:gap-8 {
        gap: 2rem;
    }
    
    .md\:gap-6 {
        gap: 1.5rem;
    }
    
    .md\:gap-5 {
        gap: 1.25rem;
    }
    
    .md\:mb-12 {
        margin-bottom: 3rem;
    }
    
    .md\:mb-8 {
        margin-bottom: 2rem;
    }
    
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
    }
    
    .md\:text-base {
        font-size: 1rem;
    }
    
    .md\:text-sm {
        font-size: 0.875rem;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:justify-start {
        justify-content: flex-start;
    }
    
    .md\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h2 {
        font-size: 3.75rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .grid-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Large screen utilities */
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
    }
    
    .lg\:text-xl {
        font-size: 1.25rem;
    }
}

/* Utility classes */
.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-white {
    background-color: white;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Grid utilities */
.grid {
    display: grid;
}

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

/* Sizing */
.min-h-\[60vh\] {
    min-height: 60vh;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.w-12 {
    width: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.w-14 {
    width: 3.5rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

/* Positioning */
.relative {
    position: relative;
}

/* Backgrounds and covers */
.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

/* Spacing */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

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

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Colors */
.text-white {
    color: white;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-primary {
    color: var(--primary-color);
}

.text-yellow-400 {
    color: var(--yellow-400);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-gray-200 {
    background-color: var(--gray-200);
}

.bg-gray-800 {
    background-color: var(--gray-800);
}

/* Borders */
.border {
    border-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-solid {
    border-style: solid;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-full {
    border-radius: 50%;
}

/* Shadows */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Transitions */
.transition-colors {
    transition: color 0.15s ease-in-out;
}

.transition-shadow {
    transition: box-shadow 0.15s ease-in-out;
}

.transition-all {
    transition: all 0.15s ease-in-out;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Hover states */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:bg-opacity-90:hover {
    background-color: rgba(19, 127, 236, 0.9);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:text-white:hover {
    color: white;
}

.hover\:text-primary:hover {
    color: var(--primary-color);
}

/* Object fit */
.object-cover {
    object-fit: cover;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Display utilities */
.inline-flex {
    display: inline-flex;
}

/* Min/Max width */
.min-w-\[84px\] {
    min-width: 84px;
}

.max-w-\[480px\] {
    max-width: 480px;
}

/* Flex wrap */
.flex-wrap {
    flex-wrap: wrap;
}

/* Contact section specific styles */
#contact .text-center {
    text-align: center;
}

#contact .w-16 {
    width: 4rem;
}

#contact .h-16 {
    height: 4rem;
}

#contact .rounded-full {
    border-radius: 50%;
}

#contact .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

#contact .mb-4 {
    margin-bottom: 1rem;
}

#contact .mb-2 {
    margin-bottom: 0.5rem;
}

#contact .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

#contact .font-bold {
    font-weight: 700;
}

#contact .text-gray-800 {
    color: var(--gray-800);
}

#contact .text-gray-600 {
    color: var(--gray-600);
}

#contact .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

#contact .grid {
    display: grid;
}

#contact .gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .md\:gap-8 {
        gap: 2rem;
    }
}

#contact .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    #contact .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    #contact .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

#contact .mt-12 {
    margin-top: 3rem;
}

#contact .mb-6 {
    margin-bottom: 1.5rem;
}

/* Events section specific styles */
#events .grid {
    display: grid;
}

#events .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

#events .gap-8 {
    gap: 2rem;
}

#events .flex-col {
    flex-direction: column;
}

#events .gap-4 {
    gap: 1rem;
}

#events .text-center {
    text-align: center;
}

#events .mb-3 {
    margin-bottom: 0.75rem;
}

#events .space-y-2 > * + * {
    margin-top: 0.5rem;
}

#events .mb-4 {
    margin-bottom: 1rem;
}

#events .flex-1 {
    flex: 1 1 0%;
}

#events .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

#events .leading-relaxed {
    line-height: 1.625;
}

#events .mt-3 {
    margin-top: 0.75rem;
}

#events .mt-4 {
    margin-top: 1rem;
}

#events .w-full {
    width: 100%;
}

#events .h-10 {
    height: 2.5rem;
}

#events .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    #events .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    #events .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    padding: 2rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    width: 100%;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
}

.dot:hover {
    background: #9ca3af;
}

.dot.active:hover {
    background: var(--primary);
}

/* Fix for flex layout classes */
.testimonial-card .flex {
    display: flex;
}

.testimonial-card .items-center {
    align-items: center;
}

.testimonial-card .gap-4 {
    gap: 1rem;
}

.testimonial-card .flex-1 {
    flex: 1 1 0%;
}

.testimonial-card .w-12 {
    width: 3rem;
}

.testimonial-card .h-12 {
    height: 3rem;
}

.testimonial-card .rounded-full {
    border-radius: 50%;
}

.testimonial-card .justify-center {
    justify-content: center;
}

.testimonial-card .bg-primary {
    background: var(--primary);
}

.testimonial-card .text-white {
    color: white;
}

.testimonial-card .font-bold {
    font-weight: 700;
}

.testimonial-card .mb-4 {
    margin-bottom: 1rem;
}

.testimonial-card .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.testimonial-card .font-semibold {
    font-weight: 600;
}

.testimonial-card .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.testimonial-card .text-gray-800 {
    color: var(--gray-800);
}

.testimonial-card .text-gray-500 {
    color: var(--gray-500);
}

.testimonial-card .text-gray-700 {
    color: var(--gray-700);
}

.testimonial-card .text-yellow-400 {
    color: #fbbf24;
}

.testimonial-card .leading-relaxed {
    line-height: 1.625;
}

.testimonial-card .italic {
    font-style: italic;
}

/* Event Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #374151;
}

.popup-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.popup-body {
    padding: 2rem;
}

.popup-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--primary);
    font-weight: 500;
}

.popup-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 0.75rem;
    color: #92400e;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header,
    .popup-body {
        padding: 1.5rem;
    }
    
    .contact-methods {
        gap: 0.75rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
}

/* Donation Popup Styles */
.donation-intro {
    margin-bottom: 2rem;
}

.donation-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.donation-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.donation-impact {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 1rem;
    color: #065f46;
    font-weight: 500;
    text-align: center;
    margin: 1.5rem 0 0 0;
}

.donation-action {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.donation-secure {
    color: #059669;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.donation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0070ba;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.donation-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

.paypal-icon {
    font-size: 1.2rem;
}

.donation-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.slider-btn:hover {
    background: var(--primary-dark, #1e40af);
}

.slider-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s;
}

.slider-dot.active {
    background: var(--primary);
}

/* Italic */
.italic {
    font-style: italic;
}
