* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Soft Industrial Vintage Palette */
    --primary-color: #2C3036;
    /* Warm Graphite */
    --accent-color: #C5A059;
    /* Noble Bronze */
    --accent-gold: #D4AF37;
    /* Muted Gold */
    --text-color: #EBEBEB;
    /* Ivory White */
    --secondary-text: #9A9A9A;
    /* Soft Gray */
    --card-bg: #353A42;
    /* Warm Card */
    --hover-bg: #3E444D;
    /* Hover State */
    --transition: all 0.3s ease;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--card-bg);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}

html {
    font-size: 100%;
}

.h1 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: white;
}

body {
    /* font-family: 'Yanone Kaffeesatz italic', sans-serif;
    margin:0;
    font-weight:300;
    font-size: 1rem; */
    color: white;
    margin: 0;
    background-color: var(--primary-color);
    /* Fix white gaps */
}

.home {
    height: 100vh;
    background: url("../images/home1.jpg") 100% 100% no-repeat;
    -webkit-background-size: cover;
    /* Для хрома */
    -moz-background-size: cover;
    /* Для лисы*/
    -o-background-size: cover;
    /* Для оперы*/
    -ms-background-size: cover;
    /* Для ИЭ*/
    background-size: cover;
    /* Для закрипления*/
}

.wrap {
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

header {
    padding-top: 3%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

nav {
    width: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li {
    list-style-type: none;
    color: white;
    font-family: 'Proza Libre', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    position: relative;
}

li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

li a:hover::after {
    width: 100%;
}

li a:hover {
    color: white;
    /* Keep white, underline does the job */
}

.logo_im {
    width: 90px;
}

.home_info {
    max-width: 600px;
    margin-top: 12%;
}

.home_info h1 {
    font-family: 'PT Mono', monospace;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: left;
    margin-bottom: 18px;
}

.home_info h4,
h3 {
    font-family: 'PT Sans Narrow';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
}

.home_info h3 {
    font-size: 44px;
    letter-spacing: 3px;
    margin-top: 18px;
}

.home_number {
    float: right;
    margin-top: 12%;
    font-family: 'PT Mono';
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 4px;
    text-align: left;
}

/* ============================================ */
/* Trust Bar - Authority & Social Proof */
/* ============================================ */

.trust-bar {
    background: linear-gradient(180deg, rgba(30, 33, 39, 0) 0%, rgba(30, 33, 39, 0.8) 30%, var(--primary-color) 100%);
    padding: 80px 0 60px 0;
    border: none;
    position: relative;
    margin-top: -100px;
    padding-top: 120px;
}

.trust-bar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 30px;
    flex: 1;
    transition: var(--transition);
    border-radius: 12px;
}

.trust-item:hover {
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-5px);
}

.trust-number {
    font-family: 'PT Mono', monospace;
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.trust-label {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.trust-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--secondary-text);
}

.trust-desc.highlight {
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

@media screen and (max-width: 900px) {
    .trust-bar-wrap {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }

    .trust-number {
        font-size: 42px;
    }
}

@media screen and (max-width: 500px) {
    .trust-item {
        flex: 1 1 100%;
    }
}

/* ============================================ */
/* Partners & Geography Section */
/* ============================================ */

.partners-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.partners-wrap {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.partners-info,
.geography-info {
    flex: 1;
}

.partners-info h2,
.geography-info h2 {
    font-family: 'PT Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.partners-desc,
.geography-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-card {
    background: var(--card-bg);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-card.highlight-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(44, 48, 54, 1) 100%);
    border-color: rgba(197, 160, 89, 0.3);
}

.partner-card.highlight-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.partner-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-color);
    transition: var(--transition);
}

.partner-card:hover .partner-icon-wrapper {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.partner-svg {
    width: 35px;
    height: 35px;
}

.partner-card h3 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.partner-card p {
    font-family: 'Cuprum', sans-serif;
    font-size: 14px;
    color: var(--secondary-text);
    margin: 0;
}

.geography-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-tag {
    padding: 10px 20px;
    background: var(--card-bg);
    border-radius: 30px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    color: var(--secondary-text);
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
}

.city-tag:hover {
    border-color: var(--accent-color);
    color: var(--text-color);
}

.city-tag.main {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.city-tag.more {
    font-style: italic;
    color: var(--accent-color);
    background: transparent;
    border-style: dashed;
}

@media screen and (max-width: 900px) {
    .partners-wrap {
        flex-direction: column;
    }
}

/* ============================================ */
/* Gallery Section - Premium Grid */
/* ============================================ */

.gallery-section {
    background: linear-gradient(135deg, #1E2127 0%, var(--primary-color) 100%);
    padding: 100px 0;
    text-align: center;
}

.gallery-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 50px;
}

/* Gallery Swiper - 3D Carousel */
.gallery-swiper {
    max-width: 100%;
    padding: 40px 60px 80px 60px;
    overflow: visible;
}

.gallery-swiper .swiper-slide {
    width: 700px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-swiper .swiper-slide-active {
    box-shadow: 0 25px 60px rgba(197, 160, 89, 0.3);
}

/* Swiper Navigation */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(44, 48, 54, 0.9);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

/* Swiper Pagination */
.gallery-swiper .swiper-pagination-bullet {
    background: var(--secondary-text);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(197, 160, 89, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    text-align: center;
    color: var(--secondary-text);
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    margin-top: 20px;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .gallery-swiper {
        padding: 20px 30px 60px 30px;
    }

    .gallery-swiper .swiper-slide {
        width: 300px;
        height: 220px;
    }

    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        display: none;
    }

    .gallery-title {
        font-size: 48px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

.about {
    height: 115vh;
    background: url("../images/about.jpg") 100% 100% no-repeat;
    background-size: cover;
    margin-top: -2px;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
    pointer-events: none;
}

/*//*/
.about_wrap {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    text-align: left;
    line-height: 32px;
}

.mob_about {
    display: none;
}

.about_wrap h1 {
    font-family: 'PT Sans';
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 2px;
    text-align: center;
    padding-top: 90px;
    margin-bottom: 140px;
}

.about_parallax_block {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60%;
}

.parallax {
    max-width: 534px;
    max-height: 356px;
}

.par_s {
    position: absolute;
    top: 38%;
    left: 37.5%;
    z-index: 3;
}

#sec_par {
    max-width: 564px;
    height: 356px;
}

.block_par {
    width: 40%;
    position: relative;
}

.about_info {
    margin-left: 2%;
    width: 58%;
}

.f_info_block {
    margin-top: 1%;
    max-width: 565px;
}

.s_info_block {
    margin-top: 3%;
    margin-left: 27%;
    float: right;
}

/*/////////////////////////////////////*/
.about_work {
    background: var(--primary-color);
    width: 100%;
    margin-top: -5px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.main_laib {
    font-family: 'PT Sans', sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 20px;
    /* Reduced from 105px */
    letter-spacing: 2px;
    font-weight: 700;
}

.about_work_wrap {
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Modern Card Design */
.call_block {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.call_block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: var(--hover-bg);
    border-color: var(--accent-color);
}

.call_block img {
    border-radius: 12px;
    margin-top: 20px;
    width: 100%;
    object-fit: cover;
}

#mob_sec_col {
    display: none;
}

.about_work__col {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/*.call_block{
    margin-bottom: 113px;
}*/
.f_call {
    margin-right: 0;
}

.call_block h1 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 20px;
    color: white;
}

.about_work p {
    font-family: 'Cuprum', sans-serif;
    font-size: 18px;
    /* Reduced from 24px */
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--secondary-text);
}

.about_work img {
    width: 100%;
}

.sec_work_col p {
    margin: 0;
}

.sec_work_col img {
    margin-bottom: 56px;
}

/*////////////////////////*/
.gaalery {
    height: 120vh;
    background: url("../images/about_bg.jpg") 100% 100% no-repeat;
    -webkit-background-size: cover;
    /* Для хрома */
    -moz-background-size: cover;
    /* Для лисы*/
    -o-background-size: cover;
    /* Для оперы*/
    -ms-background-size: cover;
    /* Для ИЭ*/
    background-size: cover;
    /* Для закрипления*/
}

.container {
    position: relative;
    top: 9%;
    display: flex;
    width: 100%;
    padding: 4% 2%;
    box-sizing: border-box;
    height: 100vh;
}

.box {
    flex: 1;
    overflow: hidden;
    transition: flex 0.5s ease, transform 0.3s ease;
    margin: 0 1%;
    line-height: 0;
    border-radius: 12px;
}

.box>img {
    width: 200%;
    height: calc(100%);
    object-fit: cover;
    transition: .5s;
}


.box:hover {
    flex: 1 1 50%;
}

.box:hover>img {
    width: 100%;
    height: 100%;
    transform: scale(1.05);
}

.sec_gar {
    margin: 0 auto;
    max-width: 700px;
    max-height: 100vh;
    background-color: white;
}

/*/*********mob_galer*******************/
.gaalery h1 {
    display: none;
}

.mob_galer {
    display: none;
    height: 50vh;
    width: 100%;
}

.slider_photo {
    background: url("../images/galery/1.png") 100% 100% no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}

.slider_photo_second {
    background: url("../images/galery/2.png") 100% 100% no-repeat;
    background-size: cover;
    width: 100%;
}

.slider_photo_third {
    background: url("../images/galery/3.png") 100% 100% no-repeat;
    background-size: cover;
    width: 100%;
}

.slider_photo_ford {
    background: url("../images/galery/4.png") 100% 100% no-repeat;
    background-size: cover;
    width: 100%;
}

.slider_photo_fived {
    background: url("../images/galery/5.png") 100% 100% no-repeat;
    background-size: cover;
    width: 100%;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider__wrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.slider__item {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 980px) {
    .slider__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.slider__control {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    height: 50px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
}

.slider__control:hover,
.slider__control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.slider__control_left {
    left: 0;
}

.slider__control_right {
    right: 0;
}

.slider__control::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.slider__control_left::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider__control_right::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.slider__item>div {
    line-height: 250px;
    font-size: 100px;
    text-align: center;
}

/*////////////////////////*/
.visitment {
    background: var(--primary-color);
    font-family: 'PT Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Glassmorphism for contact */
.vivsitment_block_wrap {
    padding: 60px;
    padding-bottom: 100px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 0 auto 100px auto;
    max-width: 1200px;
}

.visit_info {
    display: flex;
    flex-direction: row;
}

.visitment h1 {
    padding-top: 80px;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
}

/* New Contacts Grid */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(197, 160, 89, 0.05);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.kaspi-icon {
    width: 40px;
    height: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    color: var(--secondary-text);
    letter-spacing: 2px;
}

.contact-value {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--accent-color);
}

.kaspi-card {
    border-color: rgba(242, 38, 19, 0.2);
}

.kaspi-card:hover {
    border-color: #F22613;
    background: rgba(242, 38, 19, 0.05);
}

.contacts-logo {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 80px;
}

.contacts-logo img {
    max-width: 200px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contacts-logo img:hover {
    opacity: 1;
}

@media screen and (max-width: 900px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visitment h1 {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 500px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

.visitment h2 {
    display: inline-block;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-align: left;
    color: #b0b0b0;
    transition: 0.3s;
}

.visitment h2:hover {
    color: white;
}

.vivsitment_block_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visit_info_row_s {
    display: flex;
    flex-direction: column;
}

.f_info_row_s {
    margin-top: 10px;
}

.s_info_row_s {
    margin-top: 105px;
}

.th_info_row_s {
    margin-top: 100px;
}

.fst_sec_visit_info_row {
    margin-top: 65px;
}

.sc_sec_visit_info_row {
    margin-top: 42px;
}

.second_i_c {
    margin-left: 40px;
}

.map {
    width: 72px;
    margin-left: 17px;
}

.logo_visit {
    min-width: 306px;
    position: relative;
    top: 45px;
}

footer {
    width: 100%;
    background: var(--primary-color);
    height: 500px;
}

/* ============================================ */
/* CTA Section & Contact Form Styles */
/* ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1E2127 0%, var(--primary-color) 50%, var(--card-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
    max-width: 500px;
}

.cta-content h2 {
    font-family: 'PT Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.cta-phone:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.phone-icon {
    font-size: 40px;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    color: var(--secondary-text);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.phone-number {
    font-family: 'PT Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: white;
}

/* Form Container */
.cta-form-container {
    flex: 1;
    max-width: 500px;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--secondary-text);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 193, 7, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6ac00 100%);
    border: none;
    border-radius: 12px;
    color: var(--primary-color);
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error States */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Mobile Responsiveness for CTA */
@media screen and (max-width: 900px) {
    .cta-wrap {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-phone {
        justify-content: center;
    }

    .cta-form-container {
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* ============================================ */
/* Products Section - Clean Design (No Cards) */
/* ============================================ */

.products-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.products-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
}

.products-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.product-item {
    position: relative;
    margin-bottom: 0;
    padding: 100px 0;
    background-image:
        linear-gradient(135deg, rgba(44, 48, 54, 0.9) 0%, rgba(44, 48, 54, 0.6) 100%),
        var(--bg-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.product-item:nth-child(even) {
    background-image:
        linear-gradient(225deg, rgba(44, 48, 54, 0.9) 0%, rgba(44, 48, 54, 0.6) 100%),
        var(--bg-image);
}

.product-item:last-child {
    border-bottom: none;
}

.product-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.product-item:nth-child(even) .product-content {
    flex-direction: row-reverse;
}

.product-text {
    flex: 1;
    max-width: 600px;
}

.product-image {
    flex: 0 0 350px;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-text h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.product-text p {
    font-family: 'Cuprum', sans-serif;
    font-size: 17px;
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-text p:last-child {
    margin-bottom: 0;
}

.product-text .clients-note {
    color: white;
    font-style: italic;
    opacity: 0.9;
}

/* Details/Summary - Expandable Content */
.product-details {
    margin-top: 15px;
}

.product-details summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: all 0.3s ease;
    list-style: none;
}

.product-details summary::-webkit-details-marker {
    display: none;
}

.product-details summary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.product-details[open] summary::after {
    transform: rotate(90deg);
}

.product-details summary:hover {
    color: var(--text-color);
}

.details-content {
    padding-top: 15px;
    border-left: 2px solid rgba(197, 160, 89, 0.3);
    padding-left: 20px;
    margin-top: 10px;
}

.details-content p {
    margin-bottom: 12px;
}

.product-intro {
    font-size: 20px !important;
    color: var(--text-color) !important;
    line-height: 1.7;
}

@media screen and (max-width: 900px) {
    .products-title {
        font-size: 42px;
        padding: 0 20px;
    }

    .product-item {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .product-content,
    .product-item:nth-child(even) .product-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .product-text {
        max-width: 100%;
    }

    .product-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card.highlight-card {
        grid-column: span 1;
    }
}

/* ============================================ */
/* Geography Map - Network Visualization */
/* ============================================ */

.geography-map {
    background: rgba(30, 33, 39, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.network-map {
    width: 100%;
    height: auto;
    max-height: 350px;
}

/* Network Lines */
.network-line {
    stroke: var(--accent-color);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.6;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-line.secondary {
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 3, 3;
}

@keyframes networkPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* City Nodes */
.city-circle {
    fill: rgba(197, 160, 89, 0.3);
    stroke: var(--accent-color);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.city-inner {
    fill: var(--accent-color);
    transition: all 0.3s ease;
}

.city-node:hover .city-circle {
    fill: rgba(197, 160, 89, 0.6);
    transform-origin: center;
}

.city-node:hover .city-inner {
    r: 10;
}

/* Main City (Kentau) */
.main-city .city-circle {
    fill: var(--accent-color);
    animation: mainCityPulse 2s ease-in-out infinite;
}

.main-city .city-inner {
    fill: var(--primary-color);
}

@keyframes mainCityPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.8));
    }
}

/* City Labels */
.city-label {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 12px;
    fill: var(--text-color);
    text-anchor: middle;
    letter-spacing: 0.5px;
}

.city-label.main-label {
    font-size: 14px;
    font-weight: 700;
    fill: var(--accent-color);
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    .city-label {
        font-size: 10px;
    }

    .city-label.main-label {
        font-size: 12px;
    }

    .network-map {
        max-height: 280px;
    }
}

/* ============================================ */
/* Hero CTA Button */
/* ============================================ */

.ktrz-title {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 24px;
    color: var(--text-color);
    letter-spacing: 2px;
    margin: 5px 0 10px 0;
    opacity: 0.9;
    font-weight: 400;
}

.hero-cta-btn {
    margin-top: 30px;
    padding: 18px 50px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

/* ============================================ */
/* Contact Modal */
/* ============================================ */

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #2C3036 0%, #353A42 100%);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--secondary-text);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 32px;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.modal-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 30px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Cuprum', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: var(--secondary-text);
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-submit-btn {
    width: 100%;
    padding: 18px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-gold) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

@media screen and (max-width: 500px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 26px;
    }

    .hero-cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* Language Switcher */
.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
}

.language-switch .lang-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    padding: 5px 12px;
    cursor: pointer;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
}

.language-switch .lang-btn:hover {
    background: rgba(197, 160, 89, 0.2);
}

.language-switch .lang-btn.active {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .language-switch {
        margin-left: 0;
        margin-top: 10px;
    }
}