@import url("//cdn.web-fonts.ge/fonts/bpg-web-001-caps/css/bpg-web-001-caps.min.css");

:root {
    /* Theme tokens */
    --color-primary: #22435E;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text-blue: #0F47AD;
    --color-btn: #5489EA;
    --color-hover-bg: #0000000D;
    --color-divider: #0000001A;
    --radius-sm: 10px;
    --font-base: "Noto Sans Georgian", sans-serif;
    --fz-base: 16px;
}


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

body {
    font-family: var(--font-base);
    color: var(--color-white);
    background: var(--color-white);
}

/* Header */
.header {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
}

.header__container {
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.site-logo {
    display: block;
    height: 84px;
    width: auto;
    transition: opacity 0.25s ease;
}

.site-logo--dark {
    display: none;
}

/* default hidden */
.header--menu-open .site-logo--light {
    display: none;
}

.header--menu-open .site-logo--dark {
    display: block;
}


.header__logo img {
    /* display: block; */
    height: 84px;
    width: auto;
}

.nav__list {
    max-width: 726px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    /*     overflow: hidden; */
}

.nav::after {
    content: '';
    position: absolute;
    background: #22435e;
    width: 17.79vw;
    height: 152px;
    top: 0;
    right: 0;
    z-index: 0;
}

.header--menu-open .nav::after {
    background: #ffffff;
}

.menu-item {
    list-style: none;
}

.header--menu-open .menu-item a {
    color: #22435E;
}

.menu-item a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 360px;
    transition: background-color 0.2s ease;
    font-family: "BPG WEB 001 Caps", sans-serif;
}

.menu-item a:hover,
.menu-item a:focus {
    background-color: #FFFFFF0D;
    outline: none;
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.btn {
    font-family: var(--font-base);
    font-size: var(--fz-base);
    line-height: 1;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
    background-color: var(--color-btn);
    color: var(--color-white);
    padding: 12px 20px;
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #4079d9;
}

/* Hamburger icon placeholder */
.header__menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 10px;
    border-radius: 50%;
    background-color: #0000000D;
    transition: 0.3s;
}

.header__menu-btn:hover {
    background: #FFFFFF26;
}


.header--menu-open .header__menu-btn {
    background-color: #0000000D;
    transition: 0.3s;
}

.header--menu-open .header__menu-btn:hover {
    background: #00000026;
}

.header--menu-open .header__menu-btn span {
    background-color: #22435E;
}

.header--menu-open .header__menu-btn span {
    background-color: #22435E;
}

.header--menu-open .header__menu-icon::before,
.header--menu-open .header__menu-icon::after {
    background-color: #22435E;

}

.header__menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-white);
    position: relative;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-white);
    left: 0;
}

.header__menu-icon::before {
    top: -6px;
}

.header__menu-icon::after {
    top: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
}



/* Overflow bar created by JS */
.header__overflow-bar {
    display: none;
    background: #F2F2F2;
    width: 100%;
    box-shadow: 0px 20px 50px -30px #00000040;
}

.header__overflow-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav__overflow {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}

.nav__overflow li a {
    color: #22435E;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    padding: 6px 8px;
    border-radius: 8px;
}


.header__overflow-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__overflow-social svg {
    width: 18px;
    height: 18px;
    fill: #22435E;
}

.header--menu-open {
    background: var(--color-white);
}


/* =====================
   HERO SECTION
===================== */
.hero {
    position: relative;
    background: linear-gradient(180deg, #22435E 0%, #1C3850 100%);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    color: #fff;
    text-align: center;
    padding: 52px 0 0px 0;
    height: 611px;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__content {
    max-width: 996px;
    margin-bottom: 0;
    width: 100%;
}

.hero__title {
    font-family: "Noto Sans Georgian", sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 48px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    font-size: 20px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.25s ease;
    padding: 14px 28px;
    text-decoration: none;
    font-family: "BPG WEB 001 Caps", sans-serif;
}

.btn--primary {
    background-color: #5489EA;
    color: #fff;
}

.btn--primary:hover {
    background-color: #4079d9;
}

.btn--outline {
    border: 2px solid #D7E2F4;
    color: #FBFCFE;
    background: transparent;
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    /* text-transform: uppercase; */
    font-feature-settings: 'case';
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
}

.btn--outline:hover {
    background: #F5F9FE;
    color: #394960;
    border: 2px solid #F5F9FE;

}

.btn--outline-filled {
    background: #F5F9FE !important;
    color: #394960;
    background: transparent;
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    /* text-transform: uppercase; */
    font-feature-settings: 'case';
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
}

.hero__media {
    position: relative;
    max-width: 794px;
    width: 100%;
    background: #D9E9FF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 90px 100px -50px #060C2840;
    top: 52px;
    z-index: 99;
}

.hero__video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =====================
   STATS SECTION
===================== */
.stats {
    background: #fff;
    padding: 280px 0px 96px 0px;
}

.stats__container {
    display: flex;
    gap: 80px;
    width: 100%;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: fit-content;
    width: 100%;
    /* margin: 0 auto; */
}

.stat__number {
    font-family: "Noto Sans Georgian", sans-serif;
    font-size: 72px;
    font-weight: 200;
    color: #225BC3;
    transition: color 0.3s ease;
    text-align: left;
}

.stat__label {
    font-family: "Noto Sans Georgian", sans-serif;
    font-size: 14px;
    color: #0F47AD;
    font-weight: 300;
    text-align: left;
}

@media (max-width: 1024px) {
    .stats__container {
        flex-direction: column;
        display: flex;
        gap: 48px;
        margin: 0 auto;
        max-width: 220px;
        align-items: center;
    }
}



/* =====================
   CONDITIONS SECTION
===================== */
.conditions {
    background: #E9EDFF;
    padding: 31px 36px 48px 36px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 100px auto 100px auto;
    box-shadow: 0px 90px 100px -50px #060C281A;
}

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

.conditions__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.conditions__title {
    font-family: "BPG WEB 001 Caps", sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #000;
}

.conditions__text p {
    font-family: "Noto Sans Georgian", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 16px;
    font-weight: 400;
}

.conditions__list {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    border-top: 1px solid #D0D5EA;
    padding-top: 36px;
}

.conditions__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.conditions__icon {
    color: #00B272;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 0;
}

.conditions__item strong {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    margin-bottom: 4px;
    font-family: "BPG WEB 001 Caps", sans-serif;
    margin-top: 4px;
}

.conditions__item p {
    font-size: 16px;
    color: #000000;
    line-height: normal;
}

.btn--outline-blue {
    border: 2px solid #3C74DD;
    background: #F5F9FE !important;
    color: #3C74DD;
    background: transparent;
    padding: 12.5px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    /* text-transform: uppercase; */
    font-feature-settings: 'case';
    -moz-font-feature-settings: 'case';
    -webkit-font-feature-settings: 'case';
    font-feature-settings: 'case' on;
}

@media (max-width: 1024px) {
    .conditions__list {
        grid-template-columns: 1fr;
    }
}


/* =====================
   NEWS SECTION
===================== */
.news {
    background: #fff;
    padding: 100px 20px 96px 20px;
}

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

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 25px;
}

.news__title {
    font-family: "BPG WEB 001 Caps", sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #000;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news__card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 24px;
}

.news__card:hover {
    background: #ECF1F9;
}

.news__image-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
}


.news__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news__card:hover .news__image {
    transform: scale(1.08);
}

.news__meta {
    font-size: 14px;
    color: #87A0C5;
    font-weight: 400;
    font-family: 'Noto Sans Georgian';
    margin-top: 16px;
}

.news__card-title {
    margin: 12px 0;
    font-size: 24px;
    font-weight: 400;
    color: #131820;
    line-height: normal;
    font-family: "BPG WEB 001 Caps", sans-serif;
    line-height: 1.3;
}



.news__card-title a {
    color: inherit;
    text-decoration: none;
}


.news__excerpt {
    font-size: 16px;
    color: #4D6180;
    line-height: normal;
    font-weight: 400;
}

.btn--outline-blue--nobg {
    border: 2px solid #3C74DD;
    background: #F5F9FE !important;
    color: #3C74DD;
    background: transparent;
    padding: 12.5px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    font-family: "BPG WEB 001 Caps", sans-serif;
}

@media (max-width: 1024px) {
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .news__grid {
        grid-template-columns: 1fr;
    }

    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
        margin: 0;
    }
}


/* =====================
   PROJECTS SECTION
===================== */
.projects {
    background: #fff;
    padding: 100px 00px 118px 00px;
}

.projects__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project__card {
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
}

.project__title {
    font-family: "BPG WEB 001 Caps", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #131820;
    margin-bottom: 32px;
    text-align: center;
}

.project__image {
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s ease;
    height: 302px;
}

.project__image img {
    width: 100%;
    height: 302px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project__card:hover {
    background: #ECF1F9;
}

.project__card:hover img {
    transform: scale(1.08);
}

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

@media (max-width: 1024px) {
    .projects__container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .projects__container {
        grid-template-columns: 1fr ;
        gap: 30px;
    }
}


/* =====================
   FOOTER
===================== */
.site-footer {
    background: #F2F2F2;
    padding: 60px 20px 20px;
    font-family: "Noto Sans Georgian", sans-serif;
    color: #000;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.footer__logo img {
    max-width: 220px;
    height: auto;
}

.footer__menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
}

.footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 12px;
    transition: 0.2s;
    border-radius: 12px;
}

.footer__menu a:hover {
    color: #000000;
    background: #0000000D;
    border-radius: 12px;
}

.footer__menu--contacts li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__menu--contacts a:hover {
    background: transparent;
}

.footer__icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 14px;
    color: #444;
}

.footer__socials {
    display: flex;
    gap: 14px;
}

.footer__socials a img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer__socials a:hover img {
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__menus {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer__menus {
        grid-template-columns: 1fr;
    }

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


/* =====================
   PAGE TEMPLATE
===================== */
.page {
    background: #f5f8fb;
    min-height: 70vh;
}

.page__container {
    max-width: 794px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 135px 0;
}

.page__title {
    font-family: "Noto Sans Georgian", sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #131820;
    margin-bottom: 24px;
    text-align: left;
}

.page__thumb {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.page__thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page__content {
    text-align: left;
    font-family: "Noto Sans Georgian", sans-serif;
    font-size: 16px;
    line-height: normal;
    color: #1D2430;
    font-weight: 400;
}

.page__content p {
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .page {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        background: #FFFFFF;
    }

    .page__title {
        font-size: 24px;
    }
}

.page__button {
    text-align: center;
    margin-top: 40px;
}

.page__button a {
    border-radius: 360px;
}


/* =====================
   CHECKLIST BLOCK
===================== */
.checklist {
    background: #E9EDFF;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0px 90px 100px -50px #060C281A;
}

.checklist__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist__icon {
    color: #00B272;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist__content strong {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    margin-bottom: 4px;
}

.checklist__content p {
    font-size: 16px;
    line-height: normal;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 600px) {
    .checklist {
        padding: 36px;
        order: -1;
        margin-bottom: 24px;
    }
}

.checklist__icon img {
    width: 24px;
    height: 24px;
}

.conditions__icon img {
    width: 24px;
    height: 24px;
}


/* =====================
   NEWS PAGE LAYOUT
===================== */
.news-page {
    background: #f8fafc;
    padding: 100px 20px;
}

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

.page-title {
    font-family: "Noto Sans Georgian", sans-serif;
    font-weight: 900;
    font-size: 36px;
    text-align: left;
    color: #000;
    margin-bottom: 24px;
    padding: 0 20px;
}

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



.no-news {
    text-align: center;
    color: #666;
    font-size: 16px;
}



.news__cta-link {
    font-size: 14px;
    font-weight: 600;
    color: #5489EA;
    text-decoration: none;
    display: inline-flex;
    gap: 4px;
    transition: color 0.3s ease;
}



.news__cta-icon {
    transition: transform 0.3s ease;
}

.news__cta-link:hover .news__cta-icon {
    transform: translateX(3px);
}



/* =====================
   CUSTOM PAGINATION
===================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    font-family: "Noto Sans Georgian", sans-serif;
}

.pagination__numbers {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.pagination__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-right: 1px solid #e5e7eb;
    transition: background 0.25s ease, color 0.25s ease;
}

.pagination__number:last-child {
    border-right: none;
}

.pagination__number:hover {
    background: #f0f3f9;
}

.pagination__number.active {
    background: #4285f4;
    color: #fff;
    font-weight: 600;
}

.pagination__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 48px;
    border-radius: 12px;
    background: transparent;
    transition: background 0.25s ease;
}

.pagination__arrow:hover:not(.disabled) {
    background: #f0f3f9;
}

.pagination__arrow.disabled svg {
    opacity: 0.4;
    pointer-events: none;
}


/* =====================
   SINGLE POST
===================== */
main.single-post {
    background: #F8FAFC;
    font-family: "Noto Sans Georgian", sans-serif;
    padding: 80px 0;
}

.single-post .container {
    max-width: 800px;
    margin: 0 auto;
}

.single-post__breadcrumb {
    margin-bottom: 20px;
}

.back-link {
    font-size: 14px;
    color: #87A0C5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.back-link:hover {
    text-decoration: none;
}

.single-post__title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #000;
}

.single-post__thumb {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.single-post__thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.single-post__content {
    font-size: 16px;
    line-height: normal;
    color: #33414D;
}

.single-post__content p {
    margin-bottom: 18px;
}

.single-post__content img {
    border-radius: 12px;
    margin: 20px 0;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.single-post__footer {
    padding-top: 28px;
    display: flex;
    justify-content: flex-start;
}

.single-post__share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #33414D;
}

.single-post__share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.single-post__share a:hover {
    transform: translateY(-2px);
}

/* =====================
   COPY LINK TOOLTIP
===================== */
.copy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.copy-link:hover {
    transform: translateY(-2px);
}

.copy-tooltip {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    background: #5489EA;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Noto Sans Georgian", sans-serif;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -10px);
}

/* =====================
   FAQ PAGE
===================== */
.faq-page {
    background: #f9fbff;
    padding: 100px 20px;
    font-family: "Noto Sans Georgian", sans-serif;
}

.faq-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__title {
    font-weight: 900;
    font-size: 36px;
    color: #0A0D0F;
    margin-bottom: 24px;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: #E9EDFF;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active {
    background: #CCD6FF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.faq__question {
    width: 100%;
    padding: 24px 24px 20px 24px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    font-family: 'Noto Sans Georgian';
}

.faq__icon {
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #475B6B;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
    padding-bottom: 18px;
}


.faq__item.active .faq__icon {
    stroke: #000000;
}

.faq__item .faq__icon {
    stroke: #475D6B;
}

.page-template-page-privacy .page__content h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 32px;
}

.page-template-page-privacy .page__content h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
}

.page-template-page-privacy .page__content ul {
    padding: 0 40px;
}

.page-template-page-privacy .page__content p {
    color: #33414D;
    font-size: 16px;
    font-weight: 400;
}

.page-template-page-privacy {

    background: #F8FAFC;
}

.slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    overflow: visible;
    gap: 0;
    max-width: 1810px;
    margin: 0 auto;
}

/* Base style for every card */
.project-card {
    position: absolute;
    top: 0;
    width: 355px;
    border-radius: 12px;
    overflow: hidden;
    background: #CEDEFD;
    opacity: 0.4;
    transform: scale(0.88);
    transition: all 0.7s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

/* Active card ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ front layer */
.project-card.active {
    width: 740px;
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 5;
    pointer-events: auto;
    filter: none;
    box-shadow: 0px 90px 100px -50px #060C281A;
}

/* Left inactive ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ overlap slightly under */
.project-card.prev {
    transform: translateX(60px) translateY(20px) scale(0.9) rotateY(-10deg);
    z-index: 3;
    opacity: 0.5;
}

/* Right inactive ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ overlap slightly under */
.project-card.next {
    transform: translateX(-70px) translateY(20px) scale(0.9) rotateY(-10deg);
    z-index: 3;
    opacity: 0.5;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.project-card.active img {
    height: 364px;
}

.project-card .details {
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0 25px;
    transition: opacity .4s ease, visibility .4s;
}

.project-card.active .details {
    opacity: 1;
    visibility: visible;
    padding: 20px 35px 49px 35px;
    display: block;
}



.navslider {
    background: #E9EDFF;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    top: 28%;
    transform: translateY(-70%);
    z-index: 10;
    transition: background 0.3s;
}

.navslider:hover {
    background: #e2e8ff;
}

.prev {
    left: 12%;
    transform: translateY(-70%) translateX(100%);
}

.next {
    right: 12%;
    transform: translateY(-70%) translateX(-130%);
}

.project__meta img {
    width: 24px !important;
    height: 24px !important;
}

.project__meta {
    text-align: center;
}

.project__meta p {
    color: #33414D;
    font-family: Noto Sans Georgian;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;

}

.projects__title {
    color: #0A0D0F;
    font-family: Noto Sans Georgian;
    font-weight: 900;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 48px;
}

.projects-page {
    padding: 85px 0;
}

.project__image-link {
    width: 100%;
    display: flex;
    height: 238px;
}

.project-card.active .project__image-link {
    width: 100%;
    display: flex;
    height: auto;
}

.projects__subtitle {
    font-family: Noto Sans Georgian;
    font-weight: 900;
    font-size: 28px;
    line-height: 100%;
    color: #0A0D0F;
    padding: 0 20px;
    margin-bottom: 24px;
}


.projects-page .container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 150px;
}

/* =====================
   PROJECT SLIDER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â RESPONSIVE
===================== */

/* Medium screens (tablets, laptops under 1200px) */
@media (max-width: 1200px) {
    .slider {
        height: 420px;
    }

    .project-card.active {
        width: 600px;
    }

    .project-card.prev {
        transform: translateX(-180px) translateY(10px) scale(0.9) rotateY(6deg);
    }

    .project-card.next {
        transform: translateX(180px) translateY(10px) scale(0.9) rotateY(-6deg);
    }

    .navslider {
        top: 35%;
        width: 40px;
        height: 40px;
    }
}

/* Tablets and small laptops */
@media (max-width: 1024px) {
    .slider {
        height: 400px;
    }

    .project-card.active {
        width: 500px;
        height: 400px;
    }

    .project-card.prev {
        transform: translateX(-160px) translateY(15px) scale(0.9) rotateY(5deg);
    }

    .project-card.next {
        transform: translateX(160px) translateY(15px) scale(0.9) rotateY(-5deg);
    }

    .project-card img {
        height: 260px;
    }

    .project-card.active img {
        height: 300px;
    }

    .project-card.active .details {
        padding: 16px 24px 28px;
    }

    .navslider {
        top: 40%;
        width: 38px;
        height: 38px;
    }
}

/* Mobile portrait (max 1024px) */
@media (max-width: 1024px) {
    .slider {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .project-card,
    .project-card.active,
    .project-card.prev,
    .project-card.next {
        position: relative;
        transform: none !important;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        height: auto;
        opacity: 1;
        filter: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        pointer-events: all;
    }

    .project-card img {
        width: 100%;
        height: 240px;
    }

    .project-card .details {
        display: block;
        opacity: 1;
        visibility: visible;
        padding: 20px 24px 32px;
    }

    .navslider {
        display: none;
        /* Hide arrows on mobile */
    }

    .hero__title {
        font-size: 24px;
        width: 100%;
        padding: 0 16px;
        line-height: normal;
    }



    .hero__actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-direction: column-reverse;
        max-width: 181px;
        margin: 0 auto;
    }

    .hero__media {
        max-width: 95.47vw;
    }

    .hero {
        height: 491px;
        border-radius: 0;
    }

    .stat__number {
        font-size: 48px;
    }

    .stats {
        background: #fff;
        padding: 34.67vw 0px 96px 0px;
    }

    .conditions__header {
        flex-wrap: wrap;
        margin-bottom: 24px;
        display: flex;
        justify-content: flex-start;
    }

    .conditions__header .btn {
        display: none;
    }

    .conditions {
        margin: 0 15px;
        padding: 24px;
    }

    .conditions__title {
        font-size: 24px;
    }

    .news {
        background: #fff;
        padding: 42px 16px 42px 16px;
    }

    .news__header .btn {
        display: none;
    }

    .news__title {
        font-size: 24px;
    }

    .news__grid {
        gap: 32px;
        margin-top: 20px;
    }

    .news__card {
        padding: 0;
        border-radius: 0;
    }

    .news__container {
        border-bottom: 1px solid #D0D5EA;
        padding-bottom: 42px;
    }

    .projects {
        background: #fff;
        padding: 0px 00px 118px 00px;
    }

    .project__title {
        font-family: "Noto Sans Georgian", sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #0A0D0F;
        margin-bottom: 24px;
        text-align: center;
    }

    .swiper-wrapper .project__title{
        font-size: 16px;
    }
    
    .project__image {
        height: 240px;
        border-radius: 12px;
    }

    .project__image img {
        height: 240px;
    }


    .project__card {
        padding: 0 16px;
    }

    .footer__menu--contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .site-footer {
        padding: 73px 26px 27px 26px;
    }



    .footer__logo img {
        max-width: 125px;
    }

    .footer__menus {
        gap: 43px;
    }

    .header__logo img {
        height: 53px;
    }


    .nav__overflow {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 0;
        padding: 0;
        justify-content: center;
        flex: 1;
        flex-direction: column;
        padding: 7px 12px;
    }

    .header__overflow-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }


    .page__container {
        max-width: 794px;
        margin: 0 auto;
        text-align: center;
        padding: 52px 16px 105px 16px;
    }

    .page__thumb {
        margin-bottom: 20px;
    }


    .page__content {
        display: flex;
        flex-direction: column;
        word-break: break-word;
    }

    .news-page {
        background: #f8fafc;
        padding: 52px 20px;
    }

    .page-title {
        font-size: 24px;
        margin: 0;
        padding: 0;
    }

    .news__card-title {
        margin: 12px 0;
        font-size: 16px;
        font-weight: 400;
        color: #000000;
        line-height: normal;
    }

    main.single-post {
        background: #F8FAFC;
        padding: 52px 16px;
    }

    .single-post__title {
        font-size: 24px;
    }

    .faq__title {
        font-size: 24px;
        color: #000000;
    }

    .faq-page {
        padding: 52px 16px;
    }

    .faq__item.active .faq__icon {
        stroke: #000000;
        width: 25%;
    }

    .projects-page .container-wrapper {
        padding: 20px 16px;
    }

    .projects__subtitle {
        font-size: 20px;
        padding: 0;
    }


}


/* === MOBILE ONLY BREAKPOINT === */
@media (max-width: 1024px) {

    .mobileProjectsSwiper {
        width: 100%;
        padding-bottom: 140px;
        position: relative;
        overflow: visible;
    }

    /* Center active slide */
    .mobileProjectsSwiper .swiper-slide {
        transition: .35s ease;
        transform: scale(.85);
        opacity: .4;
    }

    .mobileProjectsSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    /* --- ARROWS --- */
    .mobile-prev,
    .mobile-next {
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: #CEDEFD;
        position: absolute !important;

        /* now works because padding-bottom added */
        z-index: 100;
        top: auto;
        bottom: 70px;
    }

    /* left arrow */
    .mobile-prev {
        right: 45px;
        transform: translateX(-50%);
        left: auto;
    }

    /* right arrow */
    .mobile-next {
        right: 30px;
        transform: translateX(50%);
    }

    .mobile-prev:after,
    .mobile-next:after {
        color: #3C74DD;
        font-size: 13px;
        font-weight: bold;
    }

    /* Pagination dots below arrows */
    .swiper-pagination {
        position: absolute;
        bottom: 15px;
    }

    .swiper {
        overflow: visible !important;
    }

    .swiper-wrapper {
        overflow: visible !important;
    }

    .swiper-pagination-bullet {
        background: #5489EA;
        opacity: .4;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
    }

    .project__meta {
        text-align: left;
    }

    .projects__title {
        display: none;
    }

    .project__meta p {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}


.single-projects .project__meta {
    text-align: left;
    background: #E7EFFE;
    box-shadow: 0px 90px 100px -50px #060C281A;
    padding: 26px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.single-projects .project__meta p {
    display: flex;
    gap: 12px;
    align-items: center;
}


.post-gallery {
    margin-top: 60px;
}

.post-gallery__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Wrapper for arrows outside */
.post-gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* Slider fixed height */
.postGallerySwiper {
    width: 100%;
    /* space for arrows */
}

/* Slide size EXACT */
.gallery-slide {
    width: 285px !important;
    height: 191px !important;
    border-radius: 8px;
    overflow: hidden;
}

/* Image */
.gallery-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block !important;
    border-radius: 8px !important;
    transition: .25s ease;
}

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

/* ARROWS */
.pg-prev {
    background: #CEDEFD;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.2s ease;
    position: absolute;
    left: -70px;
}

.pg-next {
    background: #CEDEFD;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.2s ease;
    position: absolute;
    right: -70px;
}

.pg-prev:hover,
.pg-next:hover {
    background: #CEDEFD;
}

.pg-prev::before,
.pg-next::before {
    font-size: 22px;
    font-weight: bold;
    color: #4975f6;
}

.pg-prev::before {
    content: '';
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDggMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik03IDFMMC45OTk5OTkgN0w3IDEzIiBzdHJva2U9IiMyMjQzNUUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.pg-next::before {
    content: '';
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDggMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDEzTDcgN0wxIDEiIHN0cm9rZT0iIzIyNDM1RSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #3C74DD;
    fill: #3C74DD;
}

/* Mobile tweak */
@media (max-width: 480px) {
    .postGallerySwiper {
        width: calc(100% - 90px);
    }

    .pg-prev,
    .pg-next {
        width: 38px;
        height: 38px;
    }
}


/* === MOBILE === */
@media (max-width: 1024px) {
    .post-gallery {
        /* overflow: hidden; */
    }

    .post-gallery-wrapper {
        gap: 12px;
        display: flex;
        position: relative;
        overflow: hidden;
        padding-bottom: 70px;
    }

    .postGallerySwiper {
        width: 100%;
    }

    .gallery-slide {
        width: 285px !important;
        height: 191px !important;
        border-radius: 8px;
        overflow: hidden;
    }


    .gallery-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
    }

    /* Move arrows under slider */
    .pg-prev {
        position: absolute;
        width: 44px;
        height: 44px;
        bottom: 18px;
        right: 60px;
        z-index: 999999;
        left: inherit;
    }

    .pg-next {
        position: absolute;
        width: 44px;
        height: 44px;
        bottom: 18px;
        right: 10px;
        z-index: 999999;
    }

    .gallery-nav-mobile {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    /* Pagination dots */
    .post-gallery-pagination {
        margin: 10px 0;
        display: flex;
        justify-content: center;
    }

    .swiper-button-disabled {
        /* background: #CEDEFD; */
        opacity: 0.5;
    }



    /* body.menu-open {
        position: fixed;
        overflow: hidden;
    } */

    .stat {
        display: flex;
        flex-direction: column;
        max-width: 64%;
        width: 100%;
    }

    .stat:last-child {
        max-width: 100%;

    }

    section.stats>div>div:nth-child(3)>div.stat__label {
        /* max-width: 90%; */
    }


}

.footer__menu--contacts>a:first-child {
    padding-top: 0;
}


.footer__menu--contacts {
    display: flex;
    flex-direction: column;
}

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.headerbtn {
    border-radius: 10px !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    border: none !important;
    padding-block: 0;
    padding-inline: 0;
}

.headerbtn span {
    position: relative;
    top: 2px;
}