@font-face {
    font-family: 'BebasNeue';
    src: url('/fonts/BebasNeue Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansGeorgian';
    src: url('/fonts/NotoSansGeorgian.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --navy: #1a2744;
    --green: #3a8c3f;
    --green-light: #5ab560;
    --green-grad: linear-gradient(135deg, #3a8c3f, #7dc67e);
    --off-white: #f5f6f2;
    --light-gray: #e8ece3;
    --text: #1a2744;
    --muted: #6b7a8d;
    --p-size: 14px;
}

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

main {
    padding-top: 80px;
}

.bg-main-blue {
    background-color: var(--navy);
    color: white;
    border-left: 5px solid var(--green);
    padding-left: 30px;
}

body {
    font-family: "NotoSansGeorgian", sans-serif !important;
}

/* :lang(en) body {
    font-family: "BebasNeue", sans-serif !important;
} */

/* :lang(en) p,
:lang(en) a,
:lang(en) span,
:lang(en) li,
:lang(en) button {
    font-family: "NotoSansGeorgian", sans-serif !important;
} */

body {
    background-color: var(--off-white);
}


a.nav-link,
.navbar-brand,
a.menu-link {
    font-family: "NotoSansGeorgian", sans-serif !important;
    color: var(--muted);
    font-size: 15px;
}

.navbar-brand {
    font-size: 22px;
}

.response {
    background: var(--navy);
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: var(--p-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.response:hover {
    background: var(--green);
    color: white;
}




.price-tab p {
    font-size: var(--p-size);
    /* color: rgba(255, 255, 255, 0.5); */
    color: var(--off-white);
}

.price-value {
    font-size: 52px;
    /* color: white; */
    color: var(--off-white);
    line-height: 1;
    letter-spacing: 2px;
}

.price-value>span {
    font-size: 22px;
}

p.subtitle {
    color: #6b7a8d;
}

.tariff-section {
    background-color: #fff;
}

p.fs13px {
    font-size: var(--p-size);

}

.tariff-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.tariff-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: var(--p-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tariff-bar-label .name {
    color: #6b7a8d;
}

.tariff-bar-label .val {
    color: #1a2744
}

.tariff-bar-track {
    height: 10px;
    background: #e8ece3;
    border-radius: 2px;
    overflow: hidden;
}

.tariff-bar-fill.competitor {
    background: rgba(26, 39, 68, 0.25);
    width: 100%;
}

.tariff-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
}

.tariff-bar-fill.citivolt {
    background: linear-gradient(135deg, #3a8c3f, #7dc67e);
    width: 94.7%;
}

.tariff-saving {
    margin-top: 25px;
    background: var(--navy);
    padding: 55px 25px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tariff-saving-text {
    color: var(--off-white);
}

.tariff-saving-text .big {
    font-size: 28px;
    color: var(--green-light);
    letter-spacing: 1px;
}

.navbar img {
    width: 40px;
    object-fit: cover;
    object-position: center center;
}



/*    section service      */

.service-card {
    background: white;
    /* padding: 44px 36px; */
    padding: 15px 35px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: default;
}



.service-card:hover {
    border-top-color: var(--green) !important;
    box-shadow: 0 20px 60px rgba(26, 39, 68, 0.1);
    transform: translateY(-5px);
    border-top-width: 4px !important;
}

.subtitle-3 {
    font-size: var(--p-size);
    font-weight: 300;
    color: var(--muted);
    margin-top: 6px;
    margin-bottom: 48px;
}

.service-icon {
    /* width: 52px; */
    height: 160px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    justify-content: center;
}

.service-icon img {
    width: 150px;
}

.services_desc {
    font-size: var(--p-size);
    line-height: 1.7;
    color: var(--muted);
    margin-top: 10px;
}

span.small-grey {
    color: #918c8c;
}

footer {
    background: #111b2e;
    color: rgba(255, 255, 255, 0.5);
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-top p,
.footer-bottom p {
    font-size: var(--p-size);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: var(--p-size);
}


.footer ul li {
    margin-bottom: 10px;
    font-size: var(--p-size);
    list-style: none;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color .2s;
    font-size: 16px;
}

.footer ul li a:hover {
    color: var(--green-light);
}

.footer-bottom span {
    font-size: 16px;
}

.footer h4 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

.footer-logo {
    width: 200px;
    object-fit: contain;
    object-position: center center;
    margin-bottom: 16px;
    filter: invert(1);
}

img.navbar_logo {
    width: 120px;
    height: 70px;
    object-fit: contain;
    object-position: center center;
}



/* hero section */

/* .hero {
    min-height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
} */

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 80px 64px 80px 80px; */
    position: relative;
    z-index: 2;
}



.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--p-size);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 28px;
}

.hero-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--green);
}

.hero-h1 {
    font-size: clamp(42px, 5vw, 72px);
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: bold;
}

.hero-h1 span {
    color: var(--green);
}

.price-label {
    font-size: var(--p-size);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.price-sub {
    font-size: 13px !important;
    color: var(--off-white) !important;
}

.fade-up.visible {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.hero-price-card {
    display: inline-block;
    background: var(--navy);
    padding: 28px 36px;
    margin-bottom: 40px;
    position: relative;
    border-left: 3px solid var(--bs-green);
}



.price-value {
    font-family: 'BebasNeue', sans-serif;
    font-size: 52px;
    color: white;
    line-height: 1;
    letter-spacing: 2px;
}

.price-value span {
    font-size: 22px;
    color: var(--green-light);
}

.price-compare {
    font-size: var(--p-size);
    color: var(--green-light);
    margin-top: 8px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: var(--p-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn-primary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 14px 32px;
    font-size: var(--p-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-2px);
}

.hero-right {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(58, 140, 63, 0.25) 0%, transparent 70%);
}

.ring-1 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-stat-ring {
    position: absolute;
    border: 1px solid rgba(90, 181, 96, 0.2);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

.ring-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--green-light);
}

.ring-2 {
    width: 460px;
    height: 460px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
    animation-duration: 30s;
}

.hero-graphic {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: floatUp 6s ease-in-out infinite;
}

.hero-logo-large {
    width: 220px;
    opacity: 0.95;
    filter: drop-shadow(0 0 40px rgba(90, 181, 96, 0.4));
}

@keyframes spinSlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}




/* end of hero section */


/* tariff section */
.subtitle {
    /* font-family: 'BebasNeue', sans-serif; */
    font-size: clamp(32px, 2vw, 56px);
    letter-spacing: 2px;
    color: var(--navy);
    /* line-height: 1; */
    font-weight: bold;
}

#tariiff p.fs13px,
#tariiff li.fs13px {
    font-family: 'NotoSansGeorgian', sans-serif;
    font-size: var(--p-size);
    line-height: 1.8;
    color: var(--muted);
    /* max-width: 420px; */
    margin-top: 14px;
}

.tariff-saving-text .small {
    font-family: 'NotoSansGeorgian', sans-serif;
    font-size: var(--p-size);
    color: rgba(255, 255, 255, 0.6);
}



/* why section   */



.why-section {
    background: var(--navy);
}


.why-item {
    font-size: var(--p-size);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}


.why-item h4 {
    font-size: var(--p-size);
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}









/* switch section */


.cta-strip {
    background: var(--green);
    /* padding: 70px 80px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-strip-text h2 {
    font-family: 'BebasNeue';
    font-size: 44px;
    letter-spacing: 2px;
    color: white;
    line-height: 1;
}


.cta-strip-text p {
    font-size: var(--p-size);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.btn-white {
    background: white;
    color: var(--green);
    border: none;
    padding: 16px 40px;
    white-space: nowrap;
    font-size: var(--p-size);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

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



/* single page news style */
.single-page-cover {
    background: var(--navy);
    height: 350px !important;
    object-fit: contain;
}


.news__item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    /* flex: 1 1 calc(33.333% - 2rem); */
    /* display: flex; */
    /* flex-direction: column; */
}

.news__item:hover {
    transform: translateY(-5px);
}

.news__item__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news__item__content {
    padding: 1rem;
}

.news__item__title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.news__item__date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.news__item__description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.news__item__link {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

img.admin-image {
    height: 350px;
    object-fit: cover;
}


.slogan {
    padding-left: 12px;
}


img.team-member {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
    .navbar-nav>.dropdown {
        margin-left: 0 !important;
        flex-direction: column;
    }

    .btn.dropdown-toggle {
        text-align: left;
    }

    .dropdown-item:active {
        background-color: unset;
    }

    .navbar-nav .dropdown-menu {
        border: none;
    }
}
