/* =========================================
   Дизайн-система та змінні
   ========================================= */
   :root {
    /* Кольори */
    --color-primary: #0F2744;     /* Темно-синій */
    --color-secondary: #556B2F;   /* Оливковий (Dark Olive Green) */
    --color-accent: #6B8E23;      /* Світліший оливковий (Olive Drab) */
    --color-light: #F8F9FA;       /* Світло-сірий фон */
    --color-white: #FFFFFF;
    --color-dark: #111111;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #E0E0E0;

    /* Шрифти */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Відступи */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Інше */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 39, 68, 0.15);
}

/* =========================================
   Базові стилі
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-white h2, .text-white h3, .text-white p { color: var(--color-white); }
.bg-light { background-color: var(--color-light); }
.bg-dark { background-color: var(--color-primary); }
.mt-4 { margin-top: var(--spacing-md); }
.mt-5 { margin-top: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-sm); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; }

/* Утиліти для зображень */
.rounded-img { border-radius: var(--border-radius-lg); }
.shadow { box-shadow: var(--shadow-lg); }

/* =========================================
   Кнопки
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-light {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   Хедер та Навігація
   ========================================= */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-mark {
    display: block;
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
}

.logo-title {
    font-weight: 800;
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

.logo-text small {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-secondary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-primary);
    position: relative;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* =========================================
   Блок 1: Hero
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Header offset */
    color: var(--color-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.9) 0%, rgba(15, 39, 68, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(85, 107, 47, 0.8);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--color-accent);
}

/* =========================================
   Заголовки секцій
   ========================================= */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-secondary);
    padding-left: 15px;
    margin-top: 20px;
}

/* =========================================
   Блок 2: About
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* =========================================
   Блок 3: Who we help
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-secondary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(85, 107, 47, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* =========================================
   Блок 4: How we help
   ========================================= */
.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: 40px;
}

.help-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* =========================================
   Блок 5: Faith
   ========================================= */
.faith {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3c66 100%);
}

.faith::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/support_hands.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.faith-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.faith-header {
    max-width: 760px;
    margin: 0 auto 42px;
}

.faith-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(220, 231, 197, 0.2);
    border-radius: 999px;
    color: #dce7c5;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
}

.faith-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.faith-intro {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.faith-beliefs {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    padding: 34px 36px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 40px rgba(6, 18, 34, 0.18);
    margin-bottom: 34px;
}

.faith-beliefs-intro {
    text-align: left;
}

.faith-beliefs-intro h3 {
    margin-bottom: 14px;
    color: var(--color-white);
    font-size: 1.6rem;
}

.faith-beliefs-intro p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.belief-list {
    text-align: left;
    margin: 0;
    display: grid;
    gap: 14px;
}

.belief-list li {
    position: relative;
    padding: 18px 18px 18px 54px;
    margin-bottom: 0;
    font-size: 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.belief-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.faith-outro {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

/* =========================================
   Блок 6 & 7: Team & Partners
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.team-highlight {
    background-color: rgba(85, 107, 47, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border-left: 4px solid var(--color-secondary);
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.partners-list li {
    background-color: var(--color-light);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-primary);
}

/* =========================================
   Блок 9: Get Help (Форма)
   ========================================= */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.form-info {
    padding: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.form-info .section-title {
    color: var(--color-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 5px;
}

.form-container {
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1);
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.form-error {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8d7da;
    color: #842029;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   Блок 8: Location
   ========================================= */
.location {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 39, 68, 0.82), rgba(15, 39, 68, 0.68)),
        url('../images/support_hands.png') center/cover no-repeat;
}

.location::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at 84% 78%, rgba(107, 142, 35, 0.24), transparent 20%);
    pointer-events: none;
}

.location .container {
    position: relative;
    z-index: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(5, 15, 28, 0.28);
}

.location-info-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 40px;
    background:
        linear-gradient(180deg, rgba(15, 39, 68, 0.92), rgba(15, 39, 68, 0.84)),
        url('../images/support_hands.png') center/cover no-repeat;
    color: var(--color-white);
}

.location-info {
    color: var(--color-white);
}

.location-info h2,
.location-info h3,
.location-info p {
    color: var(--color-white);
}

.location-info .section-title {
    margin-bottom: 0;
}

.location-meta {
    display: grid;
    gap: 22px;
}

.location-meta-block {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.location-meta-title {
    margin-bottom: 10px;
    color: #dce7c5;
    font-size: 1.15rem;
}

.location-meta-title i {
    margin-right: 8px;
    color: #b8cb82;
}

.location-meta-text {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
}

.address-card {
    display: flex;
    gap: 20px;
    margin-top: 26px;
    margin-bottom: 28px;
}

.address-card i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.address-card h3 {
    margin-bottom: 5px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.contact-link i {
    width: 20px;
    color: #b8cb82;
}

.contact-link:hover {
    color: #ffffff;
}

.location-map {
    display: flex;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;
    position: relative;
    background: linear-gradient(180deg, #e8eef4 0%, #dce4ea 100%);
}

.map-canvas {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.map-overlay-link {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(15, 39, 68, 0.16);
}

.map-overlay-link::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
}

.map-overlay-link:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-1px);
}

.leaflet-container {
    font-family: var(--font-body);
}

.custom-map-marker {
    background: transparent;
    border: 0;
}

.custom-map-marker-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.custom-map-marker-pin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, #6d8340 0%, #12345a 100%);
    transform: rotate(-45deg);
    box-shadow: 0 14px 24px rgba(8, 22, 38, 0.28);
    border: 3px solid rgba(255, 255, 255, 0.95);
}

.custom-map-marker-pin::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
}

.custom-map-marker-badge {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 33px;
    transform: rotate(45deg) translateY(-1px);
}

.custom-map-marker-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.custom-map-marker-label {
    display: inline-flex;
    align-items: center;
    max-width: 170px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
    box-shadow: 0 12px 24px rgba(10, 22, 37, 0.16);
}

.street-map-label {
    background: transparent;
    border: 0;
}

.street-map-label span {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: #202020;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 12px rgba(15, 39, 68, 0.1);
}

.street-map-label-rizdvyana span {
    padding: 8px 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    color: #b12828;
    letter-spacing: 0.04em;
}

.leaflet-popup-content-wrapper {
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(10, 22, 37, 0.18);
}

.leaflet-popup-content {
    margin: 14px 16px;
    color: var(--color-primary);
}

.map-popup-title {
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.map-popup-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.map-popup-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--color-secondary);
    font-weight: 600;
}

.map-popup-link:hover {
    color: var(--color-primary);
}

.map-placeholder iframe {
    display: block;
}

/* =========================================
   Блок 10: Support
   ========================================= */
.donation-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.donation-card {
    background-color: var(--color-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.donation-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.account-number {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin: 15px 0 5px;
}

.account-name {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.copy-card-btn {
    width: 100%;
    margin-top: 24px;
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.copy-card-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.copy-card-btn.is-copied {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.donation-card-mono {
    background: linear-gradient(160deg, #f4f5f7 0%, #eef1f4 100%);
}

.mono-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 12px 18px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.mono-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #111111;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.mono-logo-text {
    color: #111111;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mono-btn {
    width: 100%;
    margin-top: 24px;
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.mono-btn:hover {
    background: #2b2b2b;
    border-color: #2b2b2b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   Блок 11: Share
   ========================================= */
.share-highlight {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.btn-social:hover { color: white; opacity: 0.9; transform: translateY(-2px); }

.btn-facebook { background-color: #1877F2; }
.btn-telegram { background-color: #0088cc; }
.btn-viber { background-color: #7360f2; }

/* =========================================
   Фінальний заклик
   ========================================= */
.final-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 100px 0;
}

/* =========================================
   Футер
   ========================================= */
.footer {
    background-color: #081626;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--color-white);
}

.footer-logo-mark {
    display: block;
    width: 54px;
    height: auto;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--font-heading);
    line-height: 1;
}

.footer-logo-title {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.footer-logo-text small {
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(212, 221, 194, 0.95);
}

/* =========================================
   Анімації (Reveal)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =========================================
   Медіа-запити (Адаптивність)
   ========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .about-grid, .help-grid, .team-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .form-wrapper { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .faith-beliefs { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-list { flex-direction: column; width: 100%; text-align: center; }
    .nav-link { display: block; padding: 10px; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .faith-header { margin-bottom: 28px; }
    .faith-beliefs {
        padding: 26px 22px;
        gap: 24px;
    }
    .faith-beliefs-intro h3 { font-size: 1.35rem; }
    .belief-list li {
        padding: 16px 16px 16px 48px;
        font-size: 1rem;
    }
    .belief-list li::before {
        left: 16px;
        top: 16px;
    }
    .location-info-column {
        padding: 28px 22px;
        gap: 24px;
    }
    .address-card {
        gap: 16px;
        margin-top: 22px;
        margin-bottom: 24px;
    }
    .map-placeholder,
    .map-canvas {
        min-height: 360px;
    }
    .map-overlay-link {
        top: 12px;
        left: 12px;
        padding: 9px 12px;
        font-size: 0.88rem;
    }
    .logo-mark { width: 44px; }
    .logo-title { font-size: 1.05rem; }
    .logo-text small { font-size: 0.74rem; }
    .footer-logo-mark { width: 46px; }
    .footer-logo-title { font-size: 1.3rem; }
    .footer-logo-text small { font-size: 0.76rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .cards-grid { grid-template-columns: 1fr; }
    .donation-options { grid-template-columns: 1fr; }
}
