/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-paw {
    font-size: 4rem;
    animation: pawBounce 1s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: floatParticle 15s infinite linear;
}

.particle-pos-0 { left: 0%; }
.particle-pos-10 { left: 10%; }
.particle-pos-20 { left: 20%; }
.particle-pos-30 { left: 30%; }
.particle-pos-40 { left: 40%; }
.particle-pos-50 { left: 50%; }
.particle-pos-60 { left: 60%; }
.particle-pos-70 { left: 70%; }
.particle-pos-80 { left: 80%; }
.particle-pos-90 { left: 90%; }

.particle-delay-0 { animation-delay: 0s; }
.particle-delay-1 { animation-delay: 1s; }
.particle-delay-2 { animation-delay: 2s; }
.particle-delay-3 { animation-delay: 3s; }
.particle-delay-4 { animation-delay: 4s; }
.particle-delay-5 { animation-delay: 5s; }
.particle-delay-6 { animation-delay: 6s; }
.particle-delay-7 { animation-delay: 7s; }
.particle-delay-8 { animation-delay: 8s; }
.particle-delay-9 { animation-delay: 9s; }
.particle-delay-10 { animation-delay: 10s; }
.particle-delay-11 { animation-delay: 11s; }
.particle-delay-12 { animation-delay: 12s; }
.particle-delay-13 { animation-delay: 13s; }
.particle-delay-14 { animation-delay: 14s; }

.particle-duration-15 { animation-duration: 15s; }
.particle-duration-16 { animation-duration: 16s; }
.particle-duration-17 { animation-duration: 17s; }
.particle-duration-18 { animation-duration: 18s; }
.particle-duration-19 { animation-duration: 19s; }
.particle-duration-20 { animation-duration: 20s; }
.particle-duration-21 { animation-duration: 21s; }
.particle-duration-22 { animation-duration: 22s; }
.particle-duration-23 { animation-duration: 23s; }
.particle-duration-24 { animation-duration: 24s; }
@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 254, 249, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 71, 42, 0.1);
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--forest);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.4);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    transition: width 0.3s ease;
}

.nav-center a:hover {
    color: var(--forest);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: rgba(26, 71, 42, 0.08);
    padding: 0.25rem;
    border-radius: 50px;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.lang-btn.active {
    background: white;
    color: var(--forest);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover:not(.active) {
    color: var(--forest);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    color: white !important;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta-inline {
    display: inline-flex;
    margin-top: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

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

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 254, 249, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--forest);
    text-decoration: none;
}

.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, #f0ebe3 50%, #e8e0d5 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(135, 168, 120, 0.2) 0%, transparent 60%);
    animation: heroBgPulse 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
    animation: heroBgPulse 10s ease-in-out infinite reverse;
}

@keyframes heroBgPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: heroContentIn 1s ease forwards;
    opacity: 0;
}

@keyframes heroContentIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(74, 124, 89, 0.15) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 71, 42, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 71, 42, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(26, 71, 42, 0); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-quote {
    font-style: italic;
    color: var(--forest);
    font-size: 1.1rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
}

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

.btn-secondary:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    background: linear-gradient(135deg, var(--moss) 0%, var(--sage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--forest);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: heroVisualIn 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes heroVisualIn {
    from { opacity: 0; transform: translateX(50px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(26, 71, 42, 0.25);
}

.hero-image-float {
    position: absolute;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    animation: imageFloat 4s ease-in-out infinite;
}

.hero-image-float.img1 {
    bottom: -30px;
    left: -40px;
    animation-delay: 0s;
}

.hero-image-float.img2 {
    top: -20px;
    right: -30px;
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-stats-card {
    position: absolute;
    bottom: 40px;
    right: -60px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 71, 42, 0.15);
    display: flex;
    gap: 2rem;
    animation: statsSlideIn 1s ease 0.6s forwards;
    opacity: 0;
}

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

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

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--forest);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-stat-divider {
    width: 1px;
    background: #eee;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-pos-t15-l5 { top: 15%; left: 5%; }
.floating-pos-t60-l8 { top: 60%; left: 8%; }
.floating-pos-t25-r8 { top: 25%; right: 8%; }
.floating-pos-b20-r5 { bottom: 20%; right: 5%; }

.floating-paw {
    font-size: 2.5rem;
    opacity: 0.08;
    animation: floatElement 8s ease-in-out infinite;
}

.floating-heart {
    font-size: 2rem;
    opacity: 0.1;
    animation: floatElement 6s ease-in-out infinite reverse;
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(5deg); }
    50% { transform: translate(-5px, -10px) rotate(-5deg); }
    75% { transform: translate(15px, -25px) rotate(3deg); }
}

/* Section Styles */
section {
    padding: 120px 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header-with-top-margin {
    margin-top: 5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* About/Mission Section */
.about {
    background: linear-gradient(180deg, var(--cream) 0%, white 50%, var(--cream) 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(26, 71, 42, 0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.4);
}

.about-image-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge-text {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--forest);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(26, 71, 42, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(26, 71, 42, 0.1);
    transform: translateX(5px);
}

.about-feature-icon {
    font-size: 1.5rem;
}

.about-feature span {
    font-weight: 600;
    color: var(--forest);
}

/* Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(26, 71, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 71, 42, 0.15);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(74, 124, 89, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--moss) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.story .section-label {
    color: var(--gold-light);
}

.story .section-title {
    color: white;
}

.story-text {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-light);
    max-width: 700px;
    margin: 3rem auto;
    position: relative;
}

.story-quote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: -20px;
    opacity: 0.3;
    font-family: serif;
}

.story-author {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

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

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.donation-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 71, 42, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 71, 42, 0.12);
}

.donation-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    color: white;
}

.donation-card.featured::before {
    content: '💚';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.2;
}

.donation-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.donation-card.featured h3 {
    color: white;
}

.donation-card h3:not(.donation-card.featured h3) {
    color: var(--forest);
}

.donation-card > p {
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.donation-card.featured > p {
    color: rgba(255, 255, 255, 0.9);
}

.donation-card:not(.featured) > p {
    color: var(--text-muted);
}

.detail-row {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    gap: 1rem;
    transition: all 0.3s ease;
}

.donation-card:not(.featured) .detail-row {
    background: rgba(26, 71, 42, 0.05);
}

.detail-row:hover {
    transform: translateX(5px);
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    min-width: 90px;
}

.detail-value {
    font-weight: 600;
    flex: 1;
    word-break: break-all;
    font-family: 'Source Sans 3', monospace;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.donation-card:not(.featured) .copy-btn {
    background: var(--forest);
    color: white;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.copy-btn.copied {
    background: var(--moss) !important;
}

.donation-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

.donation-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.donation-card:not(.featured) .donation-info {
    background: rgba(26, 71, 42, 0.05);
}

.donation-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.donation-info p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
}

/* GPM Section */
.gpm {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.gpm-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gpm-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fff7d6 50%, #ffefb8 100%);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(212, 168, 83, 0.25);
}

.gpm-card::before {
    content: '1,2%';
    position: absolute;
    top: -40px;
    right: -40px;
    font-family: 'Playfair Display', serif;
    font-size: 14rem;
    font-weight: 800;
    color: rgba(212, 168, 83, 0.12);
    line-height: 1;
    pointer-events: none;
}

.gpm-text {
    position: relative;
    z-index: 2;
}

.gpm-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--forest);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gpm-text > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.gpm-highlight {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gpm-highlight strong {
    display: block;
    color: var(--forest);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.gpm-highlight .code {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.gpm-benefits {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.gpm-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gpm-benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.gpm-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.gpm-benefit span {
    color: var(--text-dark);
    font-weight: 500;
}

.gpm-steps {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.gpm-steps h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--forest);
    text-align: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
}

.step:last-of-type {
    border-bottom: none;
}

.step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.step-content h4 {
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gpm-cta {
    text-align: center;
    margin-top: 2rem;
}

.gpm-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    transition: all 0.3s ease;
}

.gpm-cta a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(212, 168, 83, 0.5);
}

/* Gallery Section */
.gallery {
    background: var(--cream);
    padding-bottom: 80px;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 71, 42, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(26, 71, 42, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(74, 124, 89, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    transform: scale(1.1);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--forest);
}

.contact-form {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 35px rgba(26, 71, 42, 0.1);
    border: 1px solid rgba(26, 71, 42, 0.08);
    display: grid;
    gap: 1rem;
}

.contact-form h4 {
    color: var(--forest);
    margin: 0;
    font-size: 1.05rem;
}

.contact-form-row {
    display: grid;
    gap: 0.4rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(26, 71, 42, 0.2);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.12);
}

.contact-form [aria-invalid="true"] {
    border-color: #b3261e;
    box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
}

.contact-form [data-form-message] {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
}

.contact-form [data-form-message][data-state="success"] {
    color: var(--forest);
}

.contact-form [data-form-message][data-state="error"] {
    color: #b3261e;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 71, 42, 0.12);
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--forest);
    color: white;
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 300px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-muted {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

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

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(26, 71, 42, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
}

.consent-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(120%);
    width: min(760px, calc(100% - 24px));
    background: linear-gradient(135deg, rgba(255, 254, 249, 0.98), rgba(240, 235, 227, 0.96));
    border: 1px solid rgba(26, 71, 42, 0.15);
    box-shadow: 0 16px 40px rgba(26, 71, 42, 0.2);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    overflow: hidden;
    isolation: isolate;
}

.consent-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    animation: consentPopIn 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.consent-banner.is-dismissing {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.consent-text {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.45;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    align-items: center;
}

.consent-btn {
    height: 46px;
    padding: 0 1.35rem;
    font-size: 0.9rem;
    min-width: 110px;
    line-height: 1;
    display: inline-grid;
    place-items: center;
    text-align: center;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consent-btn::before {
    display: none;
}

.consent-btn:hover {
    transform: translateY(-1px);
}

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

.consent-actions .btn-secondary.consent-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 236, 0.95));
    border: 2px solid rgba(26, 71, 42, 0.7);
    color: var(--forest);
    box-shadow: 0 4px 14px rgba(26, 71, 42, 0.12);
}

.consent-actions .btn-secondary.consent-btn:hover {
    box-shadow: 0 8px 20px rgba(26, 71, 42, 0.16);
    border-color: rgba(26, 71, 42, 0.9);
}

.consent-actions .btn-primary.consent-btn {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 60%, #3b7a51 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(26, 71, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.consent-actions .btn-primary.consent-btn:hover {
    box-shadow: 0 12px 24px rgba(26, 71, 42, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.consent-banner::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135, 168, 120, 0.25), rgba(135, 168, 120, 0));
    pointer-events: none;
    animation: consentGlow 6s ease-in-out infinite;
    z-index: 0;
}

.consent-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.9), rgba(212, 168, 83, 0.2));
    background-size: 200% 100%;
    animation: consentShine 3s linear infinite;
    z-index: 0;
}

@keyframes consentPopIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes consentGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes consentShine {
    from {
        background-position: 0% 0;
    }
    to {
        background-position: 200% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .consent-banner.visible {
        animation: none;
    }

    .consent-banner::before,
    .consent-banner::after {
        animation: none;
    }

    .consent-btn {
        transition: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .gpm-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        text-align: center;
        padding: 100px 1.5rem 80px;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle,
    .hero-quote {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-stats-card {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }

    .hero-image-float.img1 {
        left: 10px;
        bottom: -20px;
    }

    .hero-image-float.img2 {
        right: 10px;
        top: -10px;
    }

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

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

    .donation-card.featured {
        grid-column: span 1;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    section {
        padding: 80px 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image-main {
        height: 350px;
    }

    .hero-image-float {
        width: 100px;
        height: 100px;
    }

    .hero-stats-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-stat-divider {
        width: 100%;
        height: 1px;
    }

    .gpm-card {
        padding: 2rem;
    }

    .gpm-card::before {
        font-size: 6rem;
        top: -20px;
        right: -20px;
    }

    .about-image img {
        height: 350px;
    }

    .about-image-badge {
        right: 10px;
        bottom: -10px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .consent-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .consent-text {
        justify-content: center;
        text-align: center;
    }

    .consent-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .hero-image-float {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gpm-benefits {
        grid-template-columns: 1fr;
    }

    .lang-switcher {
        gap: 0.15rem;
        padding: 0.2rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}


