/* ==========================================================================
   VOLUNTARIADO EN ÁFRICA - MAIN STYLESHEET
   Optimized for performance, accessibility, and conversions
   ========================================================================== */

/* CSS Variables */
:root {
    --terracotta: #C65D3B;
    --terracotta-dark: #A84E30;
    --terracotta-light: #E8A090;
    --sage: #6B8F71;
    --sage-dark: #4A6B50;
    --sage-light: #A8C5AC;
    --sand: #F5F1EB;
    --sand-dark: #E8E2D9;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --charcoal-lighter: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--charcoal);
    background: var(--sand);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--charcoal);
}

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

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

ul, ol {
    list-style: none;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 241, 235, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition-normal);
}

.nav.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.nav-logo-text {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    color: var(--charcoal-light);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition-normal);
}

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

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

.nav-cta {
    background: var(--terracotta) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: all var(--transition-normal) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 93, 59, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: inherit;
    text-align: center;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    box-shadow: 0 4px 20px rgba(198, 93, 59, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 93, 59, 0.4);
}

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

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

.btn-white {
    background: white;
    color: var(--terracotta);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-sage {
    background: var(--sage);
    color: white;
}

.btn-sage:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   TAGS
   ========================================================================== */
.tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(107, 143, 113, 0.15);
    color: var(--sage-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
}

.tag.light {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--charcoal-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    max-width: fit-content;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: -8px;
    border: 2px solid white;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-social-proof p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image > img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-float-icon {
    font-size: 1.8rem;
}

.hero-float-card strong {
    display: block;
    color: var(--terracotta);
    font-size: 1.1rem;
}

.hero-float-card span {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* Pulse Dot */
.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-dot-small {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-dot-small.green {
    background: #22c55e;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--charcoal-light);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

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

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand-dark);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.trust-item svg {
    color: var(--sage);
    flex-shrink: 0;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .tag {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--charcoal-light);
}

/* ==========================================================================
   WHY SECTION
   ========================================================================== */
.why-section {
    padding: 100px 0;
    background: white;
}

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

.why-card {
    background: var(--sand);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */
.projects-section {
    padding: 100px 0;
    background: var(--sand);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-card-link {
    display: block;
}

.project-card-image {
    position: relative;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
}

.project-card-price.sage {
    color: var(--sage-dark);
}

.project-card-price.charcoal {
    color: var(--charcoal);
}

.project-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--terracotta);
    color: white;
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.project-card-content {
    padding: 28px;
}

.project-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.project-card:hover h3 {
    color: var(--terracotta);
}

.project-card-desc {
    color: var(--charcoal-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.project-card-tags span {
    padding: 6px 12px;
    background: var(--sand);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

.project-card-cta {
    margin-bottom: 16px;
}

.project-card-cta .btn {
    width: 100%;
}

.project-card-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

/* Expansion Note */
.expansion-note {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(198, 93, 59, 0.08), rgba(107, 143, 113, 0.08));
    border: 1px dashed rgba(198, 93, 59, 0.3);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.expansion-note p {
    color: var(--charcoal-light);
    margin-bottom: 8px;
}

.expansion-note p:last-child {
    margin-bottom: 0;
}

.expansion-note a {
    color: var(--terracotta);
    font-weight: 600;
}

.expansion-note a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-section {
    padding: 100px 0;
    background: var(--charcoal);
    color: white;
}

.how-section .section-header h2 {
    color: white;
}

.how-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.how-step {
    text-align: center;
    padding: 24px;
}

.how-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.how-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}

.how-step p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--sand);
    padding: 32px;
    border-radius: var(--border-radius-lg);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--charcoal);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

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

/* ==========================================================================
   FAQ PREVIEW
   ========================================================================== */
.faq-preview {
    padding: 100px 0;
    background: var(--sand);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 24px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--terracotta);
    transition: transform var(--transition-normal);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 32px 24px;
    color: var(--charcoal-light);
    line-height: 1.7;
}

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

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--terracotta), var(--sage));
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: white;
}

.cta-section > .container > .cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 80px 0 32px;
    background: var(--charcoal);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

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

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.footer ul a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
}

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

/* ==========================================================================
   WHATSAPP STICKY BUTTON
   ========================================================================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-in {
    animation: slideIn 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

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

/* ==========================================================================
   PAGE HERO (for subpages)
   ========================================================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: white;
    text-align: center;
}

.page-hero .tag {
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   CONTENT SECTIONS (for subpages)
   ========================================================================== */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--charcoal-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-text ul {
    margin: 20px 0;
}

.content-text li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--charcoal-light);
}

.content-text li::before {
    content: '✓';
    color: var(--sage);
    font-weight: bold;
    flex-shrink: 0;
}

.content-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   PRICING BOX
   ========================================================================== */
.pricing-box {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.pricing-box:hover {
    border-color: var(--terracotta);
}

.pricing-box .price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.pricing-box .price-note {
    color: var(--charcoal-light);
    margin-bottom: 24px;
}

.pricing-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.pricing-includes {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-includes h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--charcoal-light);
}

.pricing-includes li svg {
    color: var(--sage);
    flex-shrink: 0;
}

.pricing-excludes {
    text-align: left;
    padding-top: 16px;
    border-top: 1px solid var(--sand-dark);
}

.pricing-excludes h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--charcoal-light);
}

.pricing-excludes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--charcoal-lighter);
}

/* ==========================================================================
   DATE CARDS
   ========================================================================== */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.date-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--sand-dark);
    transition: all var(--transition-normal);
}

.date-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-3px);
}

.date-card.featured {
    border-color: var(--terracotta);
    background: linear-gradient(135deg, rgba(198, 93, 59, 0.05), rgba(107, 143, 113, 0.05));
}

.date-card .date {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.date-card .status {
    font-size: 0.85rem;
    color: var(--sage);
}

.date-card .status.limited {
    color: var(--terracotta);
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(198, 93, 59, 0.1);
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image > img {
        height: 400px;
    }
    
    .hero-float-card {
        left: 20px;
        bottom: -10px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--sand);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-items {
        gap: 24px;
    }
    
    .trust-item span {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-sticky {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .nav-logo-text {
        display: none;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .why-grid,
    .how-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-box {
        padding: 24px;
    }
    
    .pricing-box .price {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   ADDED: Logo image, dropdown nav, initiative association branding
   ========================================================================== */

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
}

.nav-logo-tagline {
    display: block;
    font-size: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--charcoal-lighter);
    letter-spacing: 0.02em;
    margin-top: 1px;
    line-height: 1;
}

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

/* Dropdown nav */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a::after {
    display: none !important;
}

.nav-dropdown-arrow {
    transition: transform 0.2s;
    font-size: 0.7rem;
    margin-left: 2px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 240px;
    padding: 8px;
    z-index: 200;
}

/* Transparent bridge covers the 12px gap so hover isn't lost */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown:hover .nav-dropdown-arrow {
        transform: rotate(180deg);
    }
}
    list-style: none;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--charcoal-light) !important;
    transition: background 0.2s;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--sand);
    color: var(--terracotta) !important;
}

@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--sand);
        margin: 4px 0;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown.open .nav-dropdown-arrow {
        transform: rotate(180deg);
    }
}
