/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #D32F2F;
    --primary-light: #FF5252;
    --primary-dark: #B71C1C;
    --secondary-color: #FFC107;
    --accent-color: #FF8A65;
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-light: #FAFBFC;
    --border-light: #E9ECEF;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(211, 47, 47, 0.15);
    --gradient-subtle: linear-gradient(135deg, #D32F2F 0%, #FF5252 100%);
    --gradient-warm: linear-gradient(135deg, #FF8A65 0%, #FFAB91 100%);
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: var(--bg-primary);
    width: 100%;
    max-width: 100vw;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    color: white;
}

.heart-loader {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: heartBeat 1.5s infinite;
}

.loader-content p {
    font-size: 1.1rem;
    font-weight: 300;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); color: var(--primary-color); }
    50% { transform: scale(1.2); color: var(--primary-light); }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-text {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.lang-dropdown-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 90px;
    justify-content: space-between;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.lang-dropdown-btn i:first-child {
    color: var(--primary-color);
}

.lang-dropdown-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #f8f8f8;
    color: var(--primary-color);
    padding-left: 1.2rem;
}

.lang-option.selected {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.lang-option i {
    color: var(--primary-color);
}

/* Mobile Language Switcher - hidden by default, shown only in mobile menu */
.mobile-language-switcher {
    display: none;
}

/* Old language switcher - keeping for backward compatibility */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 70px;
    height: 38px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.lang-btn i {
    font-size: 0.9rem;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px var(--shadow-heavy);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-heavy);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    filter: brightness(1.1) contrast(1.05) saturate(0.9);
    transition: all 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content-center {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 550px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    /* backdrop-filter: blur(1px); */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-text-center {
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: white;
    position: relative;
    letter-spacing: -0.5px;
}

.hero-main-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    color: white;
    font-weight: 400;
}

.btn-hero {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: inline-block;
    position: relative;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4);
    background: var(--primary-dark);
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:active {
    transform: translateY(0px);
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    padding: 0 20px;
}

.about-text {
    padding: 2rem 0;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.about-description p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.story-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.story-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.highlight-item i {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}

.highlight-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 60px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    width: 100%;
    max-width: 350px;
    margin: 20px;
    padding: 35px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border-radius: 15px;
    transform: scale(1.3);
    transform-origin: center;
    filter: brightness(1.05) contrast(1.05);
}

.founder-details {
    text-align: center;
    margin-top: 20px;
}

.founder-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.founder-details p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.founder-link {
    margin-top: 10px !important;
    font-size: 0.9rem !important;
    color: #666 !important;
}

.founder-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.founder-link a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

/* Founder Info */
.founder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
    padding: 40px 25px 25px;
    color: white;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.founder-info p {
    margin: 5px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.founder-quote {
    font-style: italic;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-top: 12px !important;
    padding: 0 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-secondary);
    color: var(--text-dark);
}

.how-it-works .section-title {
    color: var(--text-dark);
}

.how-it-works .section-title .highlight {
    color: var(--primary-color);
}

.how-it-works .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-note {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Success Stories Section */
.success-stories {
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-rating {
    display: flex;
    gap: 0.25rem;
}

.story-rating i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.view-more-section {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-view-more i {
    font-size: 1.2rem;
}

/* Coming Soon Styles */
.coming-soon-container {
    padding: 4rem 2rem;
    text-align: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(255, 111, 97, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: heartBeat 2s infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coming-soon-submessage {
    font-size: 1rem;
    color: var(--text-secondary);
}

.coming-soon-submessage a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.coming-soon-submessage a:hover {
    border-bottom-color: var(--primary-color);
}

.coming-soon-submessage .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin: 1rem 0;
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.coming-soon-submessage .whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    border-bottom: none;
}

.coming-soon-submessage .whatsapp-link i {
    font-size: 1.2rem;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

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

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Donation Section */
.donation {
    background: var(--gradient-warm);
    color: white;
}

.donation .section-title,
.donation .section-subtitle {
    color: white;
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donation-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.donation-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.donation-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.amount-selection {
    margin-bottom: 2rem;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover,
.amount-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.custom-amount {
    margin-top: 1rem;
}

.amount-input,
.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.amount-input::placeholder,
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-btn:hover,
.payment-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-donate {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-donate:hover {
    background: #fff;
    transform: translateY(-2px);
}

.donation-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Coming Soon Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.close:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.features-preview {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.notify-text {
    margin-top: 25px !important;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.social-links-modal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links-modal .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links-modal .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive Modal */
@media (max-width: 480px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 30px 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-icon {
        font-size: 2.5rem;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .features-preview {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-item i {
        font-size: 1.2rem;
        margin-right: 10px;
    }
    
    .social-links-modal .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .modal-content {
        margin: 15% auto;
    }
    
    .features-preview {
        padding: 15px 10px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section {
    flex: 1;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 0;
    align-self: start;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    color: #ccc;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 18px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    text-align: center;
}

.contact-item span {
    flex: 1;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom-content i {
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .donation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 1080px) {
    /* Hide desktop language dropdown on mobile */
    .language-dropdown.desktop-only {
        display: none;
    }
    
    .nav-container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: top 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        top: 70px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* Mobile Language Switcher inside hamburger menu */
    .mobile-language-switcher {
        display: block;
        border-top: 1px solid #e0e0e0;
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
    
    .language-label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .language-options {
        display: flex;
        gap: 1rem;
    }
    
    .lang-option-btn {
        flex: 1;
        background: white;
        border: 2px solid #e0e0e0;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .lang-option-btn:hover,
    .lang-option-btn.active {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: rgba(220, 38, 38, 0.05);
    }
    
    .lang-option-btn i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Contact info alignment fix for small screens */
@media (max-width: 450px) and (min-width: 321px) {
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .contact-item i {
        color: var(--primary-color);
        width: 16px;
        flex-shrink: 0;
        margin-top: 0.1rem;
        text-align: center;
    }
    
    .contact-item span {
        flex: 1;
        line-height: 1.4;
        font-size: 0.9rem;
    }
}

/* Contact info alignment fix for medium screens */
@media (max-width: 768px) and (min-width: 451px) {
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .contact-item i {
        color: var(--primary-color);
        width: 18px;
        flex-shrink: 0;
        margin-top: 0.1rem;
        text-align: center;
    }
    
    .contact-item span {
        flex: 1;
        line-height: 1.4;
    }
}

/* Tablet breakpoint for footer spacing */
@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section {
        flex: none;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
        margin-top: 0;
        text-align: left;
        align-self: flex-start;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        margin-top: 1rem;
        justify-self: flex-start;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: auto;
        gap: 0;
    }
    
    .footer-section:last-child h3 {
        margin-bottom: 0.3rem !important;
        text-align: left;
        margin-top: 0;
    }
    
    .footer-section:last-child .social-links {
        justify-content: flex-start;
        margin-top: 0 !important;
        margin-bottom: 0;
        padding-top: 0;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content-center {
        padding: 1rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .feature-card,
    .donation-form {
        padding: 1.5rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Make language dropdown smaller on very small screens */
    .language-dropdown {
        margin-left: 0.5rem;
    }
    
    .lang-dropdown-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: 60px;
        gap: 0.3rem;
    }
    
    .lang-dropdown-btn i:first-child {
        font-size: 0.7rem;
    }
    
    .lang-dropdown-btn i:last-child {
        font-size: 0.6rem;
    }
}

/* Medium and large screens - ensure social links left align */
@media (min-width: 351px) {
    .social-links {
        justify-content: flex-start !important;
        align-self: flex-start !important;
    }
}

/* Small screens 320-350px footer fix */
@media (max-width: 350px) and (min-width: 321px) {
    .footer-section {
        align-items: flex-start !important;
    }
    
    .footer-section h3 {
        text-align: left !important;
        align-self: flex-start !important;
    }
    
    .footer-links {
        text-align: left !important;
        align-self: flex-start !important;
    }
    
    .footer-links li {
        text-align: left !important;
    }
    
    .social-links {
        justify-content: flex-start !important;
        align-self: flex-start !important;
    }
    
    .footer-section:last-child {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .footer-section:last-child h3 {
        text-align: left !important;
    }
}

/* Extra Small Screens - 320px and below */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header adjustments */
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Hero section */
    .hero-main-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section {
        flex: none;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
        margin-top: 0;
        text-align: left;
        align-self: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 1rem;
        align-self: flex-start;
    }
    
    .contact-item {
        justify-content: center;
        align-items: flex-start;
        gap: 0.8rem;
        text-align: left;
    }
    
    .contact-item i {
        margin-top: 0.1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        margin-top: 0;
        text-align: center;
    }
    
    .footer-section ul li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    /* Contact info in footer */
    .footer-section span,
    .footer-section a {
        font-size: 0.8rem;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
        line-height: 1.3;
    }
    
    /* Footer social links */
    .footer-section .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    /* Footer icons */
    .footer-section i {
        font-size: 0.9rem;
    }
    
    /* Coming Soon Box adjustments */
    .coming-soon-container {
        margin: 1rem 0;
        padding: 0 0.5rem;
    }
    
    .coming-soon-content {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
    
    .coming-soon-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .coming-soon-message {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .coming-soon-submessage {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .whatsapp-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        margin: 0.5rem 0;
        display: inline-block;
        word-break: break-word;
        max-width: 100%;
        text-align: center;
    }
    
    /* Email link adjustments */
    .coming-soon-submessage a[href^="mailto:"] {
        font-size: 0.8rem;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }
    
    /* Back to home button */
    .back-home-section .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    /* Language dropdown extra small */
    .lang-dropdown-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        min-width: 50px;
        gap: 0.2rem;
    }
    
    .lang-dropdown-btn i:first-child {
        font-size: 0.6rem;
    }
    
    .lang-dropdown-btn i:last-child {
        font-size: 0.5rem;
    }
    
    /* Mobile language buttons in hamburger */
    .lang-option-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .language-label {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    /* General text overflow prevention */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Small Screens - 321px to 350px */
@media (min-width: 321px) and (max-width: 350px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header adjustments */
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    /* Hero section */
    .hero-main-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .btn-hero {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
    }
    
    /* Coming Soon Box - Success Stories */
    .coming-soon-container {
        margin: 1.2rem 0;
        padding: 0 0.75rem;
    }
    
    .coming-soon-content {
        padding: 1.75rem 1.25rem;
        border-radius: 10px;
    }
    
    .coming-soon-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .coming-soon-message {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .coming-soon-submessage {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .whatsapp-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.9rem;
        margin: 0.6rem 0;
        display: inline-block;
        word-break: break-word;
        max-width: 100%;
        text-align: center;
    }
    
    /* Email link adjustments */
    .coming-soon-submessage a[href^="mailto:"] {
        font-size: 0.85rem;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }
    
    /* Back to home button */
    .back-home-section .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 2.5rem 0 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.9rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.9rem;
        text-align: center;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        gap: 1.2rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    /* Contact info in footer */
    .footer-section span,
    .footer-section a {
        font-size: 0.85rem;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
        line-height: 1.4;
    }
    
    /* Language dropdown adjustments */
    .lang-dropdown-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
        min-width: 55px;
        gap: 0.25rem;
    }
    
    .lang-dropdown-btn i:first-child {
        font-size: 0.65rem;
    }
    
    .lang-dropdown-btn i:last-child {
        font-size: 0.55rem;
    }
    
    /* Mobile language buttons in hamburger */
    .lang-option-btn {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
        gap: 0.35rem;
    }
    
    .language-label {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Ensure text wrapping */
    h1, h2, h3, h4, h5, h6, p, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Ultra Small Screens - 280px and below */
@media (max-width: 280px) {
    .container {
        padding: 0 8px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-main-title {
        font-size: 1.3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-hero {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .coming-soon-content {
        padding: 1rem 0.75rem;
    }
    
    .coming-soon-title {
        font-size: 1rem;
    }
    
    .coming-soon-message {
        font-size: 0.8rem;
    }
    
    .coming-soon-submessage {
        font-size: 0.75rem;
    }
    
    .whatsapp-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .footer-section h3 {
        font-size: 0.9rem;
    }
    
    .footer-section ul li {
        font-size: 0.8rem;
    }
    
    .footer-section span,
    .footer-section a {
        font-size: 0.75rem;
    }
    
    .lang-dropdown-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
        min-width: 45px;
    }
    
    .nav-container {
        padding: 0 0.25rem;
    }
    
    /* Force text wrapping */
    h1, h2, h3, h4, h5, h6, p, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure no element exceeds viewport */
    * {
        max-width: 100% !important;
        box-sizing: border-box;
    }
}

/* Custom animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.6); }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.fade-in { animation: fadeIn 1s ease; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Donation Page */
.donation-page {
    padding: 8rem 0 4rem;
    background: white;
}

.donation-simple-content {
    max-width: 800px;
    margin: 0 auto;
}

.donation-info-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.donation-info-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}

.donation-info-box p:last-child {
    margin-bottom: 0;
}

.donation-info-box .donation-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.donation-options {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.donation-options h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.amount-card.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
}

.amount-card .amount-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.custom-amount-input {
    margin: 2rem 0;
}

.custom-amount-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.custom-amount-field {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.custom-amount-field:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-donate-now {
    margin: 2rem 0 1.5rem;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-note {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.coming-soon-note {
    font-size: 1.1rem;
    color: #666;
    margin: 1.5rem 0;
    line-height: 1.6;
}

/* Success Stories Page */
.success-stories-page {
    padding: 8rem 0 4rem;
    background: white;
}

.back-home-section {
    text-align: center;
    margin-top: 3rem;
}

.back-home-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Policy Pages (Privacy Policy & Terms of Service) */
.policy-page {
    padding: 8rem 0 4rem;
    background: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.policy-intro p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section h3 i {
    font-size: 1.2rem;
}

.policy-section p {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.policy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 12px;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #666;
}

.policy-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-footer a:hover {
    text-decoration: underline;
}

.contact-info-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.contact-info-highlight a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-highlight a:hover {
    text-decoration: underline;
}

