:root {
    --mad-red: #E30613;
    --mad-black: #000000;
    --mad-dark: #111827;
    --mad-white: #FFFFFF;
    --mad-gray: #F9FAFB;
    --mad-border: rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    background: #fbfbfb;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--mad-black);
    overflow-x: hidden;
}

/* PREMIUM NAVIGATION */
.ms-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--mad-border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
}

.ms-logo {
    height: 32px;
    filter: contrast(1.1);
    transition: var(--transition);
}

.ms-menu {
    display: flex;
    gap: 30px;
}

.ms-menu-item {
    text-decoration: none;
    color: var(--mad-black);
    font-weight: 700;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.ms-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mad-red);
    transition: var(--transition);
}

.ms-menu-item:hover {
    color: var(--mad-red);
}

.ms-menu-item:hover::after {
    width: 100%;
}

.ms-nav-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tool-link {
    font-size: 18px;
    color: var(--mad-black);
    cursor: pointer;
    transition: var(--transition);
}

.tool-link:hover {
    color: var(--mad-red);
    transform: scale(1.1);
}

/* SEARCH ENGINE (DYNAMIC STICKY) */
.search-wrapper {
    background: var(--mad-white);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: -40px auto 60px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    z-index: 999;
    transition: var(--transition);
}

.search-wrapper.sticky-active {
    position: fixed;
    top: 125px;
    /* Navbar yüksekliğine göre ayarlandı */
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
    /* Ekranın %90'ını kaplar */
    max-width: 960px;
    /* Ama bu genişliği geçmez */
    transform: scale(1);
    /* Kompakt görünüm için hafif küçültme */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    animation: fadeInDown 0.4s ease;
    /* Yumuşak bir düşüş efekti */
}

.search-section {
    flex: 1;
    padding: 15px 25px;
    border-right: 1px solid #f0f0f0;
    transition: var(--transition);
}

.search-wrapper.sticky-active .search-section {
    padding: 8px 15px;
}

.search-section:last-of-type {
    border-right: none;
}

.search-section label {
    font-size: 10px;
    font-weight: 800;
    color: var(--mad-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.search-section input {
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    color: var(--mad-dark);
    background: transparent;
}

.search-btn {
    background: var(--mad-black);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    transition: var(--transition);
}

.search-wrapper.sticky-active .search-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

.search-btn:hover {
    background: var(--mad-red);
    transform: rotate(90deg);
}

/* HERO AREA */
.hero-title-area {
    padding: 40px 0 20px;
    text-align: left;
}

.hero-title-area h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 56px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.tab-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.category-tab {
    padding: 12px 30px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--mad-border);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    color: #666;
    cursor: pointer;
}

.category-tab.active {
    background: var(--mad-black);
    color: white;
    border-color: var(--mad-black);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* CARDS */
.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.camp-card {
    background: white;
    border-radius: 28px;
    border: 1px solid var(--mad-border);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.camp-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.camp-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.camp-card-link:hover,
.camp-card-link:focus,
.camp-card-link:visited {
    color: inherit;
    text-decoration: none;
}

.card-img-box {
    position: relative;
    aspect-ratio: 1/1.1;
    margin: 12px;
    border-radius: 22px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.camp-card:hover .card-img-box img {
    transform: scale(1.1);
}

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #000;
    font-weight: 800;
    font-size: 10px;
    padding: 6px 14px;
    border-radius: 10px;
    z-index: 2;
}

.elite-score-overlay {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    min-width: 56px;
    text-align: center;
    background: #4CAF50;
    color: #fff;
    padding: 8px 12px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-body {
    padding: 5px 25px 25px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 21px;
    margin-bottom: 4px;
}

.card-loc {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-info {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: var(--mad-gray);
    padding: 12px;
    border-radius: 0px;
}

.price-panel {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-from {
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    text-transform: lowercase;
}

.price-value {
    color: var(--mad-black);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 0.85;
    font-family: 'Outfit', sans-serif;
}

.rating-box {
    background: #4CAF50;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 62px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}

/* WWD SECTION */
.wwd-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.wwd-item {
    padding: 40px;
    border-radius: 30px;
    background: var(--mad-gray);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wwd-item:hover {
    background: #fff;
    border-color: var(--mad-red);
    transform: translateY(-10px);
}

.wwd-icon {
    width: 60px;
    height: 60px;
    background: var(--mad-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.wwd-item:hover .wwd-icon {
    background: var(--mad-red);
    transform: rotate(-10deg) scale(1.1);
}

.wwd-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.wwd-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.wwd-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: rgba(0, 0, 0, 0.03);
}

/* CTA */
.bottom-cta {
    margin-top: 120px;
    padding: 140px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(227, 6, 19, 0.4) 100%), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-attachment: fixed;
    border-radius: 40px;
    text-align: center;
    color: white;
}

.cta-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -4px;
}

@media (max-width: 1100px) {
    .recommendation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwd-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ms-menu {
        display: none;
    }

    .tab-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 4px 2px 10px;
        margin-bottom: 24px;
    }

    .tab-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
        min-width: max-content;
        padding: 10px 18px;
        border-radius: 12px;
        font-size: 13px;
    }

    .price-panel {
        min-width: 108px;
        padding: 8px 10px;
    }

    .price-value {
        font-size: 22px;
        font-weight: 300;
    }

    .rating-box {
        min-width: 52px;
        padding: 7px 10px;
        font-size: 22px;
    }

    #mainSearch.search-wrapper {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin: -100px auto 24px;
        padding: 10px;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    #mainSearch.search-wrapper.sticky-active {
        top: 72px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        margin: 0;
        transform: none;
        border-radius: 14px;
        padding: 8px;
    }

    #mainSearch .search-section {
        width: 100%;
        padding: 10px 8px;
        border-right: 0;
        border-bottom: 1px solid #ececec;
    }

    #mainSearch .search-section:last-of-type {
        border-bottom: 0;
    }

    #mainSearch .search-btn {
        width: 100%;
        height: 48px;
        border-radius: 12px;
    }

    .cta-heading {
        font-size: 3rem;
    }

    .hero-title-area h1 {
        font-size: 38px;
    }
    .recommendation-grid {
        grid-template-columns: auto;
    }
}

/* RECENTLY VIEWED STRIP */


/* TRUST / MEMBERSHIPS SECTION */
.trust-section {
    background: #f7f7f7;
    padding: 70px 20px;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    color: var(--mad-black);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    align-items: center;
}

.trust-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item img {
    max-height: 120px;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

.trust-item span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #777;
    margin-top: 4px;
}

/* 662 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-400 {
    font-weight: 400;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.destination-card {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-card img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.destination-card .card-overlay {
    transition: all 0.4s ease;
}

.destination-card:hover .card-overlay {
    padding-bottom: 3rem !important;
}

.transition-up {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transition-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

/* 848 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

/* Logo Track Animation */
.logo-track {
    display: flex;
    width: calc(250px * 12);
    /* Adjust based on logo count */
    animation: scroll 30s linear infinite;
}

.logo-item {
    width: 200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-grey {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.logo-item:hover .logo-grey {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }

    /* Adjust based on unique logo count */
}

/* Edge Fading for Luxury Look */
.carousel-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, white, transparent);
    z-index: 2;
}

.carousel-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to left, white, transparent);
    z-index: 2;
}

/* Pause animation on hover */
.logo-track:hover {
    animation-play-state: paused;
}

/* 925 */
/* MASTER PROFESSIONAL STYLES */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.transition-up {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transition-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
}

/* Performance Progress Dot */
.progress-dot {
    position: absolute;
    right: -5px;
    top: -4px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.progress-bar.bg-danger {
    color: #E30613;
}

.progress-bar.bg-dark {
    color: #111;
}

/* Structure Geometry */
.rounded-4 {
    border-radius: 1.25rem !important;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2.5rem;
    }

    .p-5 {
        padding: 2rem !important;
    }

    body.home section.p-5 {
        padding: 0 !important;
    }
        .border-end {
        border-bottom: 2px solid white;
    }
    .card-footer {
        border-radius: 0px;
    }
}

/* 1006 */
.shadow-2xl {
    box-shadow: 0 40px 80px rgba(227, 6, 19, 0.25) !important;
}

.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-600 {
    font-weight: 600;
}

.transition-up {
    transition: all 0.4s ease;
}

.transition-up:hover {
    transform: translateY(-10px) scale(1.02);
}

/* 1103 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.transition-up {
    transition: all 0.4s ease;
    cursor: default;
}

.transition-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.font-italic {
    font-style: italic;
}

/* 1203 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.team-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card.transition-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--mad-red) !important;
}

/* Görsel Placeholderları için Animasyon */
.member-img-box img {
    transition: transform 0.6s ease;
}

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

/* 1320 */
.guide-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.guide-card:hover {
    background: #fff !important;
    border-color: #E30613 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.guide-img-box img {
    transition: transform 0.5s ease;
}

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

.badge {
    letter-spacing: 0.5px;
}

/* 1463 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.opacity-05 {
    opacity: 0.05;
}

.transition-up {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.transition-up:hover {
    transform: translateY(-10px);
    border-color: #E30613 !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.04) !important;
}

.legal-details label {
    display: block;
    margin-bottom: 2px;
}

/* 1564 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-600 {
    font-weight: 600;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.fleet-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.fleet-card.transition-up:hover {
    transform: translateY(-10px);
    border-color: #E30613 !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
}

.fleet-img-box img {
    transition: transform 0.6s ease;
}

.fleet-card:hover img {
    transform: scale(1.05);
}

.list-unstyled li {
    color: #555;
}

/* CTA button shadow for dark */
.btn-dark.transition-up:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    background-color: #000 !important;
}

/* 1665 */
.transition-up {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transition-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2) !important;
}

/* 1755 */
.blur-card {
    background: rgba(0, 0, 0, 0.6) !important;
}

.bg-opacity-05 {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.transition-up {
    transition: all 0.4s ease;
    cursor: pointer;
}

.transition-up:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Animation pulse for the AYT HUB status */
.badge.bg-danger {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

/* 1883 */
.fw-900 {
    font-weight: 900;
}

.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.transition-all {
    transition: all 0.3s ease;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #E30613 !important;
    padding-left: 5px;
}

.hover-bg-white:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    transform: scale(1.02);
}

.social-circle-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
}

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

.footer-icon-box {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.footer-icon-box:hover {
    transform: scale(1.1);
}

.transition-up:hover {
    transform: translateY(-2px);
}

