/* ================================================================
   GEZIBILET — GLOBAL DESIGN SYSTEM
   ================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-600: #DC2626;
    --red-700: #B91C1C;
    --red-500: #EF4444;
    --red-100: #FEE2E2;
    --red-50: #FEF2F2;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #111111;
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 999px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 16px -4px rgba(0, 0, 0, 0.1), 0 2px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 10px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 100%;
    --navbar-h: 72px;
    --topbar-h: 40px;
    --navbar-total-h: calc(var(--navbar-h) + var(--topbar-h));
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: #efefef;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === MODALS === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: var(--space-6);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: var(--space-6) var(--space-6) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.modal-header h2 i {
    color: var(--red-600);
    font-size: 18px;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.modal-body {
    padding: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group label .required {
    color: var(--red-600);
    margin-left: 2px;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--red-600);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 14.5px;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--transition);
    margin-top: var(--space-2);
}

.btn-submit:hover {
    background: var(--red-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.modal-footer {
    padding: 0 var(--space-6) var(--space-6);
    text-align: center;
}

.modal-footer p {
    color: var(--gray-500);
    font-size: 13.5px;
}

.modal-footer a {
    color: var(--red-600);
    font-weight: 600;
    cursor: pointer;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* === ALERTS & TOAST === */
.alert {
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    font-size: 13.5px;
    font-weight: 500;
}

.alert-error {
    background: var(--red-50);
    color: var(--red-600);
    border: 1px solid var(--red-100);
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.toast {
    position: fixed;
    top: 90px;
    right: var(--space-6);
    background: var(--red-600);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
    font-size: 14px;
    z-index: 3000;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* === TOUR CARDS === */
.tl-section {
    padding: var(--space-12) 0 var(--space-16);
    border-bottom: 1px solid var(--gray-100);
}

.tl-section:last-of-type {
    border-bottom: none;
}

.tl-section-alt {
    background: #efefef;
}

.tl-header {
    max-width: var(--container);
    margin: 0 auto var(--space-8);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tl-title-group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.tl-accent-bar {
    width: 4px;
    height: 32px;
    background: var(--red-600);
    border-radius: 2px;
    flex-shrink: 0;
}

.tl-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: var(--red-50);
    color: var(--red-600);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.tl-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--white);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.tl-see-all:hover {
    border-color: var(--red-600);
    color: var(--red-600);
    background: var(--red-50);
}

.tl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === PREMIUM TOUR CARD (NEW) === */
/* === MINIMALIST TOUR CARD === */
.tl-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
    position: relative;
}

.tl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.tl-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

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

.tl-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.tl-card-badges--bottom {
    top: auto;
    bottom: 10px;
}

.tl-card-badge--discount {
    background: #e2001a;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
}

.tl-card-badge--last-quota {
    background: #f59e0b;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.tl-card-badge--soldout {
    background: #64748b;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
}

.tl-card-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: var(--gray-400);
    font-size: 14px;
    transition: all 0.3s;
}

.tl-card-fav:hover {
    color: #e2001a;
    background: white;
}

.tl-card-fav.active {
    background: #e2001a;
    color: white;
}

.tl-card-price-float {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.tl-card-price {
    font-size: 16px;
    font-weight: 800;
    color: #1a1f4a;
}

.tl-old-price {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

/* Content Area */
.tl-card-content {
    padding: 15px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tl-card-category {
    font-size: 9px;
    font-weight: 800;
    color: #e2001a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.tl-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.tl-card-meta-new {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tl-meta-tag {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tl-meta-tag i {
    color: #cbd5e1;
}

.tl-card-bottom {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tl-card-price-area .tl-card-price {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tl-card-price-area .tl-old-price {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.tl-card-link {
    font-size: 12px;
    font-weight: 800;
    color: #e2001a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tl-card-link i {
    font-size: 10px;
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === FLOATING SOCIAL === */
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.float-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-instagram:hover {
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* === RESPONSIVE GLOBAL === */
@media (max-width: 1200px) {
    .tl-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .tl-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-h: 64px;
        --topbar-h: 36px;
    }

    .tl-section {
        padding: var(--space-8) 0 var(--space-10);
    }

    .tl-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .tl-card-price {
        font-size: 17px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tl-grid {
        grid-template-columns: 1fr;
    }

    .tl-card-cta {
        padding: 7px 14px;
        font-size: 11.5px;
    }

    .tl-card-price {
        font-size: 16px;
    }

    .tl-title {
        font-size: 16px;
    }
}