@font-face {
    font-family: 'Mardoto';
    font-display: swap;
    src: local('Mardoto Regular'),
        local('Mardoto-Regular'),
        url('../fonts/Mardoto-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Mardoto';
    font-display: swap;
    src: local('Mardoto Bold'),
        local('Mardoto-Bold'),
        url('../fonts/Mardoto-Bold.woff2') format('woff2');
    font-weight: 700;
}

:root {
    --bs-btn-font-family: "Verdana";
    --bs-font-sans-serif: 'Mardoto', sans-serif;
    --green: #89BE49;
    --bs-primary: #F6B72D;
    --bs-btn-primary: #F6B72D;
}

body {
    font-family: 'Mardoto', sans-serif;
    /*background-image: url("../static/background-left.png"), url("../static/background-right.png");*/
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
    background-position: 2% 0, 98% 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    body {
        background-image: none;
    }
}

a {
    text-decoration: none;
    color: #0251AB;
}

nav {
    background: #fff;
    border-bottom: 1px solid #F8B80A;
    min-height: 110px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    align-items: center !important;
}

main {
    margin-top: 110px;
    padding-top: 30px;
    min-height: calc(100vh - 446px)
}

.navbar {
    padding: 0;
}

.nav-link {
    color: #3b4b5a !important;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px !important;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #F6B72D;
    /* Premium yellow accent */
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #1a1a1a !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 75%;
    /* Smoothly expands from the true center */
}

.nav-link.active {
    color: #1a1a1a !important;
    font-weight: 700;
}

.navbar-toggler {
    outline: none !important;
    box-shadow: none !IMPORTANT;
}

.extra-nav {
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    .navbar .navbar-collapse {
        background: #fff;
        position: absolute;
        width: 100%;
        left: 0;
        top: 110px;
        padding: 30px 20px 0 20px;
        box-shadow: 0 10px 10px #00000025;
    }

    .extra-nav {
        display: grid;
        grid-template-columns: 1fr 50px;
    }

    .order1 {
        order: 1
    }

    .language-selector .language-selector-list {
        top: 3px!important;
    }
}

@media (max-width: 1400px) and (min-width: 1366px) {
    .nav-link {
        padding: 0;
    }
}

@media (max-width: 1366px) and (min-width: 992px) {
    .nav-link {
        font-size: 15px;
        padding: 0;
    }
}

.nav-card-item {
    color: #fff !important;
    font-size: 17px;
}

.nav-card-item img {
    position: relative;
    top: -4px;
    transition: transform 0.3s ease;
}

.nav-card-item:hover img {
    transform: scale(1.08);
    /* Gentle scale on hover instead of rotation */
}

.navbar-brand img {
    width: 55px;

}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844%2C%2056%2C%2067%2C%200.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

header {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 16px;
    color: #0f82c5
}

.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.footer {
    background-color: #f3f4f6; /* Nice light gray color */
    position: relative;
    margin: 60px 0 0 0;
    color: #121212;
}

footer a,
footer a:hover,
footer a:active {
    color: #121212;
}

.footer::before {
    display: none; /* Hide the green image pattern */
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 110px;
    background: rgba(0, 0, 0, .25);
    border: 0;
    margin-top: 0;
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .7s;
}

.base-carousel:hover .carousel-control-prev,
.base-carousel:hover .carousel-control-next {
    visibility: visible;
    opacity: 0.5;
}

.base-carousel:hover .carousel-control-prev:hover,
.base-carousel:hover .carousel-control-next:hover {
    opacity: 1;
}


/* NEWS AREA */
.news-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    margin-bottom: 35px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 992px) {
    .news-wrapper {
        grid-template-columns: unset;
    }

    .news-wrapper img {
        max-width: 100%;
    }
}

.news-wrapper img {
    max-width: 100%;
    border-radius: 5px;
}

.news-wrapper h2 {
    font-size: 19px;
    font-weight: 600;
}

.news-wrapper h2 a {
    color: var(--bs-body-color) !important;
}

.news-wrapper p {
    font-size: 15px;
}

a.readmore {
    color: #89BE49;
    font-size: 14px;
}

h1.page-title {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 2px solid #F8B80A;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

h1.news-title {
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 32px;
    font-size: 1.75rem;
    letter-spacing: 1px;
}

.error-container {
    margin-top: 100px;
    margin-bottom: 200px;
}

.btn {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 14px;
}

.btn-success {
    background: #89BE49;
    border-color: #7bad3f;
}

.btn-success:hover,
.btn-success:active {
    background-color: #7bad3f !important;
    color: #7bad3f !important;
}

.btn-primary {
    background: #F6B72D;
    border-color: #F6B72D;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #eaae29 !important;
    border-color: #eaae29 !important;
}

footer h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
}


footer h5 {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0 20px 0;
}

.mt-25 {
    margin-top: 25px;
}

.footer-svg-icon {
    display: flex;
    width: 45px;
    height: 30px;
    justify-content: center;
    align-items: center;
}


.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.footer ul li {
    margin-bottom: 7px;
    font-size: 13px;
}

.footer-privacy {
    font-size: 13px;
    border-top: 1px solid #709F35;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

    .mb-xs-5 {
        margin-bottom: 25px;
    }
}

.language-selector {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    position: relative;
    font-size: 15px;
    height: 100%;
}

.language-selector>a {
    color: #2c3843;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.language-selector img {
    width: 20px;
    margin-right: 10px;
}

.language-selector .language-selector-list {
    display: none;
    list-style: none;
    background: #fff;
    padding: 5px 10px;
    position: absolute;
    border: 1px solid #f3f3f3;
    width: 100px;
    margin: 20px 0 0 0;
    right: 0;
    top: 40px;
    box-shadow: 0 0.5rem 1.5rem 0.5rem #00000013;
    border-radius: 3px;
}

.language-selector .language-selector-list a {
    display: flex;
    color: var(--bs-body-color);
    align-items: center;
    margin-bottom: 5px;
}

.language-selector:hover .language-selector-list {
    display: block;
}

.vacancy-wrapper {
    margin-bottom: 60px;
    border: 1px solid #e6e7ef;
    padding: 20px 2.1rem;
    background: #fff;
    box-shadow: 0 0.5rem 1.5rem 0.5rem #00000013;
    border-radius: 24px;
}

.vacancy-wrapper:hover {
    box-shadow: 0 0.5rem 1.5rem 0.5rem #00000013;
    ;
}

.vacancy-wrapper h2 {
    font-size: 1.3rem;
    margin-bottom: 7px;
    padding-bottom: 7px;
    text-transform: uppercase;
    display: table;
    width: 100%;
    font-weight: 600;
}

.vacancy-wrapper p {
    white-space: normal;
    color: #555;
    margin-bottom: 10px;
}

.vacancy-wrapper .detailed.show {
    display: inline-block;
}

.vacancy-wrapper .detailed {
    white-space: normal;
    color: #555;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
    height: 0;
}

.job-duties {
    font-size: 1.2rem;
    font-weight: 600;
}


.page-delimater {
    margin-bottom: 150px;
}

@media (max-width: 768px) {
    .page-delimater {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr!important;
        padding: 40px 24px 36px;
        border-radius: 16px;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-image-ring,
    .hero-image-bg {
        width: 220px;
        height: 220px;
    }

    .hero-image-frame {
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-image-frame img {
        max-height: 220px;
    }

    a.btn-main {
        margin-top: 24px;
        justify-content: center;
    }
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

ul.pagination li a,
ul.pagination li span {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--bs-primary);
    background-color: #fff;
    border: 1px solid #dee2e6;
}

ul.pagination li.active a {
    color: var(--green);
}

a.text-social {
    color: #709F35;
    fill: #121212;
}

a.text-social.fb {
    width: 15px;
}

a.text-social.inst {
    width: 25px;
}

.branch-group {
    border-bottom: 1px solid rgba(248, 184, 10, .2);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.branch-group .bi {
    color: var(--bs-primary)
}

.branch-name {
    margin-bottom: 10px;
    color: #2c3843;
    font-size: 18px;
    font-weight: 600;
}

.branch-address {
    font-size: 16px;
}

.branch-address>p {
    margin-bottom: 5px;
}


.contract-title {
    font-size: 24px;
    font-family: 'Mardoto', sans-serif;
    margin-top: 20px;
}

.contract {
    margin-top: 50px;
    background-color: white;
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    margin-bottom: 20px;
}

h3,
.h3 {
    font-size: 1.17rem !important;
    font-weight: bold;
}

h4,
.h4 {
    font-size: 1rem !important;
    font-weight: bold;
}

.contract ul {
    list-style: none
}

.contract ul li {
    margin-top: 10px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    position: relative;
    display: inline-block;
    color: #1a1a1a;
    padding-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title h2::after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #89BE49;
    width: 85%;
    height: 3px;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .single_catagory_area {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

.spo-image {
    border-radius: 6px;
}

.findus-block {
    background: #ffffff;
    border: none;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.findus-block>div {
    padding: 16px 20px;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3843;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.findus-block>div:last-child {
    margin-bottom: 0;
}

.findus-block>div:hover {
    transform: translateX(8px);
    background: #ffffff;
    border-color: rgba(137, 190, 73, 0.5);
    box-shadow: 0 6px 15px rgba(137, 190, 73, 0.08);
    color: #1a1a1a;
}

.findus-block svg {
    fill: #89BE49; /* Modern brand green */
    height: 32px;
    width: 32px;
    padding: 6px;
    background: rgba(137, 190, 73, 0.15);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.findus-block>div:hover svg {
    transform: scale(1.15) rotate(5deg);
}

@media (max-width: 767px) {
    .findus-block {
        padding: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        margin-bottom: 15px;
    }
}

.support-wrap {
    display: flex;
    margin-bottom: 30px;
}

.support-wrap .support-content h5 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px;
}

.support-wrap .support-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.support-wrap svg {
    fill: var(--bs-primary);
    height: 40px;
    margin-right: 20px;
}

#map svg {
    width: 30px;
    height: 30px;
    fill: #D74129;
}

/*==============*/
ul li.action a {
    color: #F8B80A !important
}

.nav-right {
    margin-right: 140px
}

.lang-switch button {
    background: none;
    border: 1px solid #e2ded6;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    color: #5a5e5b;
    transition: all 0.2s;
}

.lang-switch button.active,
.lang-switch button:hover {
    background: #4a7050;
    color: white;
    border-color: #4a7050;
}

.extra-nav {
    position: absolute;
    right: 0;
    bottom: -5px;
    transition: all 0.3s
}

.extra-nav:hover {
    transform: scale(1.1);
    bottom: -2px;
    right: -2px;
}

.hero {
    padding: 70px 64px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #FEFDF8 0%, #FFF9EC 55%, #FFF4D6 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 183, 45, 0.13) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(137, 190, 73, 0.10) 0%, transparent 70%);
    bottom: -60px;
    left: 30%;
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #89BE49;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #89BE49;
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-h1 {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 18px;
}

.hero-h2 {
    font-size: 2rem;
    line-height: 1.15;
    color: var(--ink);
    margin: 35px 0;
}

.hero-tagline {
    font-size: 15px;
    font-weight: 400;
    color: #5a6472;
    line-height: 1.6;
    margin: 0 0 4px;
}

.hero-h1 .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px dashed rgba(137, 190, 73, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-image-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(137, 190, 73, 0.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-image-frame img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

.support-wrap {
    display: flex;
    min-height: 151px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px 28px;
    text-align: center;
    border: 1.5px solid #e0d8cc;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.support-content {
    text-align: left
}

a.btn-main {
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: #69BD50;
    padding: 16px 36px;
    transition: all 0.3s ease;
    margin-top: 36px;
    box-shadow: 0 8px 24px rgba(105, 189, 80, 0.30);
}

a.btn-main:hover {
    background: #5aa143;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(105, 189, 80, 0.40);
    color: #fff;
}

a.btn-main svg {
    width: 20px;
}

/* Shop Nav Button replicating Hero Button */
a.nav-btn-main {
    text-align: center;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid #69BD50;
    background: #69BD50;
    padding: 8px 24px !important;
    transition: all 0.3s ease;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
}

a.nav-btn-main:hover {
    background: #5aa143;
    border-color: #5aa143;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(105, 189, 80, 0.4);
}

a.nav-btn-main::after {
    display: none !important; /* Hide standard nav-link animated underline */
}

.title-separator {
    height: 4px;
    width: 60px;
    background: #ffba00
}

.hero-separator {
    position: absolute;
    top: 0;
    right: 0;
}

/* --- NEW SHOPS UI --- */
.shops-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #F8B80A;
    padding-bottom: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.shops-page-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.btn-modern-find {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F6B72D;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 183, 45, 0.3);
}

.btn-modern-find:hover {
    background: #ffba00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 183, 45, 0.4);
}

.shop-category-section {
    margin-bottom: 60px;
}

.shop-category-title {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.shop-category-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3843;
    margin: 0 0 8px 0;
}

.shop-category-title .title-strip {
    height: 3px;
    width: 50%;
    background: #89BE49;
    border-radius: 3px;
}

.shop-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #f0f0f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.shop-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #89BE49;
    transition: width 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.shop-card:hover::after {
    width: 100%;
}

.shop-card-icon {
    background: rgba(137, 190, 73, 0.1);
    color: #89BE49;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.shop-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.shop-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #0251AB !important;
    font-weight: 500;
    transition: color 0.2s;
}

.shop-direction-btn:hover {
    color: #01387d !important;
}

/* --- PREMIUM DARK FOOTER --- */
.premium-footer {
    background: #1B2028;
    /* Deep slate / charcoal */
    color: #E2E8F0;
    font-family: 'Mardoto', sans-serif;
    border-top: 4px solid #89BE49;
    /* Green top accent line */
}

.premium-footer-logo {
    filter: brightness(0) invert(1);
    max-width: 170px;
}

.premium-footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #A0AABF;
}

.premium-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 16px;
}

.premium-socials a:hover {
    background: #89BE49;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(137, 190, 73, 0.4);
}

.premium-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.premium-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: #89BE49;
    border-radius: 2px;
}

.premium-footer-links li {
    margin-bottom: 12px;
}

.premium-footer-links a {
    color: #A0AABF;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

.premium-footer-links a:hover {
    color: #89BE49;
    transform: translateX(6px);
}

.premium-footer-contact li {
    margin-bottom: 16px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #E2E8F0;
}

.premium-footer-contact .text-accent {
    color: #89BE49;
    font-size: 18px;
}

.premium-newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 12px 16px;
    box-shadow: none;
    border-radius: 6px 0 0 6px;
}

.premium-newsletter-form .form-control:focus {
    border-color: #89BE49;
    background: rgba(255, 255, 255, 0.1);
}

.premium-newsletter-form .form-control::placeholder {
    color: #6C7A9C;
}

.premium-newsletter-form .btn-accent {
    background: #89BE49;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.premium-newsletter-form .btn-accent:hover {
    background: #7bad3f;
}

.premium-footer-bottom {
    background: #14171E;
    /* Slightly darker than main bg */
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-footer-bottom p {
    color: #6C7A9C;
    font-size: 14px;
}

.right-navitems {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}