/* Сброс базовых отступов */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Montserrat', 'Noto Sans Armenian', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Шапка сайта */
.main-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111111;
}

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

.nav-link {
    text-decoration: none;
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #111111;
}

/* Макет страницы и секций */
.app-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow-x: hidden;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 6rem 10%;
    min-height: 80vh;
    background-color: #ffffff;
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.info-text {
    flex: 1.1;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-text.empty {
    display: block;
}

.info-media {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-row.reverse .info-media {
    justify-content: flex-start;
}

.info-media img {
    width: 100%;
    height: auto;
    max-width: 440px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.09);
}

.left-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    text-align: left;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #111111;
    background: linear-gradient(135deg, #111111 20%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 400;
    text-align: left;
}

/* Анимация появления при скролле (Scroll Reveal) */
.scroll-reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-left {
    transform: translateX(-60px);
}

.scroll-reveal.reveal-right {
    transform: translateX(60px);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Мобильная адаптивность */
/* Мобильная и планшетная адаптивность (макс. 900px) */
@media (max-width: 900px) {
    .info-row, .info-row.reverse {
        flex-direction: column;
        gap: 2.5rem;
        padding: 4rem 5%;
        min-height: auto;
        text-align: center;
    }
    .info-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .left-title {
        text-align: center;
    }
    .left-description {
        text-align: center;
    }
    .info-media,
    .info-row.reverse .info-media {
        width: 100%;
        justify-content: center;
        display: flex;
    }
    .info-media img {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        display: block;
    }
    .stats-header {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .stats-title {
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .requisites-row {
        padding: 4rem 5%;
    }
}

/* Блок статистики */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.soldiers-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.stats-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.stat-counter {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-card.accent {
    background-color: #fff8f8;
    border-color: #ffeaea;
}

.stat-card.accent .stat-counter {
    color: #d32f2f;
}

.stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
}

.stat-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
    line-height: 1.5;
}

.stat-card.accent .stat-text {
    color: #b71c1c;
}


/* Кнопка пожертвования */
.donate-btn {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', 'Noto Sans Armenian', sans-serif;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease,
                opacity 0.3s ease,
                visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.donate-btn svg {
    transition: transform 0.3s ease;
}

.donate-btn:hover {
    transform: translateX(-50%) scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.25);
    background: linear-gradient(135deg, #d32f2f 0%, #ff6f00 100%);
}

.donate-btn:hover svg {
    transform: scale(1.15);
}

.donate-btn:active {
    transform: translateX(-50%) scale(0.98) translateY(0);
}

.donate-btn.visible {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

/* Адаптивность для кнопки на мобильных */
@media (max-width: 768px) {
    .donate-btn {
        width: calc(100% - 32px);
        max-width: 320px;
        justify-content: center;
        padding: 1.1rem 2rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    .donate-btn.visible {
        bottom: 30px;
    }
    .donate-btn.visible:hover {
        transform: translateX(-50%) scale(1.03);
    }
    .donate-btn.visible:active {
        transform: translateX(-50%) scale(0.98);
    }
}

/* Секция контактов */
.contacts-row {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    justify-content: center;
    text-align: center;
    padding: 5rem 10%;
}

.contacts-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.contacts-single {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.contacts-single .contact-card {
    width: 100%;
    max-width: 450px;
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.social-link {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Фирменные ховеры для каждой соцсети */
.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: transparent;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: transparent;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 2.5rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6f00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ffeaea;
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.04);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffeaea;
    color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #d32f2f 0%, #ff6f00 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.contact-card:hover .contact-icon svg {
    transform: rotate(15deg);
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
    line-height: 1.5;
}

a.contact-value:hover {
    color: #d32f2f;
    text-decoration: underline;
}



@media (max-width: 600px) {
    .contacts-row {
        padding: 4rem 1.5rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Стили подвала (footer) */
.main-footer {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    color: #888888;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Noto Sans Armenian', sans-serif;
    width: 100%;
    margin-top: 4rem;
    padding: 0 1.5rem;
    text-align: center;
}

/* Секция реквизитов */
.requisites-row {
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    justify-content: center;
    text-align: center;
    min-height: 50vh !important;
    padding: 5rem 10%;
}

.requisites-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.requisites-card {
    width: 100%;
    max-width: 600px;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border: 2px dashed #ffeaea;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.requisites-card:hover {
    transform: translateY(-4px);
    border-color: #d32f2f;
}

.requisites-placeholder-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
}

.requisites-subtext {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* Вкладки реквизитов */
.requisites-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.tab-btn {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #666666;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover {
    color: #111111;
    border-color: #111111;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #d32f2f 0%, #ff6f00 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.15);
}

/* Контент вкладок */
.tab-content {
    display: none;
    width: 100%;
    max-width: 850px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* Grid для отображения деталей реквизитов */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    text-align: left;
    width: 100%;
}

.details-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f9f9f9;
    gap: 2rem;
}

.details-row-item:last-child {
    border-bottom: none;
}

.details-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #888888;
    flex-shrink: 0;
    width: 240px;
}

.details-value-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-grow: 1;
    justify-content: flex-end;
}

.details-value {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    word-break: break-all;
    text-align: right;
}

.copy-btn {
    background: #f5f5f5;
    border: none;
    color: #666666;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.copy-btn:hover {
    background: #ffeaea;
    color: #d32f2f;
}

.copy-btn.copied {
    background: #e2fbe8;
    color: #1b5e20;
}

/* Стили для RUB с суб-вкладками или аккордеоном */
.rub-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.rub-option-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.rub-option-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #ffeaea;
    padding-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 600px) {
    .details-row-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 1rem 0;
    }
    
    .details-label {
        width: auto;
    }
    
    .details-value-container {
        justify-content: space-between;
        width: 100%;
    }
    
    .details-value {
        text-align: left;
    }
    
    .requisites-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    .details-grid {
        padding: 1.5rem;
     }
}

/* Переключатель языков */
.lang-switcher {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.lang-btn {
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    padding: 0.3rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    border-color: #d32f2f;
    transform: scale(1.08);
}

.lang-btn.active {
    background: #ffeaea;
    border-color: #d32f2f;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.1);
}

/* Адаптивность для шапки и переключателя */
@media (max-width: 768px) {
    .main-header {
        height: auto;
        padding: 1rem 5%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Планшеты и небольшие ноутбуки (макс. 1100px) */
@media (max-width: 1100px) {
    .info-row {
        padding: 5rem 6%;
        gap: 3rem;
    }
    .info-media img {
        max-width: 380px;
    }
    .main-header {
        padding: 0 5%;
    }
}

/* Мобильные телефоны (макс. 480px) */
@media (max-width: 480px) {
    .main-header {
        padding: 1.2rem 4%;
    }
    .logo {
        font-size: 1.3rem;
    }
    .nav-links {
        gap: 0.8rem;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .lang-switcher {
        gap: 0.2rem;
    }
    .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    .info-row, .info-row.reverse {
        padding: 3.5rem 4%;
        gap: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat-card {
        padding: 1.2rem;
    }
    .stat-counter {
        font-size: 2.2rem;
    }
    .stat-text {
        font-size: 0.85rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
    .requisites-card {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }
    .details-grid {
        padding: 1.2rem;
        border-radius: 16px;
    }
    .rub-option-card {
        padding: 1.2rem;
        border-radius: 16px;
    }
    .details-value {
        font-size: 0.9rem;
    }
    .copy-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}




