:root {
    --primary: #f05898;
    --text-dark: #1f2937;
    --white: #ffffff;
    --footer-bg: #0f172a;
}
.text-primary{color:#f05898 !important}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    height: 55px;
    background-color: transparent;
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--primary);
}
    @keyframes dunyaDonus {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-wrapper { position:absolute;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 450px;
}

.dunya-img {
    width: 100%;
    height: auto;
    animation: dunyaDonus 100s linear infinite;
}
.sabit-logo {
    position: absolute;
    width: 60%; 
    height: auto;
    z-index: 5;
}
.sabit-logo:hover {
    position: absolute;
    width: 65%; 
    height: auto;
    z-index: 5;
}
.top-social a {
    margin-right: 18px;
    font-size: 16px;
}

.top-wa-btn {
    background: #f05898;
    color: #fff !important;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.main-header {
    padding: 15px 0;
}

.custom-nav {
    background: var(--white);
    padding: 10px 45px;
    border-radius: 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.nav-menu a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.logo-center img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    padding: 15px 0;
    list-style: none;
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.dropdown-wrapper:hover .dropdown-custom {
    visibility: visible;
    opacity: 1;
    transform: translateY(8px);
}

.dropdown-custom a {
    display: block;
    padding: 10px 25px;
}

.btn-callback {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(136, 154, 245, 0.3);
}

.btn-callback:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(136, 154, 245, 0.4);
}

.video-hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.video-background iframe {
    width: 100%;
    height: 100%;
    scale: 1.1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.search-trigger-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 45px;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    width: 100%;
    max-width: 550px;
    transition: 0.3s;
    position: relative;
    z-index: 10;
}

.search-trigger-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 92%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    overflow-y: auto;
    padding-bottom: 50px;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-dark);
}

.search-field {
    width: 100%;
    border: none;
    border-bottom: 3px solid var(--primary);
    font-size: 3rem;
    font-weight: 700;
    outline: none;
    background: transparent;
    padding: 15px 0;
    color: var(--text-dark);
}

.search-input-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-label-top {
    display: block;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.search-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid #eee !important;
    transition: 0.3s;
}

.search-item:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(136, 154, 245, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary) !important;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

.tur-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none !important;
    height: 100%;
}

.tur-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.tur-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s ease;
}

.tur-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(136, 154, 245, 0.2);
}

.tur-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.tur-card:hover {
    transform: translateY(-15px);
}

.tur-card:hover .tur-img-wrapper img {
    transform: scale(1.15) rotate(1deg);
}

.tur-card:hover .tur-overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.price-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.btn-soft {
    background: #f4f7ff;
    color: var(--primary);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-soft:hover {
    background: var(--primary);
    color: #fff;
}

.custom-yurtdisi-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer-pos {
    background: var(--footer-bg);
    color: #fff;
    border-top: 5px solid var(--primary);
    padding-top: 60px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
}

.footer-desc {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: #fff;
}

.newsletter-box {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 15px;
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.newsletter-box button {
    background: var(--primary);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.newsletter-box button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
    padding: 20px 0;
}

footer {
    background: #0f172a !important;
    color: #fff;
    padding: 0 !important;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary) !important;
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.slick-prev, .slick-next {
    z-index: 10;
    width: 45px;
    height: 45px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:before, .slick-next:before {
    color: var(--primary) !important;
    font-size: 20px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

.mobile-toggle-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    background: none;
    font-size: 30px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-list li a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 25px;
}

.m-dropdown-list {
    display: none;
    padding-left: 20px;
}

.m-dropdown-list li a {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .custom-nav {
        border-radius: 20px;
        padding: 10px 20px;
        margin: 10px;
    }
    .logo-center img {
        height: 45px;
    }
    .video-hero {
        height: 500px;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .search-field {
        font-size: 2rem;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }
}
.ustbuton {margin-left:5px;background:#0000002b;}
.hero-simple.video-hero {
    position: relative; 
    overflow: hidden;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF; 
}

@media (max-width: 768px) {
    .custom-shape-divider-bottom svg {
        height: 40px;
        }
}
@media (max-width: 768px) {
    .globe-wrapper {
        width: 300px;
        margin-top: -100px;
    }

    .tolgaust {
        padding-top: 70px;
    }
}
.desktop-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    text-align: center;
}

.desktop-whatsapp a {
    color: #fff !important;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.desktop-whatsapp i {
    font-size: 30px;
    background: linear-gradient(to bottom, #128c7e 0, #25d366 100%);
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.desktop-whatsapp:hover i {
    animation: .8s ease-in-out fa-bounce;
}

.desktop-whatsapp .text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #2f3953;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1000;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity .3s, visibility .3s, transform .3s;
    font-size: 14px;
    white-space: nowrap;
}

.desktop-whatsapp .text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: #2f3953 transparent transparent;
}

.desktop-whatsapp:hover .text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
}

.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-contact-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    text-decoration: none;
    color: #fff !important;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.mobile-contact-bar i {
    font-size: 16px;
    margin-right: 8px;
}

.m-phone {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.m-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

@media (max-width: 767px) {
    .desktop-whatsapp {
        display: none;
    }
}

@media (min-width: 768px) {
    .mobile-contact-bar {
        display: none;
    }
}
