/* ===================================
   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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    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 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.volunteer-section * {
    max-width: 100%;
}

.volunteer-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.volunteer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.volunteer-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.volunteer-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.volunteer-intro p {
    margin-bottom: 15px;
}

.miracle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid rgba(255, 230, 109, 0.3);
}

.miracle-icon {
    font-size: 2.5rem;
    animation: twinkle 2s infinite;
}

.miracle-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    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: 60px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.how-it-works {
    margin: 40px 0;
}

.how-it-works h3 {
    font-size: 2rem;
    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: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.steps-container {
    display: grid;
    gap: 25px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    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(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 230, 109, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(255, 230, 109, 0.4);
}

.step-header h4 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--white);
}

.step-card p {
    opacity: 0.95;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.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: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    min-height: 52px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.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);
}

/* 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: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: var(--dark-light);
    padding: 50px;
    border-radius: 30px;
    border-left: 10px solid var(--primary-color);
}

.emergency-image img {
    border-radius: 20px;
    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: 2.5rem;
    margin-bottom: 20px;
}

.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);
}

/* 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;
    }
    
    .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;
    }
    
    .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;
    }
    
    .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;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .back-to-top,
    .scroll-indicator {
        display: none;
    }
}

