/**
 * İstambul.com Modern Header Tasarımı
 * Tek satır header: Sol logo, orta search, sağ sosyal medya
 * Author: Custom Development
 * Version: 2.2
 */

/* ========================================
   BODY SPACING
   ======================================== */

/* Prevent header overlap with body content */
body {
    padding-top: 90px;
}

body:not(.admin-bar) .elementor {
    padding-top: 0px;
}

/* body.admin-bar .elementor {
 padding-top: 100px;
} */



/* ========================================
   MODERN SINGLE LINE HEADER
   ======================================== */

/* Header container - sticky ve modern */
#header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: auto !important;
    transform: translateZ(0);
    will-change: transform;
}

/* Admin bar adjustment */
body.admin-bar #header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar #header {
        top: 46px !important;
    }

      body.admin-bar #header.scrolled {
        top: 0 !important;
    }
}

#header.scrolled {
top: 0!important;
}

.header-sticky-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 80px;
    position: relative;
    z-index: 1;
}

/* Scroll durumunda header */
.header-sticky-menu.scrolled {
    background: rgba(255, 255, 255, 1);
    /* min-height: 70px; */
}

/* ========================================
   HEADER LEFT - LOGO
   ======================================== */

.header__left,
.header-sticky-menu .header-left {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    grid-column: 1;
    height: 100%;
}

/* Hide duplicate logos */
.header-sticky-menu .logo:not(:first-of-type) {
    display: none !important;
}

.header-sticky-menu .logo {
    display: flex !important;
    align-items: center;
}

.header-sticky-menu .logo a {
    display: flex;
    align-items: center;
}

.header-sticky-menu .logo img {
    max-height: 140px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    vertical-align: middle;
}

.header-sticky-menu.scrolled .logo img {
    max-height: 40px;
}

/* Logo hover effect */
.header-sticky-menu .logo {
    position: relative;
}



/* ========================================
   HEADER CENTER - SEARCH BAR
   ======================================== */

.header__center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    grid-column: 2;
    height: 100%;
}

/* Modern search bar */
.header-search-wrapper,
.is-search-form,
.is-form-style,
.is-form-style-3 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.is-search-form,
.is-form-style-3 {
    background: #F5F7FA;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 48px;
    position: relative;
}

/* Form Label Container */
.is-search-form label {
    flex: 1;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    position: relative;
    height: 100%;
}

.is-search-form:focus-within {
    background: #ffffff;
    border-color: #dd1d40;
    box-shadow: 0 8px 30px rgba(250, 81, 81, 0.2);
    transform: translateY(-2px);
}

.is-search-form .is-search-input,
.is-search-form input[type="search"] {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #1A2B48 !important;
    padding: 0 40px 0 20px !important;
    font-weight: 400 !important;
    height: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.is-search-form .is-search-input::placeholder,
.is-search-form input[type="search"]::placeholder {
    color: #A0A9B2 !important;
    font-weight: 400 !important;
}

/* Remove default search input clear button */
.is-search-form input[type="search"]::-webkit-search-cancel-button,
.is-search-form input[type="search"]::-webkit-search-decoration {
    display: none;
}

/* Loader Image */
.is-search-form .is-loader-image {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    z-index: 2 !important;
}

.is-search-form .is-search-submit {
    border: none !important;
    padding: 0 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    height: 36px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: linear-gradient(135deg, #dc1b40 0%, #dd1d40 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(220, 27, 64, 0.2) !important;
    flex-shrink: 0 !important;
    margin-right: 5px !important;
}

.is-search-form .is-search-submit:hover {
    background: linear-gradient(135deg, #c4173a 0%, #c41939 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(220, 27, 64, 0.3) !important;
}

.is-search-form .is-search-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none;
    border: none;
    color: #fff !important;
    height: 36px !important;
    padding-top: 0 !important;
}

.is-form-style .is-search-submit path {
    fill: #ffffff!important;
}

.is-search-form .is-search-icon svg {
    fill: currentColor !important;
    width: 18px !important;
    height: 18px !important;
}

/* Screen Reader Text */
.is-search-form .is-screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Hidden Input */
.is-search-form input[type="hidden"] {
    display: none !important;
}

/* Ajax Search Results Container */
.is-ajax-search-result {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10000;
    border: 1px solid #E8ECF1;
}

.is-ajax-search-result::-webkit-scrollbar {
    width: 6px;
}

.is-ajax-search-result::-webkit-scrollbar-track {
    background: #F5F7FA;
    border-radius: 3px;
}

.is-ajax-search-result::-webkit-scrollbar-thumb {
    background: #dc1b40;
    border-radius: 3px;
}

.is-ajax-search-result::-webkit-scrollbar-thumb:hover {
    background: #c4173a;
}

/* ========================================
   HEADER RIGHT - SOCIAL MEDIA ICONS
   ======================================== */

.header__right,
.header-sticky-menu .header-right {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    grid-column: 3;
    height: 100%;
}

/* Mevcut header-right içindeki elementleri gizle, sadece sosyal medya ikonlarını göster */
.header-sticky-menu .header-right .st-list {
    display: none !important;
}

.header-social-icons {
    display: flex !important;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-social-icons li {
    margin: 0;
}

.header-social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F5F7FA;
    color: #1A2B48;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Facebook */
.header-social-icons a[href*="facebook"]:hover,
.header-social-icons a.facebook:hover {
    background: linear-gradient(135deg, #dc1b40 0%, #dd1d40 100%);
    color: #ffffff;
}

/* Instagram */
.header-social-icons a[href*="instagram"]:hover,
.header-social-icons a.instagram:hover {
    background: linear-gradient(135deg, #dc1b40 0%, #dd1d40 100%);
    color: #ffffff;
}

/* Twitter */
.header-social-icons a[href*="twitter"]:hover,
.header-social-icons a[href*="x.com"]:hover,
.header-social-icons a.twitter:hover {
    background: linear-gradient(135deg, #dc1b40 0%, #dd1d40 100%);
    color: #ffffff;
}

/* TikTok */
.header-social-icons a[href*="tiktok"]:hover,
.header-social-icons a.tiktok:hover {
    background: linear-gradient(135deg, #dc1b40 0%, #dd1d40 100%);
    color: #ffffff;
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: #F5F7FA;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #5191FA;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #1A2B48;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.menu-toggle:hover span,
.menu-toggle:hover span::before,
.menu-toggle:hover span::after {
    background: #ffffff;
}

.menu-toggle span {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle span::before {
    content: '';
    top: -6px;
}

.menu-toggle span::after {
    content: '';
    top: 6px;
}

/* ========================================
   GO TO TOP BUTTON
   ======================================== */

#gotop {
    background: linear-gradient(135deg, #5191FA 0%, #4080E8 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 8px 25px rgba(81, 145, 250, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#gotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#gotop:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(81, 145, 250, 0.6);
}

#gotop i {
    font-size: 20px;
}

/* ========================================
   TOPBAR HIDE (Sadece header kalacak)
   ======================================== */

#topbar {
    display: none !important;
}

/* ========================================
   HERO SECTION HIDE (Hi There alanı gizlensin)
   ======================================== */


/* ========================================
   NAVIGATION MENU STYLING
   ======================================== */

#st-main-menu,
.header-sticky-menu #st-main-menu,
.header-sticky-menu nav {
    display: none !important; /* Menü gizli, sadece arama gösterilecek */
}

/* Toggle menu button gizle */
.toggle-menu,
.back-menu,
.menu-toggle {
    display: none !important;
}

/* Header'daki diğer elementleri gizle */
.header-sticky-menu .header-right .st-list,
.header-sticky-menu .header-right ul.st-list {
    display: none !important;
}

/* Sadece logo, search ve social icons göster */
.header-sticky-menu > *:not(.header__left):not(.header-left):not(.header__center):not(.header__right):not(.header-social-icons):not(.logo) {
    display: none !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .header-sticky-menu {
        grid-template-columns: 200px 1fr 200px;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-sticky-menu .logo img {
        max-height: 50px;
    }
}

@media (max-width: 992px) {
    .header-sticky-menu {
        grid-template-columns: 180px 1fr 180px;
        gap: 15px;
    }
    
    .header-social-icons a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .header-social-icons {
        gap: 8px;
    }
}


@media (max-width: 1024px) {

    body {
    padding-top: 8rem;
}


    body:not(.admin-bar) .elementor {
        padding-top: 1px; /* Header yüksekliği için */
    }

}

@media (max-width: 768px) {


    body{
    padding-top:  173px;
}


    body:not(.admin-bar) {
        padding-top: 8rem;
    }

    
    .header-sticky-menu {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        padding: 12px 15px;
        gap: 12px;
        min-height: auto;
    }
    
    .header-sticky-menu.scrolled {
        padding: 10px 15px;
    }
    
    /* Üst satır: Logo sol, Social icons sağ */
    .header__left,
    .header-sticky-menu .header-left {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
    }
    
    .header__right,
    .header-sticky-menu .header-right,
    .header-social-icons {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }
    
    /* Alt satır: Search bar tam genişlik */
    .header__center {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }
    
    .header-sticky-menu .logo img {
        max-height: 38px;
    }
    
    .header-sticky-menu.scrolled .logo img {
        max-height: 35px;
    }
    
    /* Search bar mobil */
    .is-search-form,
    .is-form-style-3 {
        padding: 5px 5px 5px 15px !important;
        height: 42px !important;
    }
    
    .is-search-form .is-search-input,
    .is-search-form input[type="search"] {
        font-size: 13px !important;
        padding: 0 35px 0 0 !important;
    }
    
    .is-search-form .is-search-submit {
        padding: 0 18px !important;
        font-size: 12px !important;
        height: 32px !important;
    }
    
    .is-search-form .is-search-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .is-search-form .is-loader-image {
        width: 18px !important;
        height: 18px !important;
        right: 8px !important;
    }
    
    /* Social icons mobil */
    .header-social-icons {
        gap: 6px;
    }
    
    .header-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    #gotop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {

    body:not(.admin-bar) .elementor {
        padding-top: 0px; /* Küçük ekran header yüksekliği */
    }


  
    
    .header-sticky-menu {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        padding: 10px 12px;
        gap: 10px;
        display: flex !important;
        flex-wrap: wrap;
    }
    
    /* Üst satır: Logo sol, Social icons sağ */
    .header__left,
    .header-sticky-menu .header-left {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
        order: 1;
    }
    
    .header__right,
    .header-sticky-menu .header-right,
    .header-social-icons {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
        position: relative;
        top: auto;
        right: auto;
        order: 2;
    }
    
    /* Alt satır: Search bar tam genişlik */
    .header__center {
        grid-column: 1 / -1;
        grid-row: 2;
        order: 3;
        display: none; /* Varsayılan olarak gizli */
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .header__center.show-mobile-search {
        display: flex !important;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobil search toggle button */
    .mobile-search-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #fff;
        color: #ffffff;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s ease;
        margin-left: 8px;
    }
    
    .mobile-search-toggle:hover {
        transform: scale(1.1);
    }
    
    .mobile-search-toggle:active {
        transform: scale(0.95);
    }
    
    .mobile-search-toggle.active {
        background: #de1a40;
        box-shadow: 0 6px 20px rgba(81, 145, 250, 0.4);
    }
    
    .mobile-search-toggle i {
        transition: transform 0.3s ease;
    }
    
    .mobile-search-toggle.active i {
        transform: rotate(90deg);
    }
    
    .header-sticky-menu .logo img {
        max-height: 70px!important;
    }
    
    .is-search-form,
    .is-form-style-3 {
        padding: 4px 4px 4px 12px !important;
        border-radius: 25px !important;
        height: 38px !important;
    }
    
    .is-search-form .is-search-input,
    .is-search-form input[type="search"] {
        font-size: 12px !important;
        padding: 0 30px 0 0 !important;
    }
    
    .is-search-form .is-search-submit {
        padding: 0 14px !important;
        font-size: 11px !important;
        height: 30px !important;
        border-radius: 20px !important;
                margin-right: 0 !important;
    }
    
    .is-search-form .is-search-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .is-ajax-search-details a, .is-ajax-search-result a {
        color: #dd1d40!important;
    }
    
    .is-search-form .is-loader-image {
        width: 16px !important;
        height: 16px !important;
        right: 6px !important;
    }
    
    .header-social-icons {
        gap: 4px;
    }
    
    .header-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* ========================================
   LOADING STATE
   ======================================== */

.is-loader-image {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(81, 145, 250, 0.3);
    border-top-color: #5191FA;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   SMOOTH ANIMATIONS
   ======================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    #header,
    #gotop,
    .header-social-icons {
        display: none !important;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

/* Footer Container */
#main-footer {
    background: linear-gradient(180deg, #1A2B48 0%, #0F1A2E 100%);
    color: #E8ECF1;
    padding: 0;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(81, 145, 250, 0.5) 50%, 
        transparent 100%);
}

/* Newsletter Section */
#main-footer .elementor-element-42cf858d {
    background: linear-gradient(135deg, #5191FA 0%, #4080E8 100%) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

#main-footer .elementor-element-42cf858d::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 20s ease-in-out infinite;
}

#main-footer .elementor-element-42cf858d::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

#main-footer .elementor-element-42cf858d .elementor-heading-title {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#main-footer .elementor-element-3a791076 .elementor-heading-title {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

/* Newsletter Icon */
#main-footer .elementor-element-4b28e9d6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-footer .elementor-element-4b28e9d6 img {
    max-width: 80px;
    filter: brightness(0) invert(1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Newsletter Form */
#main-footer .mc4wp-form-fields {
    position: relative;
    z-index: 1;
}

#main-footer .subcribe-form .form-group {
    position: relative;
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

#main-footer .subcribe-form input[type="email"] {
    flex: 1;
    height: 56px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px 0 0 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

#main-footer .subcribe-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#main-footer .subcribe-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#main-footer .subcribe-form input[type="submit"] {
    height: 56px;
    padding: 0 36px;
    border: none;
    border-radius: 0 28px 28px 0;
    background: #ffffff;
    color: #5191FA;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#main-footer .subcribe-form input[type="submit"]:hover {
    background: #f0f4ff;
    transform: translateX(2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer Links Section */
#main-footer .elementor-element-2058fe22 {
    /* padding: 0px 0 0px !important; */
    background: transparent !important;
}

#main-footer .elementor-heading-title {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 0;
}
/* 
#main-footer .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #5191FA 0%, transparent 100%);
    border-radius: 2px;
} */

/* Footer Section Headings (Destinations, Ways to Go, etc.) */
#main-footer .elementor-element-5e3aa76d .elementor-heading-title,
#main-footer .elementor-element-74e24a0f .elementor-heading-title,
#main-footer .elementor-element-548a79ca .elementor-heading-title,
#main-footer .elementor-element-11963006 .elementor-heading-title,
#main-footer .elementor-element-7f4c451 .elementor-heading-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
}

/* Footer Dividers */
#main-footer .elementor-widget-divider {
    margin-bottom: 24px !important;
}

#main-footer .elementor-divider-separator {
    border-top: 2px solid rgba(81, 145, 250, 0.3) !important;
}

/* Footer Links */
#main-footer .elementor-element-2058fe22 .elementor-heading-title a,
#main-footer .elementor-element-2058fe22 h2 a {
    color: #B8C5D6 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 2.2 !important;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0;
}


.sidebar-widget.widget_block p:empty {
    display: none;
}


#main-footer .elementor-element-2058fe22 .elementor-heading-title a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #5191FA;
}

#main-footer .elementor-element-2058fe22 .elementor-heading-title a:hover,
#main-footer .elementor-element-2058fe22 h2 a:hover {
    color: #5191FA !important;
    transform: translateX(8px);
    text-decoration: none;
}

#main-footer .elementor-element-2058fe22 .elementor-heading-title a:hover::before {
    left: -18px;
    opacity: 1;
}



/* Customer Support Section */
#main-footer .elementor-element-36dc9337 .elementor-heading-title {
    color: #5191FA !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

#main-footer .elementor-element-36dc9337 .elementor-heading-title::after {
    display: none;
}

/* Social Media Icons */
#main-footer .elementor-social-icons-wrapper {
    gap: 16px !important;
}

#main-footer .elementor-social-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#main-footer .elementor-social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(81, 145, 250, 0.3);
}

#main-footer .elementor-social-icon-facebook:hover {
    background: #1877f2 !important;
    border-color: #1877f2;
}

#main-footer .elementor-social-icon-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: #e6683c;
}

#main-footer .elementor-social-icon-twitter:hover {
    background: #1da1f2 !important;
    border-color: #1da1f2;
}

/* Copyright Section */
#main-footer .elementor-element-29fb92a {
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#main-footer .elementor-element-838da68 p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Footer Column Spacing */
#main-footer .elementor-column {
    margin-bottom: 40px;
}


@media (max-width: 1240px) {

    #st-content-wrapper .st-breadcrumb ul li.active{
        display: none;
    }

}
/* Responsive Adjustments */
@media (max-width: 1024px) {

 
    #main-footer .elementor-element-42cf858d {
        padding: 50px 0 !important;
    }
    
    #main-footer .elementor-element-2058fe22 {
    }
    
    #main-footer .elementor-heading-title {
        font-size: 15px !important;
    }
    
    #main-footer .elementor-element-2058fe22 .elementor-heading-title a {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    #main-footer {
        margin-top: 60px;
    }
    
    #main-footer .elementor-element-42cf858d {
        padding: 40px 20px !important;
    }
    
    #main-footer .elementor-element-42cf858d .elementor-heading-title {
        font-size: 24px !important;
    }
    
    #main-footer .elementor-element-3a791076 .elementor-heading-title {
        font-size: 14px !important;
    }
    
    #main-footer .subcribe-form .form-group {
        flex-direction: column;
        gap: 12px;
    }
    
    #main-footer .subcribe-form input[type="email"],
    #main-footer .subcribe-form input[type="submit"] {
        border-radius: 28px;
        width: 100%;
    }
    
    #main-footer .elementor-element-2058fe22 {
        
    }
    
    #main-footer .elementor-column {
        margin-bottom: 30px;
    }
    
    #main-footer .elementor-social-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 18px !important;
    }
}

/* Breadcrumb Mobil Yatay Scroll */
@media (max-width: 768px) {
    #st-content-wrapper .st-breadcrumb ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        white-space: nowrap;
    }
    
    #st-content-wrapper .st-breadcrumb ul::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    #st-content-wrapper .st-breadcrumb ul li {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    #main-footer .elementor-element-42cf858d .elementor-heading-title {
        font-size: 20px !important;
    }
    
    #main-footer .subcribe-form input[type="email"],
    #main-footer .subcribe-form input[type="submit"] {
        height: 48px;
        font-size: 14px;
    }
    
    #main-footer .elementor-heading-title {
        font-size: 14px !important;
    }
    
    #main-footer .elementor-element-36dc9337 .elementor-heading-title {
        font-size: 20px !important;
    }
}

/* Smooth Hover Effects for All Footer Elements */
#main-footer * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add subtle glow effect to interactive elements */
#main-footer a:focus,
#main-footer input:focus,
#main-footer button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(81, 145, 250, 0.3);
}

/* Accessibility: Focus visible for keyboard navigation */
#main-footer a:focus-visible,
#main-footer input:focus-visible,
#main-footer button:focus-visible {
    outline: 2px solid #5191FA;
    outline-offset: 2px;
}

.search-hero-fast-menu {
    padding-top: 0 !important;
}

.search-hero-fast-menu .elementor-widget-text-editor p a {
    color: #fff;
    border: 1px solid #ffffff63;
    padding: 5px 10px;
    border-radius: 10px;
    width: 100%!important;
    display: block;
}

.search-hero-fast-menu .elementor-widget-text-editor p{
    margin: 0!important;
}
.search-hero-fast-menu .elementor-widget-text-editor p a:hover{
    background: #fff;
    border-color: #fff;
    color: #dd1d40;
}

.search-hero-fast-menu.elementor-widget-n-carousel .e-con-inner{
    margin-top: 0px;
    height: 32px;
}


.elementor-widget-n-carousel.elementor-element :is(.swiper,.swiper-container)~.elementor-swiper-button-next{
    margin-right: -30px;
    margin-top: 5px;
}

.elementor-widget-n-carousel.elementor-element :is(.swiper,.swiper-container)~.elementor-swiper-button-prev{
    margin-left: -30px;
    margin-top: 5px;
}



.affiliate-three-widget {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 0;
}

/* media 768  */

@media (max-width: 768px) {
    .affiliate-three-widget {
        flex-direction: column;
        gap: 15px;
    }
}

.featured-card-1, .featured-card-2 {
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: none;
}
.featured-card-1:hover, .featured-card-2:hover {
    transform: scale(1.04) !important;
    z-index: 9;
    box-shadow: 0 0 3px 0 #00000052;
    border: 3px solid #fff;
}