@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');

:root {
    --primary: #4A4A4A;
    --primary-light: rgba(255, 255, 255, 0.767);
    --accent: #FAB702;
    --accent-hover: #fab802da;
    --text: #0F1B2D;
    --text-light: #162337;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/*CONTENT WRAPPER START*/
.content-wrapper {
    padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 40px !important;
    margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
    list-style: disc;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    position: relative;
}

.content-wrapper p {
    margin-bottom: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    margin-bottom: 20px;
}

.content-wrapper img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    height: auto;
    margin: 20px 0;
}

/*CONTENT WRAPPER END*/

/* BREADCRUMB START */
.breadcrumb {
    background-color: var(--primary-light);
    padding: 30px 0;
    color: var(--text);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.breadcrumb .container-fuild {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}

.breadcrumb .title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.breadcrumb .links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb .links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb .links li:not(:last-child)::after {
    content: "/";
    opacity: 0.6;
}

.breadcrumb .links a {
    color: var(--text);
    opacity: 0.85;
    transition: 0.3s ease;
}

.breadcrumb .links a:hover {
    opacity: 1;
    color: var(--accent);
}

.breadcrumb .links li:last-child {
    opacity: 0.7;
}

@media (max-width: 992px) {
    .breadcrumb {
        padding: 20px 0;
    }

    .breadcrumb .title {
        font-size: 22px;
    }

    .breadcrumb .links {
        font-size: 13px;
        gap: 6px;
    }
}

/* BREADCRUMB END */

/*SERVICES START*/
.services {
    background-color: var(--white);
    padding: 80px 0;
}

.services-top {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-top .top-title {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-top .top-title::before,
.services-top .top-title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.services-top .title {
    color: var(--text);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.services-top .text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.services .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services .item {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services .item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.services .item>i {
    width: 58px;
    height: 58px;
    background: rgba(201, 149, 42, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
}

.services .item .title {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.services .item .text {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.services .item button {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: gap 0.3s ease;
}

.services .item:hover button {
    gap: 12px;
}

.services .item button i {
    font-size: 13px;
}

@media (max-width: 992px) {
    .services {
        padding: 50px 0;
    }

    .services-top {
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .services-top .title {
        font-size: 26px;
    }

    .services .container {
        grid-template-columns: 1fr;
    }
}

/*SERVICES END*/

/*SERVİCES-TEMPLATE START*/

.services-template {
    padding: 80px 0;
}

.services-template .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*SERVİCES-TEMPLATE END*/

/* SERVICES-DETAIL START */

.services-detail {
    padding: 80px 0;
}

.services-detail .top-text {
    max-width: 1320px;
    margin: 0 auto 60px;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

.services-detail .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-detail .service-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e8e8e8;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-detail .service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.services-detail .service-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    z-index: 0;
}

.services-detail .service-item:hover img {
    transform: scale(1.05);
}

.services-detail .service-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 32, 0.92) 0%, rgba(10, 18, 32, 0.4) 60%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.services-detail .service-item:hover::after {
    background: linear-gradient(to top, rgba(10, 18, 32, 0.96) 0%, rgba(10, 18, 32, 0.55) 60%, transparent 100%);
}

.services-detail .service-item .content {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-detail .service-item .top-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.services-detail .service-item .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.services-detail .service-item .text {
    display: block;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
}

.services-detail .service-item:hover .text {
    max-height: 200px;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .services-detail {
        padding: 50px 0;
    }

    .services-detail .top-text {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .services-detail .container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-detail .service-item {
        min-height: 260px;
    }

    .services-detail .service-item .text {
        max-height: 200px;
        margin-top: 4px;
    }

    .services-detail .service-item .title {
        font-size: 16px;
    }
}

/* SERVICES-DETAIL END */

/* SERVICES-PAGE START */

.services-page {
    padding: 60px 0;
}

.services-page .container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
    align-items: start;
}

.services-page .left .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.services-page .left .gallery a img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.services-page .left .text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.services-page .right {
    position: sticky;
    top: 30px;
    align-self: start;
}

@media (max-width: 992px) {
    .services-page .container {
        grid-template-columns: 1fr;
    }

    .services-page .left .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* SERVICES-PAGE END */


/*MARQUEE START*/
.marquee-section {
    background: #e52131;
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-item {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.marquee-content .fa-square {
    font-size: 7px;
    color: #dab069;
    transform: rotate(45deg);
    display: inline-block;
    opacity: 0.9;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/*MARQUEE END*/

/*ABOUT START*/
.about {
    padding: 100px 0;
    background: var(--primary);
}

.about-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 8px;
    max-width: 720px;
    margin: 0 auto 48px;
}

.about-top .top-title {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.about-top .title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
}

.about-top .text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about .item .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.about .item .gallery.swiper {
    display: block;
    margin-bottom: 15px;
}

.about .item .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about .item .gallery.swiper .swiper-slide {
    width: 280px;
}

.about .item .gallery.swiper .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about .item .bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.about .item .bottom.swiper {
    display: block;
}

.about .item .bottom.swiper .swiper-slide {
    width: 280px;
    height: auto;
}

.about-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.about-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.about-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(200, 150, 62, 0.1);
    border-radius: 10px;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.about-item .title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.about-item .text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.about .swiper-button-prev,
.about .swiper-button-next {
    color: var(--accent);
}

@media (max-width: 992px) {
    .about {
        padding: 50px 0;
    }

    .about-top {
        width: 95%;
    }

    .about-top .title {
        font-size: 26px;
    }

    .about .item .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .item .bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .container {
        width: 95%;
    }
}

/*ABOUT END*/

/*SLOGAN START*/
.slogan {
    background: var(--accent);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: 150px;
    margin: 120px 10px;
}

.slogan .bg-text-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.slogan .container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.slogan i {
    width: 48px;
    height: 48px;
    background: #ffffff86;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
}

.slogan .title {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slogan .text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .slogan .title {
        font-size: 22px;
    }

    .slogan .text {
        font-size: 14px;
        padding: 0 20px;
    }
}

/*SLOGAN END*/

/*COUNTER START*/
.counter {
    background-color: var(--primary);
    padding: 60px 0;
}

.counter .container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counter .left {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.counter .left .top-title {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.counter .left .title {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.counter-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.counter-nav .nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter-nav .nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.counter .right {
    flex: 1;
    overflow: hidden;
}

.counter-item {
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.counter-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 149, 42, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 10px;
}

.counter-item .center {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.counter-item .center .number,
.counter-item .center .plus {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.counter-item .center .plus {
    color: var(--accent);
}

.counter-item .label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

@media (max-width: 992px) {
    .counter {
        padding: 40px 0;
    }

    .counter .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .counter .left {
        min-width: unset;
        width: 100%;
    }

    .counter .left .title {
        font-size: 22px;
    }

    .counter-nav {
        margin-top: 14px;
    }

    .counter .right {
        width: 100%;
    }

    .counter-item {
        padding: 22px 18px;
        gap: 14px;
    }

    .counter-item .icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .counter-item .center .number,
    .counter-item .center .plus {
        font-size: 34px;
    }

    .counter-item .label {
        font-size: 12px;
    }
}

/*COUNTER END*/

/*PROJECTS START*/
.projects {
    background-color: var(--white);
    padding: 80px 0;
}

.projects-top {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.projects-top .top-title {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.projects-top .top-title::before,
.projects-top .top-title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.projects-top .title {
    color: var(--text);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.projects-top .text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

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

.projects .gallery {
    display: contents;
}

.projects .gallery a {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.projects .gallery a img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 992px) {
    .projects {
        padding: 50px 0;
    }

    .projects-top {
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .projects-top .title {
        font-size: 26px;
    }

    .projects .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects .gallery a img {
        height: 200px;
    }
}

/*PROJECTS END*/

/*PROJECT TEMPLATE START*/
.project-template {
    background-color: var(--white);
    padding: 80px 0;
}

.project-template .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-template .item {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-template .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.project-template .item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-template .item:hover img {
    transform: scale(1.05);
}

.project-template .item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-template .item .content .title {
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.project-template .item .content .text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .project-template {
        padding: 50px 0;
    }

    .project-template .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .project-template .item img {
        height: 180px;
    }
}

/*PROJECT TEMPLATE END*/


/*PROJECTS PAGE START*/
.projects-page {
    background-color: var(--white);
    padding: 80px 0;
}

.projects-page .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.projects-page .gallery a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.projects-page .gallery a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 992px) {
    .projects-page {
        padding: 50px 0;
    }

    .projects-page .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-page .gallery a img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .projects-page .gallery {
        grid-template-columns: 1fr;
    }

    .projects-page .gallery a img {
        height: 220px;
    }
}

/*PROJECTS PAGE END*/
/*CTA START*/
.cta {
    padding: 80px 0;
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
}

.cta .left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 580px;
}

.cta .left .title {
    color: var(--text);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.cta .left .text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.cta .left .phone {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta .left .phone>i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 150, 62, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.cta .left .phone-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta .left .phone-label {
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
}

.cta .left .phone-info a {
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta .left .phone-info a:hover {
    color: var(--accent);
}

.cta .left .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.cta .left .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 62, 0.35);
}

.cta .right {
    flex-shrink: 0;
}

.cta .right img {
    width: 380px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 992px) {
    .cta {
        padding: 50px 0;
    }

    .cta .container {
        flex-direction: column;
        gap: 36px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .cta .left {
        max-width: 100%;
    }

    .cta .left .title {
        font-size: 26px;
    }

    .cta .right img {
        width: 100%;
        height: 260px;
    }
}

/*CTA END*/

/*BLOG START*/
.blog {
    background-color: var(--white);
    padding: 80px 0;
}

.blog-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.blog-top-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
}

.blog-top-left .top-title {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-top-left .top-title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.blog-top-left .title {
    color: var(--text);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-top-left .text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.blog-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.blog-nav .nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-nav .nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.blog .swiper-wrapper {
    align-items: stretch;
}

.blog-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog .swiper-slide {
    height: auto;
}

.blog-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.blog-box .image-wrap {
    position: relative;
    overflow: hidden;
}

.blog-box .image-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-box:hover .image-wrap img {
    transform: scale(1.05);
}

.blog-box .date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
}

.blog-box .content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-box .content .title {
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-box .content .text {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.blog-box .content button {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: gap 0.3s ease;
}

.blog-box:hover .content button {
    gap: 12px;
}

@media (max-width: 992px) {
    .blog {
        padding: 50px 0;
    }

    .blog-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .blog-top-left .title {
        font-size: 26px;
    }
}

/*BLOG END*/

/*BLOG-PAGE START*/
.blog-page {
    padding: 40px 0;
}

.blog-page .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .blog-page {
        padding: 30px 0;
    }

    .blog-page .container {
        grid-template-columns: 1fr;
    }
}

/*BLOG-PAGE END*/

/* BLOG-DETAIL START */

.blog-detail {
    padding: 60px 0;
}

.blog-detail .container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
    align-items: start;
    overflow: visible;
}

.blog-detail .left .image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 32px;
}

.blog-detail .left .text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.blog-detail .left .blog-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.blog-detail .left .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.blog-detail .right {
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 992px) {
    .blog-detail .container {
        grid-template-columns: 1fr;
    }

    .blog-detail .left .image {
        height: 260px;
        margin-bottom: 20px;
    }

    .blog-detail .right {
        position: static;
    }
    
}

/* BLOG-DETAIL END */

/*FOOTER START*/
footer {
    background-color: var(--primary);
}

.footer-top .container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding: 70px 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-col-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    width: 100px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-col ul li a:hover::before {
    width: 20px;
}

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

.footer-contact div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact div i {
    color: var(--accent);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact div a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact div a:hover {
    color: var(--accent);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .footer-top .container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/*FOOTER END*/

/*CONTACT START*/
.contact {
    padding: 80px 0;
    background: var(--white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-light, rgba(200, 150, 62, 0.08));
    border: 1px solid var(--accent-light, rgba(200, 150, 62, 0.2));
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.section-label i {
    color: var(--accent);
    font-size: 14px;
}

.section-label span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.contact .left {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item .icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--accent-light, rgba(200, 150, 62, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item .detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item .detail .label {
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.contact-info-item .detail a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .detail a:hover {
    color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    background: #f9f9f9;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
}

.form-submit:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-map-header .section-label {
    margin-bottom: 0;
}

.contact-map-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.25s ease, transform 0.2s ease;
}

.contact-map-btn:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
}

.contact-map-iframe iframe {
    width: 100%;
    height: 420px;
    display: block;
}

@media (max-width: 992px) {
    .contact {
        padding: 50px 0;
    }

    .contact-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
    }

    .contact-map-header {
        flex-wrap: wrap;
        padding: 16px 18px;
        gap: 12px;
    }

    .contact-map-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-iframe iframe {
        height: 300px;
    }
}

/*CONTACT END*/

/*HR PAGE START*/
.hr-page {
    padding: 60px 0;
    background: var(--white);
}

.hr-form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hr-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hr-section {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hr-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent);
}

.hr-section-title i {
    color: var(--accent);
    font-size: 15px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text);
    background: #f9f9f9;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.repeater-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    position: relative;
}

.repeater-actions {
    display: flex;
    gap: 10px;
}

.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(200, 150, 62, 0.08);
    color: var(--accent);
    border: 1.5px dashed var(--accent);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-add:hover {
    background: rgba(200, 150, 62, 0.15);
}

.btn-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(229, 33, 49, 0.06);
    color: #e52131;
    border: 1.5px solid rgba(229, 33, 49, 0.2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    margin-top: 8px;
}

.btn-remove:hover {
    background: rgba(229, 33, 49, 0.12);
}

.hr-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 48px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
    font-family: inherit;
}

.hr-submit:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
}

.hr-submit:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hr-page {
        padding: 40px 0;
    }

    .hr-section {
        padding: 20px 16px;
    }

    .form-grid-2,
    .form-grid-3,
    .form-grid-4 {
        grid-template-columns: 1fr;
    }

    .hr-form-header h2 {
        font-size: 22px;
    }

    .hr-submit {
        width: 100%;
    }
}

/*HR PAGE END*/

/*REFERANCES START*/
.referances {
    padding: 80px 0;
    background: var(--white);
}

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

.referances .container a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.referances .container a::after {
    content: '';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.referances .container a:hover::after {
    opacity: 1;
}

.referances .container img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.referances .container a:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .referances {
        padding: 50px 0;
    }

    .referances .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .referances .container img {
        height: 180px;
    }
}

/*REFERANCES END*/

/* ABOUT-PAGE START */

.about-page {
    padding: 80px 0;
}

.about-page .short-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-page .container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.about-page .container .text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 60px;
}

.about-page .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-page .grid .item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .grid .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-page .grid .item i {
    font-size: 36px;
    color: var(--accent);
}

.about-page .grid .item .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.about-page .grid .item .text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .about-page {
        padding: 50px 0;
    }

    .about-page .container img {
        height: 280px;
        margin-bottom: 28px;
    }

    .about-page .container .text {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .about-page .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-page .grid .item {
        padding: 28px 22px;
    }

    .about-page .grid .item i {
        font-size: 28px;
    }

    .about-page .grid .item .title {
        font-size: 16px;
    }
}

/* ABOUT-PAGE END */

/* FAQ START */

.faq {
    padding: 80px 0;
}

.faq .item {
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 0;
    cursor: pointer;
}

.faq .item:first-child {
    border-top: 1px solid #e8e8e8;
}

.faq .item .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s ease;
    user-select: none;
}

.faq .item .title::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq .item .text {
    display: block;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
}

.faq .item.active .title {
    color: var(--accent);
}

.faq .item.active .title::after {
    transform: rotate(45deg);
}

.faq .item.active .text {
    max-height: 600px;
    margin-top: 14px;
}

@media (max-width: 992px) {
    .faq {
        padding: 50px 0;
    }

    .faq .item .title {
        font-size: 15px;
    }

    .faq .item .text {
        font-size: 13px;
    }
}

/* FAQ END */

/* OFFER SATART */
.offer {
    padding: 60px 0;
}

.offer .top-text {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    border: 1px solid gainsboro;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .offer-form {
        padding: 20px;
    }
}

/* OFFER END */


/*404 SART*/
.mistake {
    padding: 80px 0;
}

.mistake .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
    align-items: center;
}

.mistake .container .left {
    grid-column: span 6;
}

.mistake .container .right {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mistake .container .right .title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
}

.mistake .container .right .text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.mistake .container .right a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, var(--accent), var(--accent-hover));
    color: #fff;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

}

/*404 END*/

/*WP BUTON START*/
.fixedButton {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixedButton-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fixedButton-icon i {
    font-size: 22px;
}

.fixedButton-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.fixedButton-icon::before,
.fixedButton-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wp-ring 2.5s infinite;
}

.fixedButton-icon::after {
    animation-delay: 1.25s;
}

@keyframes wp-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


@media (max-width: 992px) {
    .fixedButton {
        display: none;
    }
}

/*WP BUTON END*/

/* FAIRS START */

.fairs {
    padding: 80px 0;
    background: #fff;
}

.fairs-title {
    display: block;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 16px;
}

.fairs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.fairs-list {
    border-top: 1px solid #e8e8e8;
}

.fairs-list:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.fair-row {
    display: grid;
    grid-template-columns: 1fr 180px 140px;
    align-items: center;
    gap: 32px;
    padding: 40px 0;
}

.fair-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fair-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.fair-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.fair-date {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    border: 1.5px solid var(--accent);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.fair-location {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

@media (max-width: 992px) {
    .fairs-title {
        font-size: 24px;
    }

    .fair-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 28px 0;
    }

    .fair-date {
        width: fit-content;
    }
}

/* FAIRS END */