/* ===================================
   BAMBI FOUNDATION ALBANIA
   High-Conversion Flight Volunteer & Donation Website
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #FF6B6B;
    --primary-dark: #E63946;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    
    /* Neutrals */
    --dark: #1A1A2E;
    --dark-light: #2D3047;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll on all sections */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 50px;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: linear-gradient(120deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-donate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
}

.btn-donate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.5);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    white-space: nowrap;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-donate {
    background: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-nav-donate:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(230, 57, 70, 0.7)),
                url('https://images.unsplash.com/photo-1444212477490-ca407925329e?w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% { top: 5px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reveal Animations */
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Story Section */
.story-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.image-caption {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Impact Section */
.impact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.impact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.impact-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.impact-list {
    text-align: left;
    margin-top: 20px;
}

.impact-list li {
    padding: 10px 0;
    color: var(--dark);
    font-weight: 500;
}

/* Volunteer Section */
.volunteer-section {
    padding: var(--section-padding);
    background: #f2f4f8;
    color: var(--dark);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.volunteer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 12% 15%, rgba(255, 107, 107, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.volunteer-section * {
    max-width: 100%;
}

.volunteer-section .container {
    background: #f8f9fc;
    border: 1px solid #d9deea;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 8px 30px rgba(11, 18, 41, 0.06);
}

.volunteer-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.volunteer-badge {
    display: inline-block;
    background: #ffe8df;
    color: #d84c20;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 20px;
    border: 1px solid #ffd2c1;
}

.volunteer-subtitle {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d274a;
}

.volunteer-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.65;
    color: #314167;
}

.volunteer-intro p {
    margin-bottom: 15px;
}

.miracle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: #fff5da;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #ffe2a1;
}

.miracle-icon {
    font-size: 2.5rem;
    animation: twinkle 2s infinite;
}

.miracle-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #764400;
    margin: 0;
}

@keyframes twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.volunteer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.how-it-works {
    margin: 40px 0;
}

.how-it-works h3 {
    font-size: 1.55rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-icon {
    font-size: 2rem;
}

.works-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #5f6f92;
    margin-bottom: 20px;
}

.steps-container {
    display: grid;
    gap: 18px;
}

.steps-carousel {
    background: #f1f4fa;
    border: 1px solid #d7deeb;
    border-radius: 14px;
    padding: 14px;
}

.step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #dce3ef;
    position: relative;
    overflow: hidden;
}

.interactive-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: #bcc8df;
    box-shadow: 0 8px 20px rgba(36, 56, 102, 0.08);
}

.steps-carousel-controls {
    margin-top: 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.steps-nav-btn {
    min-width: 86px;
    height: 40px;
    border: 1px solid #cfd8ea;
    background: #ffffff;
    color: #2f3f64;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.steps-nav-btn:hover:not(:disabled) {
    background: #ffe9e0;
    border-color: #ffb496;
}

.steps-nav-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.steps-progress {
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;
}

.steps-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8d2e6;
    border: 0;
    padding: 0;
}

.steps-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: #ff6b6b;
}

.steps-carousel.is-enhanced .step-card {
    display: none;
}

.steps-carousel.is-enhanced .step-card.is-active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff2ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #df5a1f;
    border: 1px solid #ffd3bf;
    box-shadow: none;
}

.step-header h4 {
    font-size: 1.08rem;
    margin: 0;
    color: #1f2d4a;
}

.step-card p {
    color: #425273;
    line-height: 1.55;
    font-size: 0.94rem;
    margin-bottom: 14px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f3f6fc;
    border: 1px solid #d4ddee;
    border-radius: 12px;
    color: #2a3b61;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    min-height: 52px;
}

.contact-btn:hover {
    background: #ffffff;
    border-color: #ffb496;
    transform: translateY(-1px);
}

.contact-icon {
    font-size: 1.5rem;
}

.step-badge {
    display: inline-block;
    background: rgba(78, 205, 196, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.5);
}

.step-badge.success {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.step-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 230, 109, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-top: 15px;
}

.highlight-icon {
    font-size: 1.8rem;
}

.volunteer-cta {
    margin-top: 40px;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

.volunteer-images {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.volunteer-img-main {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    height: auto;
}

.volunteer-img-small {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 50%;
    max-width: 50%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--white);
}

/* Volunteer Section - New Additions */
.contact-methods {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-methods p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.contact-methods a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-methods a:hover {
    color: var(--white);
}

.why-volunteer {
    margin-top: 60px;
}

.why-volunteer h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.benefit-card p {
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

.gratitude-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 230, 109, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gratitude-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.gratitude-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.gratitude-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.imagine-box {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.imagine-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.imagine-box p {
    margin: 10px 0;
    line-height: 1.7;
}

.imagine-box .emphasis {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 15px;
}

/* Destinations & Airlines Section - Enhanced */
.destinations-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.destinations-header {
    text-align: center;
    margin-bottom: 50px;
}

.destinations-header h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.destinations-header p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.destinations-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0 60px;
}

.destination-card-pro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.destination-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #FFA500);
}

.destination-card-pro:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.destination-header {
    margin-bottom: 25px;
}

.flag-large {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.destination-header h4 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
}

.destination-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.destination-list li {
    padding: 10px 15px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    transition: var(--transition);
}

.destination-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.city-icon {
    font-size: 1.2rem;
}

.urgent-indicator {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #E63946 100%);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse-indicator 2s infinite;
}

.urgent-indicator.priority {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

@keyframes pulse-indicator {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.airlines-section-enhanced {
    margin-top: 60px;
    text-align: center;
}

.airlines-section-enhanced h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.airlines-intro {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 35px;
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.airline-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.airline-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.airline-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.airline-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.airline-note {
    max-width: 750px;
    margin: 25px auto 0;
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.why-matters-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(230, 57, 70, 0.2) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.matters-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.matters-content h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.matters-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin: 0;
}

.volunteer-cta-final {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce-slow 3s infinite;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.volunteer-cta-final h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin: 15px 0 30px;
    opacity: 0.95;
}

.cta-highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(255, 230, 109, 0.3) 100%);
    border-radius: 20px;
    margin: 30px auto;
    max-width: 800px;
    border: 2px solid rgba(255, 230, 109, 0.4);
}

.heart-icon {
    font-size: 2.5rem;
}

.cta-tagline {
    font-size: 1.4rem;
    margin: 0;
    color: var(--white);
}

.btn-pulse {
    animation: pulse-button 2s infinite;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
}

@keyframes pulse-button {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(255, 107, 107, 0.6); }
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 100px;
}

.quick-contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qc-icon {
    font-size: 2.5rem;
}

.qc-text {
    font-size: 0.95rem;
}

/* Stories Section */
.stories-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover .story-card-image img {
    transform: scale(1.1);
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.story-card-content {
    padding: 30px;
}

.story-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.story-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--gray);
}

.stories-cta {
    text-align: center;
    margin-top: 60px;
}

/* Waiting Section */
.waiting-section {
    padding: var(--section-padding);
    background: var(--dark);
    color: var(--white);
}

.waiting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.waiting-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.waiting-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.waiting-card:hover img {
    transform: scale(1.1);
}

.waiting-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.waiting-card:hover .waiting-overlay {
    transform: translateY(0);
}

.waiting-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.urgent-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Donate Section */
.donate-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.donate-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.donation-impact {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.donation-impact h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.impact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.impact-item:last-child {
    border-bottom: none;
}

.impact-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.impact-desc {
    color: var(--gray);
    font-weight: 500;
}

.donation-buttons {
    margin-top: 30px;
}

.donation-buttons h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.amount-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 15px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.donation-type {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label:hover {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
}

.donate-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.impact-counter {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.impact-counter h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.counter-label {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donate-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.testimonials-grid-single {
    display: flex;
    justify-content: center;
}

.testimonial-card-single {
    max-width: 460px;
    width: 100%;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 35%, #FBBC05 70%, #EA4335 100%);
    border: none;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35);
}

.google-review-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    background: linear-gradient(135deg, #4285F4 0%, #1A73E8 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(26, 115, 232, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(26, 115, 232, 0.38);
    filter: brightness(1.02);
}

/* Form Section */
.form-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    text-align: center;
    color: var(--gray);
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Emergency Section */
.emergency-section {
    padding: var(--section-padding);
    background: var(--dark);
    color: var(--white);
}

.emergency-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
    background: var(--dark-light);
    padding: 34px;
    border-radius: 24px;
    border-left: 10px solid var(--primary-color);
}

.emergency-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.emergency-image img {
    width: 100%;
    height: min(52vh, 520px);
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.emergency-badge {
    display: inline-block;
    background: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.emergency-text h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    margin-bottom: 14px;
}

.emergency-text ul {
    margin: 25px 0;
}

.emergency-text li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.emergency-progress {
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-text {
    font-weight: 600;
    color: var(--accent-color);
}

.emergency-checklist {
    margin: 20px 0 16px;
    padding-left: 0;
}

.emergency-text__closing {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.95;
}

.emergency-link-hub__intro {
    margin: 28px 0 12px;
    font-size: 0.98rem;
    line-height: 1.5;
    opacity: 0.92;
}

.emergency-link-hub__intro a {
    color: var(--accent-color);
    font-weight: 600;
}

.emergency-link-hub__intro a:hover {
    text-decoration: underline;
}

.emergency-link-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.emergency-link-tile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    width: 100%;
    min-height: 62px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    line-height: 1.35;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.emergency-link-tile__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 0;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.emergency-link-tile__icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.emergency-link-tile__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.emergency-link-tile__text strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.emergency-link-tile__text small {
    font-size: 0.78rem;
    opacity: 0.82;
    line-height: 1.25;
}

.emergency-link-tile:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
}

.emergency-link-tile:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.emergency-link-tile--primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-size: 1rem;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.emergency-link-tile--primary:hover {
    background: linear-gradient(135deg, #7285f0 0%, #8558b0 100%);
    transform: translateY(-2px);
}

.emergency-link-tile--ghost {
    background: transparent;
    color: var(--accent-color);
    border-color: rgba(255, 214, 98, 0.45);
}

.emergency-link-tile--ghost:hover {
    background: rgba(255, 214, 98, 0.1);
    color: #fff3b0;
    border-color: rgba(255, 214, 98, 0.65);
}

.emergency-link-hub {
    margin-top: 8px;
}

@media (max-width: 767px) {
    .emergency-link-hub__grid {
        grid-template-columns: 1fr;
    }

    .emergency-link-tile {
        min-height: 58px;
        padding: 12px;
    }

    .emergency-link-tile__icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .emergency-link-tile__text strong {
        font-size: 0.88rem;
    }

    .emergency-link-tile__text small {
        font-size: 0.75rem;
    }
}

.emergency-link--paypal .emergency-link-tile__icon {
    background: #ffffff;
    color: #003087;
    border-color: rgba(255, 255, 255, 0.7);
}

.emergency-link--paypal .emergency-link-tile__icon svg {
    width: 17px;
    height: 17px;
}

.emergency-link--gofundme .emergency-link-tile__icon {
    background: #00b964;
    color: #ffffff;
    border-color: transparent;
}

.emergency-link--kofi .emergency-link-tile__icon {
    background: #29abe0;
    color: #ffffff;
    border-color: transparent;
}

.emergency-link--volunteer .emergency-link-tile__icon {
    background: #f4b400;
    color: #1f1f1f;
    border-color: transparent;
}

.emergency-link--web .emergency-link-tile__icon {
    background: #5865f2;
    color: #ffffff;
    border-color: transparent;
}

.emergency-link--instagram .emergency-link-tile__icon {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
    color: #ffffff;
    border-color: transparent;
}

.emergency-link--instagram .emergency-link-tile__icon svg {
    width: 16px;
    height: 16px;
}

.emergency-link--facebook .emergency-link-tile__icon {
    background: #1877f2;
    color: #ffffff;
    border-color: transparent;
}

.emergency-link--tiktok .emergency-link-tile__icon {
    background: #111111;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.emergency-link--tiktok .emergency-link-tile__icon svg {
    width: 15px;
    height: 15px;
}

.emergency-link--linktree .emergency-link-tile__icon {
    background: #39e09b;
    color: #0f1011;
    border-color: transparent;
}

.emergency-link--bank .emergency-link-tile__icon {
    background: #e9f4ff;
    color: #184f8f;
    border-color: rgba(255, 255, 255, 0.7);
}

.bank-details-panel {
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.bank-details-panel p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.bank-details-panel p:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.social-proof {
    margin-top: 60px;
}

.social-proof p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: inline-block;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-email {
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    margin: 5px 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-grid,
    .volunteer-content,
    .donate-content,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .emergency-image {
        max-width: 520px;
    }

    .emergency-image img {
        height: min(58vh, 460px);
    }
    
    .volunteer-img-small {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .volunteer-images {
        width: 100%;
        max-width: 100%;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .waiting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    /* Force no horizontal scroll */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Logo responsive sizing */
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        padding: 30px;
        transition: var(--transition);
        gap: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .large-text {
        font-size: 1.3rem;
    }
    
    .impact-grid,
    .stories-grid,
    .waiting-grid,
    .testimonials-grid,
    .footer-content,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 40px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amount-buttons {
        flex-direction: column;
    }
    
    .amount-btn {
        min-width: 100%;
    }
    
    .emergency-content {
        padding: 30px 20px;
    }

    .emergency-image img {
        height: min(55vh, 360px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Volunteer Section Mobile */
    .volunteer-subtitle {
        font-size: 1.4rem;
    }
    
    .volunteer-intro {
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        width: 100%;
    }
    
    .contact-methods {
        font-size: 0.9rem;
    }
    
    .why-volunteer {
        padding: 20px;
    }

    .steps-carousel {
        padding: 10px;
        border-radius: 14px;
    }

    .step-card {
        padding: 18px;
    }

    .steps-carousel-controls {
        grid-template-columns: 1fr auto 1fr;
        gap: 8px;
    }

    .steps-nav-btn {
        min-width: 0;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .imagine-box {
        padding: 20px;
    }
    
    /* MOBILE: Show ONLY flags for destinations */
    .destinations-grid-enhanced {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin: 30px auto;
        flex-wrap: wrap;
    }
    
    .destination-card-pro {
        width: auto !important;
        min-width: auto !important;
        padding: 15px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .destination-card-pro::before {
        display: none !important;
    }
    
    .destination-card-pro:hover {
        transform: scale(1.15) !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* Hide everything except flags on mobile */
    .destination-header h4,
    .destination-list,
    .urgent-indicator {
        display: none !important;
    }
    
    .flag-large {
        font-size: 5.5rem !important;
        margin: 0 !important;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    }
    
    .destination-header {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .destination-card {
        padding: 25px;
    }
    
    .airlines-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .airline-badge {
        width: 100%;
        text-align: center;
    }
    
    .volunteer-cta-final {
        padding: 30px 20px;
    }
    
    .cta-tagline {
        font-size: 1.2rem;
    }
    
    .contact-info-box {
        font-size: 0.95rem;
    }
    
    /* Better touch targets for mobile */
    .btn {
        min-height: 48px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 35px;
        font-size: 1.05rem;
    }
    
    /* Improved form inputs for mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    /* Better spacing on mobile */
    .story-text p {
        margin-bottom: 15px;
    }
    
    /* Mobile-optimized cards */
    .impact-card,
    .story-card,
    .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    /* Strict mobile overflow prevention */
    html, body {
        max-width: 100vw;
        overflow-x: hidden !important;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Logo extra small screens */
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .stat {
        width: 100%;
        max-width: 100%;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .large-text {
        font-size: 1.2rem;
    }
    
    .story-text p {
        font-size: 0.95rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Volunteer section mobile adjustments */
    .volunteer-hero {
        margin-bottom: 40px;
    }
    
    .volunteer-subtitle {
        font-size: 1.2rem;
    }
    
    .volunteer-intro {
        font-size: 0.95rem;
    }
    
    .how-it-works h3 {
        font-size: 1.4rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .contact-methods p {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .why-volunteer h3 {
        font-size: 1.4rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
    }
    
    .gratitude-note {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .imagine-box {
        padding: 15px;
    }
    
    .imagine-box h4 {
        font-size: 1.2rem;
    }
    
    .imagine-box p {
        font-size: 0.9rem;
    }
    
    .imagine-box .emphasis {
        font-size: 1.05rem;
    }
    
    .destinations-section h3 {
        font-size: 1.6rem;
    }
    
    .destination-card {
        padding: 20px;
    }
    
    .destination-card .flag {
        font-size: 2.5rem;
    }
    
    .destination-card h4 {
        font-size: 1.3rem;
    }
    
    .destination-card ul li {
        font-size: 0.9rem;
    }
    
    .airlines-section h4 {
        font-size: 1.4rem;
    }
    
    .airline-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .volunteer-cta-final h3 {
        font-size: 1.5rem;
    }
    
    .volunteer-cta-final p {
        font-size: 1rem;
    }
    
    .cta-tagline {
        font-size: 1rem;
    }
    
    .cta-icon-large {
        font-size: 3.5rem;
    }
    
    .cta-highlight-box {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-btn {
        flex-direction: row;
        justify-content: center;
        min-height: 60px;
    }
    
    .qc-icon {
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .airlines-grid {
        grid-template-columns: 1fr;
    }
    
    /* Extra small mobile - HUGE flags, nothing else */
    .destinations-grid-enhanced {
        display: flex !important;
        justify-content: center;
        gap: 25px;
        margin: 40px auto;
        padding: 0;
    }
    
    .destination-card-pro {
        width: auto !important;
        min-width: auto !important;
        padding: 10px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .destination-card-pro:hover {
        transform: scale(1.2) !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .flag-large {
        font-size: 6.5rem !important;
        margin: 0 !important;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
        animation: float 3s ease-in-out infinite;
    }
    
    /* Completely hide all text - ONLY flags visible */
    .destination-header h4,
    .destination-list,
    .urgent-indicator {
        display: none !important;
        visibility: hidden !important;
    }
    
    .destination-header {
        margin: 0 !important;
        padding: 0 !important;
        min-height: auto !important;
    }
    
    .destinations-header h3 {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .destinations-header p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .gratitude-icon {
        font-size: 2.5rem;
    }
    
    .matters-icon {
        font-size: 3rem;
    }
    
    /* Form optimizations */
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    /* Emergency section */
    .emergency-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .emergency-text h2 {
        font-size: 1.8rem;
    }
    
    .emergency-text ul li {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-col h3,
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    .footer-col p,
    .footer-col ul li {
        font-size: 0.9rem;
    }
    
    /* Better image handling */
    .story-card-image,
    .waiting-card {
        height: 250px;
    }
    
    /* Improve readability on small screens */
    body {
        font-size: 15px;
    }
    
    p {
        line-height: 1.7;
    }
}

/* Blog Page Styles */
.featured-article {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.featured-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 50px;
}

.article-date {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 500;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-stats {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 0.95rem;
    color: var(--gray);
}

.article-cta {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.article-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.article-cta .btn {
    margin: 0 10px 10px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--gray);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-meta span {
    font-size: 0.85rem;
    color: var(--gray);
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 15px;
}

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.btn-text:hover {
    transform: translateX(5px);
}

/* Newsletter Box */
.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 18px 40px;
    border: none;
    cursor: pointer;
}

/* Mobile Styles for Blog */
@media (max-width: 768px) {
    .featured-image {
        height: 300px;
    }
    
    .featured-content {
        padding: 30px 25px;
    }
    
    .featured-content h2 {
        font-size: 1.8rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .featured-content p {
        font-size: 1rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Blog: real rescue story articles (before/after) */
.blog-page-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.blog-page-intro .lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gray);
}

.blog-toc-wrap {
    max-width: 900px;
    margin: 0 auto 56px;
}

.blog-toc {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 24px 28px;
}

.blog-toc h2 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    text-align: center;
}

.blog-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.blog-toc a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.blog-toc a:hover,
.blog-toc a:focus {
    background: rgba(0, 0, 0, 0.05);
    text-decoration: underline;
}

.blog-story-article {
    scroll-margin-top: 96px;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-story-article:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-story-article h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 12px;
    line-height: 1.25;
}

.blog-story-meta {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.blog-story-figure {
    margin: 0 0 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    background: #1a0a0a;
}

.blog-story-figure img {
    width: 100%;
    height: auto;
    display: block;
    max-height: min(90vh, 920px);
    object-fit: contain;
    margin: 0 auto;
}

.blog-story-article .story-body {
    max-width: 720px;
    margin: 0 auto;
}

.blog-story-article .story-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--dark);
}

.blog-story-article .story-cta {
    margin-top: 28px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.blog-story-article .story-cta .btn {
    margin: 6px;
}

@media (max-width: 768px) {
    .blog-toc ul {
        grid-template-columns: 1fr 1fr;
    }

    .blog-story-article .story-body p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-toc ul {
        grid-template-columns: 1fr;
    }
}

/* Linktree modal */
.nav-link-btn {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0.5rem 1rem;
    text-align: left;
}

.nav-link-btn:hover {
    color: var(--primary);
}

.footer-linktree-btn {
    background: none;
    border: none;
    color: var(--primary);
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.footer-linktree-btn:hover {
    color: var(--secondary);
}

.linktree-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.linktree-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.linktree-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.linktree-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: min(92vh, 720px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.linktree-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.linktree-modal__close:hover {
    background: #e9ecef;
}

.linktree-modal__title {
    font-size: 1.25rem;
    margin: 0 44px 0.35rem 0;
    color: var(--dark);
}

.linktree-modal__lead {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.linktree-modal__cta {
    display: inline-block;
    text-align: center;
    margin-bottom: 0.65rem;
    align-self: flex-start;
}

.linktree-modal__hint {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.75rem;
    line-height: 1.45;
}

.linktree-modal__frame-wrap {
    flex: 1;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.linktree-modal__iframe {
    width: 100%;
    height: min(55vh, 420px);
    border: 0;
    display: block;
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .back-to-top,
    .scroll-indicator,
    .linktree-modal {
        display: none;
    }
}

