﻿/* ===========================
   Base Styles
=========================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --font-main: "Poppins", sans-serif;
    --white: #fff;
    --black: #110f0f;
    --gray: #525252;
    --primary: #1781fe;
    --border: #e8e8e8;
}

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--gray);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header
=========================== */
header.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    background: transparent;
    transition: all 0.3s ease;
}

    /* Header içindeki yazılar/iconlar başlangıçta beyaz */
    header.header-area .main-menu ul li a,
    header.header-area .mobile-toggle,
    header.header-area .header-right a {
        color: var(--white);
        transition: color 0.3s ease;
    }

    /* Scroll sonrası header beyaz */
    header.header-area.scrolled {
        background: var(--white) !important;
        box-shadow: 0 3px 20px rgba(0,0,0,0.08) !important;
        padding: 15px 40px;
    }

        /* Scroll sonrası yazılar siyah */
        header.header-area.scrolled .main-menu ul li a,
        header.header-area.scrolled .mobile-toggle,
        header.header-area.scrolled .header-right a {
            color: var(--black);
        }

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 38px;
}

/* ===========================
   Navigation Menu
=========================== */
.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .main-menu ul {
        display: flex;
        align-items: center;
        gap: 25px;
    }

        .main-menu ul li a {
            font-weight: 600;
            font-size: 15px;
            padding: 8px 14px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

            .main-menu ul li a:hover,
            .main-menu ul li a.active {
                background: var(--black);
                color: var(--white) !important;
            }

    /* Sub-menu */
    .main-menu li {
        position: relative;
    }

    .main-menu .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        min-width: 200px;
        padding: 10px 0;
        border-radius: 4px;
        z-index: 999;
    }

    .main-menu li:hover > .sub-menu {
        display: block;
    }

    .main-menu .sub-menu li a {
        display: block;
        padding: 8px 15px;
        font-size: 15px;
        color: #333;
    }

        .main-menu .sub-menu li a:hover {
            background: #f8f8f8;
            color: var(--primary);
        }

/* ===========================
   Mobile Menu
=========================== */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
}

.main-menu.mobile-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    flex-direction: column;
    padding: 40px 20px;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 20px rgba(0,0,0,0.05);
}

    .main-menu.mobile-active.show {
        transform: translateX(0);
    }

.main-menu .menu-close {
    display: none;
    font-size: 22px;
    cursor: pointer;
    margin-bottom: 20px;
}
/* ===========================
   Hero Section
=========================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .hero-slider .media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
        z-index: 0;
    }

        .hero-slider .media.active {
            display: block;
        }

    .hero-slider::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .hero-slider .hero-content {
        position: relative;
        z-index: 2;
        max-width: 700px;
    }

    .hero-slider h1 {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-slider p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-slider .btn {
        padding: 14px 32px;
        font-size: 16px;
        border-radius: 50px;
        background: var(--primary);
        color: var(--white);
        font-weight: 600;
    }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

    .hero-dots button {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid var(--white);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .hero-dots button.active {
            background: var(--white);
        }

/* ===========================
   TOUR SEARCH
=========================== */
.tour-search {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

    .tour-search .search-box {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        padding: 20px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
    }

    .tour-search .form-group {
        flex: 1;
        min-width: 200px;
        display: flex;
        flex-direction: column;
    }

    .tour-search .form-label {
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 6px;
    }

    .tour-search .form-select,
    .tour-search .form-control {
        height: 50px;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        font-size: 15px;
        padding: 0 14px;
        transition: all 0.2s ease;
    }

        .tour-search .form-select:focus,
        .tour-search .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(23,129,254,0.2);
            outline: none;
        }

    .tour-search button.btn {
        height: 50px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 16px;
        padding: 0 30px;
        flex-shrink: 0;
    }

/* ===========================
   Footer
=========================== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    font-size: 14px;
}

/* ===========================
   Promo Card
=========================== */
.promo-card {
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #000;
}

    .promo-card .promo-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

        .promo-card .promo-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

    .promo-card *:not(.promo-bg) {
        position: relative;
        z-index: 2;
    }

    .promo-card .offer-label {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0,0,0,0.6);
        padding: 6px 12px;
        font-size: 14px;
        border-radius: 6px;
    }

    .promo-card h4 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .promo-card .price {
        font-size: 22px;
        font-weight: 700;
    }

        .promo-card .price small {
            font-size: 12px;
            display: block;
            font-weight: normal;
        }

/* ===========================
   Features
=========================== */
.features-card {
    background: #fdf4e7;
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

    .feature-item i {
        font-size: 28px;
        color: #ff9800;
        margin-bottom: 8px;
    }

    .feature-item h6 {
        font-weight: 700;
        margin-bottom: 4px;
    }
/* ===========================
   Popular Regions
=========================== */
.popular-regions {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
    overflow: hidden;
}

    .popular-regions::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("https://demo.egenslab.com/html/gofly/preview/assets/img/home3/home3-destination-bg.png") repeat, linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
        background-size: auto, cover;
        opacity: 1;
        z-index: 0;
    }

    .popular-regions .container {
        position: relative;
        z-index: 1;
    }

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

    .section-head h2 {
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 10px;
        color: #111;
    }

    .section-head p {
        color: #666;
        font-size: 15px;
        margin: 0;
    }

.feature-box {
    background: #fff;
    border-radius: 14px;
    padding: 35px 20px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

    .feature-box .icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 30px;
        color: #fff;
    }

    .feature-box.blue .icon {
        background: #1781fe;
    }

    .feature-box.green .icon {
        background: #28a745;
    }

    .feature-box.yellow .icon {
        background: #ffc107;
        color: #000;
    }

    .feature-box.red .icon {
        background: #dc3545;
    }

    .feature-box h6 {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 8px;
        color: #111;
    }

    .feature-box p {
        font-size: 14px;
        color: #777;
        line-height: 22px;
        margin: 0;
    }

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    }

/* ===========================
   Circle Cards
=========================== */
.circle-card {
    text-align: center;
    padding: 10px 5px;
}

    .circle-card img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 12px;
        border: 6px solid #fff;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

        .circle-card img:hover {
            transform: scale(1.07);
            box-shadow: 0 10px 24px rgba(0,0,0,0.18);
        }

    .circle-card h6 {
        font-weight: 600;
        font-size: 16px;
        margin: 0;
        line-height: 1.4;
        color: #111;
    }

    .circle-card p {
        font-size: 14px;
        color: #666;
        margin-top: 4px;
        margin-bottom: 0;
    }

/* ===========================
   Swiper Arrows (Global)
=========================== */
.swiper-button-next,
.swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 18px;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary);
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
        font-weight: bold;
    }

/* ===========================
   Popular & International Packages
=========================== */
/* ===========================
   Packages (Popular & International)
=========================== */
.popular-packages,
.international-packages {
    position: relative;
    overflow: hidden;
}

    .popular-packages .package-card,
    .international-packages .package-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
    }

        .popular-packages .package-card img,
        .international-packages .package-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        /* Kart içeriği */
        .popular-packages .package-card h5,
        .international-packages .package-card h5 {
            font-size: 18px;
            font-weight: 700;
            margin: 10px 0 5px;
            color: #111;
            padding: 0 15px;
        }

        .popular-packages .package-card p,
        .international-packages .package-card p {
            font-size: 14px;
            color: #666;
            margin: 0 0 12px;
            padding: 0 15px;
        }

            .popular-packages .package-card p i,
            .international-packages .package-card p i {
                color: #1781fe;
                margin-right: 4px;
            }

        /* Alt kısım: buton + fiyat */
        .popular-packages .package-card .d-flex,
        .international-packages .package-card .d-flex {
            margin-top: auto;
            padding: 0 15px 15px;
        }

        .popular-packages .package-card .btn,
        .international-packages .package-card .btn {
            padding: 6px 14px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 30px;
        }

        .popular-packages .package-card .price,
        .international-packages .package-card .price {
            font-size: 18px;
            font-weight: 700;
            color: #1781fe;
            text-align: right;
        }

            .popular-packages .package-card .price small,
            .international-packages .package-card .price small {
                display: block;
                font-size: 12px;
                color: #777;
                margin-top: 2px;
            }

        /* Hover */
        .popular-packages .package-card:hover,
        .international-packages .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }


/* Wrapper ve arrows */
.packages-wrapper {
    position: relative;
    overflow: visible;
}

.packagesSwiper,
.internationalSwiper {
    overflow: hidden;
}

.packages-wrapper .swiper-button-next,
.packages-wrapper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.packages-wrapper .swiper-button-next {
    right: -60px;
}

.packages-wrapper .swiper-button-prev {
    left: -60px;
}

    .packages-wrapper .swiper-button-next::after,
    .packages-wrapper .swiper-button-prev::after {
        font-size: 18px;
        color: #1781fe;
    }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

    .why-choose-us .content .subtitle {
        font-size: 18px;
        font-weight: 600;
        color: #1781fe;
        margin-bottom: 10px;
    }

    .why-choose-us .content .title {
        font-size: 32px;
        font-weight: 700;
        color: #111;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .why-choose-us .content p {
        font-size: 15px;
        color: #555;
        margin-bottom: 25px;
    }

    .why-choose-us .about-link {
        font-weight: 600;
        color: #1781fe;
        display: inline-block;
        margin-bottom: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .why-choose-us .about-link:hover {
            color: #0d6efd;
        }

    .why-choose-us .rating-box {
        display: flex;
        align-items: center;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 15px 25px;
        background: #fff;
        box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        max-width: 400px;
    }

    .why-choose-us .rating-item {
        text-align: center;
        flex: 1;
    }

        .why-choose-us .rating-item .score {
            font-size: 24px;
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }

        .why-choose-us .rating-item img {
            height: 22px;
            margin-bottom: 5px;
        }

    .why-choose-us .divider {
        width: 1px;
        background: #ddd;
        margin: 0 15px;
    }

    .why-choose-us .images-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

        .why-choose-us .images-grid .big {
            grid-column: span 2;
        }

    .why-choose-us .img-box {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

        .why-choose-us .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* ===========================
   Stats Section
=========================== */
.stats {
    padding: 40px 0;
}

.stats-card {
    background: url("https://demo.egenslab.com/html/gofly/preview/assets/img/home3/home3-counter-bg.png") no-repeat center/cover;
    border-radius: 20px;
    padding: 28px 40px;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.stat {
    flex: 1 1 0;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-right: 16px;
}

    .stat:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 46px;
        background: rgba(17, 17, 17, 0.08);
    }

.icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.bg-yellow {
    background: #f1c40f;
}

.bg-orange {
    background: #e67e22;
}

.bg-blue {
    background: #2980b9;
}

.bg-green {
    background: #27ae60;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.value {
    margin: 0;
    font-weight: 700;
    font-size: 28px;
    color: #111;
    line-height: 1.1;
}

.label {
    font-size: 14px;
    color: #555;
    line-height: 1.35;
}

/* ===========================
   Tour Guides Section
=========================== */
.tour-guides {
    background: url("http://demo.egenslab.com/html/gofly/preview/assets/img/home3/home3-tour-guide-bg.png") no-repeat center/cover;
    padding: 80px 20px;
}

.guidesSwiper {
    position: relative;
    overflow: visible;
}

    .guidesSwiper .swiper-button-next,
    .guidesSwiper .swiper-button-prev {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        color: #1781fe;
        background: #fff;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .guidesSwiper:hover .swiper-button-next,
    .guidesSwiper:hover .swiper-button-prev {
        opacity: 1;
        visibility: visible;
    }

    .guidesSwiper .swiper-button-next::after,
    .guidesSwiper .swiper-button-prev::after {
        font-size: 16px;
        font-weight: bold;
    }

/* Kart */
.guide-card {
    text-align: center;
}

.guide-img {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

    .guide-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.4s ease;
    }

    .guide-img .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .guide-img:hover img {
        transform: scale(1.1);
    }

    .guide-img:hover .overlay {
        opacity: 1;
    }

.overlay .socials {
    display: flex;
    gap: 14px;
}

    .overlay .socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        color: #1781fe;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .overlay .socials a:hover {
            background: #1781fe;
            color: #fff;
        }

.guide-card h5 {
    font: 700 18px/1 "Poppins", sans-serif;
    margin-bottom: 6px;
    color: #111;
}

.guide-card p {
    font: 14px/1.6 "Poppins", sans-serif;
    color: #666;
}
