* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Future", sans-serif;
    overflow-x: hidden;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

:root {
    --blue: #1e419b;
    --orange: #f58220;
    --light-bg: #f7f7fb;
    --container-w: 74%;
    --form-w: 60%;
}

.orange {
    color: var(--orange);
}

.container {
    width: var(--container-w);
    margin-left: auto !important;
    margin-right: auto !important;
}

.container-form {
    width: var(--form-w);
    margin: 70px auto;
    position: relative;
    overflow: visible;
}

.all {
    font-size: 15px;
    font-weight: 500;
    color: #484848;
}

.all:hover {
    text-decoration: underline;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
}

nav a {
    font-weight: 200;
    color: white;
}

.hov a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.nav-menu {
    display: flex;
    gap: 20px;
    color: white;
    transition: left 0.4s ease;
    z-index: 9999999;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-drop {
    display: none;
}

.lang-wrapper:hover .lang-drop {
    display: block;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.burger-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 5px;
    display: block;
    transition: 0.3s;
}

header {
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-imgs {
    pointer-events: none;
}

.plane {
    position: absolute;
    top: 130px;
    left: -300px;
    width: 250px;
    pointer-events: none;
    animation: fly 4s linear infinite;
}

@keyframes fly {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(78vw);
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    padding-top: 80px;
}

.left {
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 2;
    flex-shrink: 0;
}

.text-area {
    z-index: 2;
    padding-top: 170px !important;
}

.dot-track {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 65, 155, 0.25);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--orange);
    border-color: var(--orange);
    width: 13px;
    height: 13px;
}

.dot-line-v {
    width: 2px;
    height: 28px;
    background: rgba(30, 65, 155, 0.2);
}

.slide-info {
    display: none;
}

.slide-info.active {
    display: block;
}

.slide-info .city {
    font-size: 70px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.slide-info .sub {
    font-size: 22px;
    font-weight: 600;
    color: black;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-icons {
    display: flex;
    gap: 8px;
    padding-top: 100px;
    flex-wrap: wrap;
}

.hero-icon-btn {
    border: 1px solid rgb(30, 65, 155);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 4px;
    border-radius: 16px;
    cursor: pointer;
    width: 80px;
    color: var(--blue);
    font-size: 16px;
    gap: 6px;
    transition: background-color 0.4s ease, color 0.4s ease;
    background: transparent;
    text-align: center;
}

.hero-icon-btn:hover {
    background-color: var(--blue);
    color: white;
}

.hero-icon-btn i {
    font-size: 20px;
}

.right2 {
    position: relative;
    width: 450px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cards-scene {
    position: relative;
    width: 450px;
    height: 380px;
    perspective: 900px;
}

.card3d {
    position: absolute;
    width: 250px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card3d .card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.card3d .card-label h3 {
    color: white;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.card3d .card-label p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-top: 3px;
}

.card3d.pos-left {
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.card3d.pos-right {
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%) scale(0.80);
    transform-origin: center right;
    z-index: 3;
}

.card3d.pos-hidden {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.main {
    width: 100%;
    position: relative;
    overflow: visible;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto !important;
    box-sizing: border-box;
    flex-shrink: 0;
}

.tour-card {
    width: 100%;
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
}

.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-card-body {
    padding: 14px 16px;
}

.tour-title,
.tour-date {
    font-size: 15px;
    font-weight: 700;
    color: black;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.tour-price {
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.tour-link {
    font-size: 14px;
    color: #484848;
    font-weight: 600;
}

.tour-link:hover {
    text-decoration: underline;
}

.mySwiper {
    position: relative;
    /* overflow: visible !important; */
}

/* .mySwiper .swiper {
    overflow: visible !important;
} */

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #e8e8e8;
    border-radius: 50%;
    color: #555 !important;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiper .swiper-button-next:hover,
.mySwiper .swiper-button-prev:hover {
    background: var(--orange);
    color: white !important;
}

.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after {
    font-size: 13px !important;
    font-weight: 700;
}

.mySwiper .swiper-button-next {
    right: -22px;
}

.mySwiper .swiper-button-prev {
    left: -22px;
}

.yeni-tur-card {
    border-radius: 32px;
    background: transparent;
}

.yeni-tur-card:hover {
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.5s ease;
}

.yeni-tur-card img {
    border-radius: 32px 32px 0 0;
    width: 100%;
}

.yeni-tur-card .card-body {
    background: #f9f9f9;
    padding: 12px 20px;
    border-radius: 0 0 24px 24px;
}

.olke-tur {
    padding: 50px 0;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.gallery {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 16px;
}

.gallery .left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
}

.gallery .right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery .right img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 30px;
}

.right-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.right-card h1 {
    transition: all 0.3s ease;
}

.right-card:hover h1,
.right-card:hover p {
    padding-bottom: 10px;
}

.overlay {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    transition: 0.4s ease;
    height: 60%;
}

.overlay2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    transition: 0.4s ease;
    height: 60%;
}

.right-card:hover .overlay,
.right-card:hover .overlay2 {
    opacity: 0;
    visibility: hidden;
}


.form-section {
    background: var(--blue);
    border-radius: 16px;
    padding: 30px 100px;
    position: relative;
    z-index: 10;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 32px;
    border: none;
    outline: none;
    font-weight: 400;
    font-family: inherit;
    background: white;
    margin-top: 8px;
    font-size: 18px !important;
    color: black !important;
}

.form-section input::placeholder,
.form-section textarea::placeholder {
    color: #cecece !important;
}
.form-section textarea {
    border-radius: 20px;
    resize: none;
}

.form-section .send-btn {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 32px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    width: 150px;
    margin-top: 8px;
}

.footer-top {
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    gap: 20px;
}

.footer-top .f-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-top .f-icon {
    padding: 15px;
    background: var(--orange);
    font-size: 20px;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-top p {
    color: white;
    font-size: 14px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px !important;
}

.fa-facebook,
.fa-instagram {
    color: white;
    padding: 7px;
    background: #969393;
    font-size: 13px;
    border-radius: 50%;
}

@media (max-width: 1450px) {
    :root {
        --container-w: 95%;
        --form-w: 95%;
    }

    .burger-btn {
        display: flex;
    }

    .nav-extra {
        display: none !important;
    }

    .nav-menu {
    position: fixed !important;
    top: 0;
    left: -100%;
    width: 270px;
    height: 100vh;
    background: var(--blue);
    flex-direction: column !important;
    gap: 28px !important;
    padding: 140px 10px 30px !important;
    z-index: 1000; 
    display: flex !important;
}

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 16px;
        color: white !important;
    }

    .form-section {
        padding: 30px 40px;
    }

    .lady-side {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .gallery {
        grid-template-columns: 1fr!important;
    }

    .gallery .left {
        display: none !important;
    }
    .maldiv {
        display: block !important;
    }
}
@media (max-width: 1100px) {
    .plane {
        display: none !important;
    }

    .hero {
        padding-top: 80px;
    }

    .text-area {
        padding-top: 120px !important;
    }

    .slide-info .city {
        font-size: 44px;
    }

    .slide-info .sub {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .card3d.pos-right {
        display: block !important;
    }

    .right2 {
        width: 350px;
        overflow: visible;
    }

    .cards-scene {
        width: 350px;
        height: 330px;
        display: block;
        overflow: visible;
    }

    .card3d {
        width: 180px;
        height: 310px;
    }

    .dot-track {
        display: none !important;
    }

    .hero-icons {
        padding-top: 40px;
    }

    .hero-icon-btn {
        width: 72px;
    }

    .gallery .right {
        grid-template-columns: repeat(2, 1fr);
    }

    .overlay {
        bottom: 0px !important;
    }
}

@media (max-width: 950px) {
    .gallery .right {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery .right img {
        height: 160px;
    }

    .footer-top .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0;
        gap: 16px;
    }

    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 80px;
        gap: 12px;
    }

    .left {
        flex: 1;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        min-width: 0;
    }

    .dot-track {
        display: flex !important;
    }

    .text-area {
        padding-top: 100px !important;
    }

    .hero-icons {
        padding-top: 20px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .hero-icon-btn {
        padding: 12px 5px;
        font-size: 16px;
        border-radius: 12px;
    }

    .hero-icon-btn i {
        font-size: 16px;
    }

    .right2 {
        flex-shrink: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .cards-scene {
        display: block !important;
        width: 220px;
        height: 260px;
        perspective: 600px;
        overflow: visible;
    }

    .card3d {
        width: 210px;
        height: 250px;
    }

    .card3d.pos-left {
        left: 0;
        top: 50%;
        transform: translateY(-50%) scale(1);
        z-index: 2;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        width: 210px;
        height: 250px;
    }

    .card3d.pos-right {
        display: none !important;
    }

    .card3d.pos-hidden {
        display: none !important;
    }

    .mySwiper .swiper-button-next {
        right: 5px;
    }

    .mySwiper .swiper-button-prev {
        left: 5px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery .left img {
        height: 280px;
    }

    .gallery .right {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery .right img {
        height: 140px;
    }

    .form-section {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-row {
        flex-direction: column !important;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 0;
    }
}

@media (max-width: 768px) {
    .main {
        width: 100% !important;
    }
    #cloud3 {
        display: none !important;
    }
    #cloud4{
        width: 400px!important;
        bottom: -50px!important;
    }
}

@media (max-width: 540px) {
    .main {
        width: 100% !important;
    }

    /* .bulud {
        display: none !important;
    } */

    /* .bg-imgs>img:first-child {
        width: 100% !important;
    } */

    .hero {
        gap: 8px;
    }

    .hero-icon-btn {
        width: 48px;
        padding: 10px 2px;
        font-size: 9px;
        border-radius: 10px;
    }

    .hero-icon-btn i {
        font-size: 16px;
    }

    .right2 {
        width: 110px;
    }

    .cards-scene {
        width: 110px;
        height: 180px;
    }

    .card3d {
        width: 105px;
        height: 175px;
    }

    .card3d.pos-left {
        left: 0;
    }

    .gallery .right {
        grid-template-columns: 1fr;
    }

    .gallery .right img {
        height: 200px;
    }

    .form-section {
        padding: 20px 16px;
    }

    footer .container {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .all {
        display: none !important;
    }

    .right2 {
        width: 95px;
    }

    .cards-scene {
        width: 95px;
        height: 160px;
    }

    .card3d {
        width: 90px;
        height: 155px;
    }

    .card3d.pos-left {
        left: 0;
    }

    .card3d .card-label p {
        display: none;
    }

    .tour-card img {
        height: 160px;
    }
}

@media (max-width: 683px) {
    header{
        height: auto;
    }
    .dot-track {
        display: none !important;
    }

    .hero-main {
        padding: 0 10px !important;
    }

    .hero {
        justify-content:space-between!important;
        flex-direction: row;
        align-items: center;
        height: auto;
        padding-top: 160px!important;
        padding-bottom: 30px;
    }

    .left {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        flex: unset;
    }

    .text-area {
        padding-top: 0 !important;
    }

    .hero-icons {
        padding-top: 16px;
        gap: 6px;
    }

    .hero-icon-btn {
        width: 52px;
        padding: 15px;
        border-radius: 12px;
    }

    .hero-icon-btn p {
        display: none !important;
    }

    .hero-icon-btn i {
        font-size: 16px;
    }

    .right2 {
        display: flex !important;
        justify-content: flex-start;
        align-items: start;
        overflow: visible;
    }

    .cards-scene {
        display: block !important;
        width: 210px;
        height: 260px;
        overflow: visible;
        perspective: 600px;
    }

    .card3d {
        width: 210px;
        height: 250px;
    }

    .card3d.pos-left {
        left: 0;
        top: 50%;
        transform: translateY(-50%) scale(1);
        z-index: 2;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        width: 210px;
        height: 250px;
    }

    .card3d.pos-right {
        display: none !important;
    }

    .card3d.pos-hidden {
        display: none !important;
    }
}

.baku-img {
    position: absolute;
    top: 130px;
    left: 0;
    width: 700px;
    pointer-events: none;
}



@media (max-width: 683px) {
    .baku-img {
        width: 100%;
        top: 150px;
        left: 0;
    }
}

@media (max-width: 620px) {
    .baku-img {
        width: 700px !important;
        top: 150px;
        left: 0;
    }
}

@media (max-width: 600px) {
    .baku-img {
        width: 1000px !important;
        top: 190px;
        left: 0;
    }
}

@media (max-width: 480px) {
    .baku-img {
        width: 120% !important;
        top: 200px;
        left: 0;
    }
}
#about_page_header {
    background: none;
    height: auto;
}