.fade-in-hidden {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.flash-container {
    max-width: 1180px;
    margin: 16px auto 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.flash-success {
    background: #e6f6ed;
    color: #1c7a3e;
    border: 1px solid #b9e6c9;
}

.flash-error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c2bc;
}

.empty-state {
    color: var(--text-muted);
    text-align: center;
    padding: 32px 0;
    grid-column: 1 / -1;
}


.gallery-photo, .news-photo, .hero-photo, .about-photo {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}


.news-detail-page {
    padding: 48px 0 80px;
}

.news-detail-inner {
    max-width: 720px;
}

.news-detail-inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 14px 0 24px;
}

.news-detail-photo {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.news-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    white-space: pre-wrap;
}

.volunteer-page {
    padding: 48px 0 80px;
    min-height: 70vh;
}

.volunteer-page-inner {
    max-width: 640px;
}

.back-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.back-link:hover {
    color: var(--navy);
}

.volunteer-full-form {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-section h3 {
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.radio-row {
    display: flex;
    gap: 12px;
}

.radio-pill, .checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.radio-pill input, .checkbox-pill input {
    accent-color: var(--coral);
}

.radio-pill:has(input:checked), .checkbox-pill:has(input:checked) {
    border-color: var(--coral);
    background: #fff5f3;
}

.checkbox-pill-primary {
    border-color: var(--navy);
    margin-bottom: 14px;
    display: flex;
    width: fit-content;
}

.checkbox-pill-primary:has(input:checked) {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-pill:has(input:disabled) {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-large {
    padding: 15px 32px;
    font-size: 1rem;
    align-self: flex-start;
}


.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-page-inner {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.thanks-icon {
    font-size: 3.5rem;
    margin-bottom: 8px;
}

.thanks-page-inner .btn {
    margin-top: 16px;
}


.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--navy-dark);
}

.lang-current:hover {
    border-color: var(--navy);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.12);
    overflow: hidden;
    min-width: 150px;
    z-index: 50;
}

.lang-dropdown.open {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 500;
}

.lang-dropdown a:hover {
    background: var(--bg-soft);
}

.lang-dropdown a.active {
    color: var(--coral);
    font-weight: 700;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.mobile-lang-switcher a {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
}

.mobile-lang-switcher a.active {
    border-color: var(--coral);
    color: var(--coral);
}


.hero-carousel {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-soft);
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-carousel-slide.active {
    opacity: 1;
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: var(--navy-dark);
    z-index: 5;
}

.hero-carousel-arrow:hover {
    background: #fff;
}

.hero-carousel-prev {
    left: 12px;
}

.hero-carousel-next {
    right: 12px;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.hero-carousel-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

@media (min-width: 920px) {
    .hero-carousel {
        height: 380px;
    }
}

:root {
    --navy: #1e3a8a;
    --navy-dark: #0f1f4d;
    --navy-light: #3252a8;
    --coral: #e5383b;
    --coral-dark: #ba181b;
    --coral-light: #ffe1e0;
    --gold: #f5b942;
    --bg: #ffffff;
    --bg-soft: #f8f9fc;
    --bg-tint: #fef6f3;

    /* Stylized peony bloom, scattered irregularly as decorative accents */
    --peony: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg transform='translate(24,24)'%3E%3Cg fill='%23fbd3de'%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(0)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(45)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(90)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(135)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(180)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(225)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(270)'/%3E%3Cellipse cx='0' cy='-13' rx='8' ry='13' transform='rotate(315)'/%3E%3C/g%3E%3Cg fill='%23f4a9bd'%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(22.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(67.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(112.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(157.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(202.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(247.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(292.5)'/%3E%3Cellipse cx='0' cy='-8' rx='6' ry='9' transform='rotate(337.5)'/%3E%3C/g%3E%3Cg fill='%23e8829f'%3E%3Cellipse cx='0' cy='-4' rx='3.5' ry='5' transform='rotate(0)'/%3E%3Cellipse cx='0' cy='-4' rx='3.5' ry='5' transform='rotate(60)'/%3E%3Cellipse cx='0' cy='-4' rx='3.5' ry='5' transform='rotate(120)'/%3E%3Cellipse cx='0' cy='-4' rx='3.5' ry='5' transform='rotate(180)'/%3E%3Cellipse cx='0' cy='-4' rx='3.5' ry='5' transform='rotate(240)'/%3E%3Cellipse cx='0' cy='-4' rx='3.5' ry='5' transform='rotate(300)'/%3E%3C/g%3E%3Ccircle r='3.2' fill='%23b4506a'/%3E%3Ccircle r='1.6' fill='%234a1f2c'/%3E%3C/g%3E%3C/svg%3E");
    --text: #1a1f36;
    --text-muted: #6b7280;
    --border: #e8eaf0;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-sm: 0 4px 12px rgba(15, 31, 77, 0.06);
    --shadow: 0 12px 32px rgba(15, 31, 77, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 31, 77, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    line-height: 1.15;
    color: var(--navy-dark);
    font-weight: 800;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 10px 0 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--coral-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--coral-light);
    padding: 6px 14px;
    border-radius: 999px;
}

.lead {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 640px;
}

.text-accent {
    color: var(--coral);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(229, 56, 59, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(229, 56, 59, 0.4);
}

.btn-outline {
    background: #fff;
    color: var(--navy-dark);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.placeholder-box {
    background: linear-gradient(135deg, var(--bg-soft) 0%, #eef1f8 100%);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(15, 31, 77, 0.15);
}

.logo-text {
    font-size: 1.08rem;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
}

.main-nav {
    display: none;
    gap: 30px;
    font-weight: 600;
    font-size: 0.93rem;
}

.main-nav a {
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.2s ease;
}

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

.main-nav a:hover {
    color: var(--coral);
}

.header-actions {
    display: none;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--border);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav .btn {
    margin-top: 12px;
    text-align: center;
}

@media (min-width: 920px) {
    .main-nav {
        display: flex;
    }
    .header-actions {
        display: block;
    }
    .burger {
        display: none;
    }
}


.hero {
    padding: 64px 0 80px;
    background: radial-gradient(ellipse 70% 55% at 88% 8%, rgba(255, 255, 255, 0.55) 0%, transparent 60%),
                linear-gradient(150deg, #dcf0fb 0%, #a3d3f2 42%, #4f92da 100%);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-flower {
    position: absolute;
    background: var(--peony) center / contain no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero h1 {
    font-size: clamp(2.3rem, 6vw, 3.6rem);
    margin: 14px 0 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-photo {
    height: 280px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 920px) {
    .hero-inner {
        flex-direction: row;
        align-items: center;
    }
    .hero-text, .hero-media {
        flex: 1;
    }
    .hero-photo {
        height: 400px;
    }
}


.stats {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 16px 8px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #ffd9cf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    margin-top: 6px;
    font-weight: 500;
}

@media (min-width: 720px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .stat-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}


.about {
    padding: 88px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-photo {
    height: 260px;
    box-shadow: -18px 18px 0 rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
    transform: translateY(-4px);
    box-shadow: -22px 22px 0 rgba(30, 58, 138, 0.14);
}

.check-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
    font-weight: 500;
    transition: transform 0.2s ease;
}

.check-list li:hover {
    transform: translateX(4px);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
}

@media (min-width: 920px) {
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    .about-photo, .about-text {
        flex: 1;
    }
    .about-photo {
        height: 360px;
    }
}


.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.link-arrow {
    color: var(--navy);
    font-weight: 600;
    white-space: nowrap;
}

.link-arrow:hover {
    color: var(--coral);
}


.gallery {
    padding: 88px 0;
    background: var(--bg-soft);
}

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

.gallery-photo {
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-photo:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

@media (min-width: 720px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.news {
    padding: 88px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.news-card {
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: transparent;
}

.news-photo {
    height: 190px;
    margin-bottom: 18px;
}

.news-date {
    color: var(--coral-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.news-card h3 {
    font-size: 1.1rem;
    margin: 10px 0 10px;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

@media (min-width: 720px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.donate {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donate::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 56, 59, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.donate h2 {
    color: #fff;
    position: relative;
}

.donate .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #ffb8a8;
}

.donate .lead {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    position: relative;
}

.donate-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.donate-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.donate-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
    border-color: var(--coral);
}

.donate-method {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

.donate-value {
    font-size: 1rem;
    color: #fff;
}

.donate-arrow {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 720px) {
    .donate-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.volunteer {
    padding: 72px 0;
    text-align: center;
}

.volunteer-inner {
    max-width: 640px;
    margin: 0 auto;
}

.volunteer .lead {
    margin: 0 auto;
}

.volunteer-form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.volunteer-form input,
.volunteer-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-soft);
}

.volunteer-form input:focus,
.volunteer-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: #fff;
}

.volunteer-form button {
    align-self: flex-start;
}

@media (min-width: 600px) {
    .form-row {
        flex-direction: row;
    }
}

.site-footer {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #0a1638 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.footer-brand img {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a svg {
    width: 19px;
    height: 19px;
}

.social-links a:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.footer-col p, .footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--coral);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

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

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

@media (min-width: 720px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-lang-inline {
    display: flex;
    gap: 6px;
}

.mobile-lang-inline a {
    font-size: 1.1rem;
    opacity: 0.5;
    text-decoration: none;
}

.mobile-lang-inline a.active {
    opacity: 1;
}

@media (min-width: 920px) {
    .mobile-header-right {
        display: none;
    }
}

.vf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.vf-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.vf-field input,
.vf-field textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vf-field input:focus,
.vf-field textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(229, 56, 59, 0.12);
}

.vf-field input::placeholder,
.vf-field textarea::placeholder {
    color: #b0b8c9;
}

.footer-copy {
    display: inline-block !important;
}

@media (max-width: 480px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.site-footer a {
    position: relative;
    z-index: 10;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.lang-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #333;
    margin: 2px 0;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}


.lang-toggle-mobile {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.lang-toggle-mobile:hover {
    background: #f0f0f0;
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-header-right {
    position: relative;
}

.mobile-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.12);
    overflow: hidden;
    min-width: 160px;
    z-index: 200;
}

.mobile-lang-dropdown.show {
    display: flex;
    flex-direction: column;
}

.mobile-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-lang-dropdown a.active {
    color: var(--coral);
    font-weight: 700;
}

.promo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 77, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-overlay.show {
    display: flex;
    opacity: 1;
}

.promo-modal {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: promoRise 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

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

.promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.promo-body {
    padding: 28px 32px 32px;
}

.promo-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.promo-modal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 26px;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 31, 77, 0.45);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.promo-close:hover {
    background: rgba(15, 31, 77, 0.7);
}

@media (min-width: 480px) {
    .promo-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.consent-field {
    margin-top: 10px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-checkbox a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.consent-checkbox a:hover {
    text-decoration: underline;
}
