/* ===================================
   KAŞIFLER TURİZM - MODERN DESIGN SYSTEM
   =================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C61;
    --secondary-color: #004E89;
    --secondary-dark: #003A66;
    --secondary-light: #1A6BA8;
    --accent-color: #FFB627;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --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;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A6BA8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255,107,53,0.9) 0%, rgba(0,78,137,0.9) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.85rem;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
}

.logo i {
    font-size: 2.2rem;
    color: var(--primary-color);
    animation: rotate 20s linear infinite;
    flex-shrink: 0;
}

.logo span {
    color: #FF6B35;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

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


.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-call {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SLIDER
   =================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.slide-content {
    max-width: 700px;
    color: var(--white);
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.slide-content .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.animate-in {
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: var(--spacing-lg);
}

.slider-btn.next {
    right: var(--spacing-lg);
}

.slider-dots {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: var(--radius-full);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: var(--spacing-md);
}

/* ===================================
   POPULAR TOURS
   =================================== */

.popular-tours {
    padding: var(--spacing-3xl) 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
}

.tour-content {
    padding: var(--spacing-lg);
}

.tour-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.tour-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.tour-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tour-meta-item i {
    color: var(--primary-color);
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.tour-price span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
}

.tour-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
}

.tour-btn:hover {
    transform: translateX(5px);
}

/* ===================================
   DESTINATIONS
   =================================== */

.destinations {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.destination-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.destination-card.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: var(--gradient-overlay);
    color: var(--white);
    transform: translateY(0);
    transition: all var(--transition-base);
}

.destination-card:hover .destination-overlay {
    padding-bottom: var(--spacing-xl);
}

.destination-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.destination-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-decoration: none;
}

.footer-logo i {
    font-size: 1.3rem;
    color: #fff;
    background: #f97316;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-col p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-xs);
}

.contact-info li {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.contact-info i {
    color: #f97316;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-2xl);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ===================================
   ABOUT US SECTION
   =================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    width: 100%;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

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

@media (max-width: 1200px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-experience-badge {
        left: 20px;
        bottom: -20px;
        padding: 1.5rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-call {
        padding: 0.6rem 1.2rem;
    }
    
    .btn-call span {
        display: none;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.125rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: var(--spacing-sm);
    }
    
    .slider-btn.next {
        right: var(--spacing-sm);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
}

/* ===================================
   TÜRSAB & LEGAL ENHANCEMENTS
   =================================== */

/* ---- TÜRSAB TOP INFO BAR ---- */
.tursab-topbar {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 60%, #0f172a 100%);
    border-bottom: 1px solid rgba(249,115,22,0.35);
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 500;
    padding: 7px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-family: 'Outfit', sans-serif;
}

.tursab-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tursab-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.tursab-topbar-item i { color: #f97316; font-size: 0.68rem; }
.tursab-topbar-item strong { color: #e2e8f0; font-weight: 700; }

.tursab-topbar-sep { color: #334155; font-size: 0.9rem; }

.tursab-topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    color: #fdba74;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Navbar & content pushed below topbar */
.navbar { top: 37px !important; }

/* Hero & page sections pushed below topbar+navbar */
.hero-slider { margin-top: 109px !important; }
.page-header { margin-top: 109px !important; }
.legal-hero { margin-top: 109px !important; }

@media (max-width: 768px) {
    .tursab-topbar { display: none; }
    .navbar { top: 0 !important; }
    .hero-slider { margin-top: 70px !important; }
    .page-header { margin-top: 70px !important; }
    .legal-hero { margin-top: 72px !important; }
}

.nav-tursab-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ea580c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-tursab-badge i {
    color: #ea580c !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 0.75rem !important;
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.4rem;
        gap: 8px;
    }
    .logo i {
        font-size: 1.6rem;
    }
    .nav-tursab-badge {
        display: none;
    }
}

/* TÜRSAB Footer Badge */
.tursab-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    margin: 16px 0 12px 0;
    transition: all 0.3s ease;
}

.tursab-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.tursab-badge-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tursab-logo-box {
    flex-shrink: 0;
    line-height: 0;
}

.tursab-badge-text {
    display: flex;
    flex-direction: column;
}

.tursab-tag-title {
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

.tursab-no {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f97316;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.tursab-type {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

.tursab-desc {
    font-size: 0.76rem !important;
    color: #94a3b8 !important;
    margin: 10px 0 8px 0 !important;
    line-height: 1.4 !important;
}

.tursab-verify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    background: #f97316;
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.tursab-verify-btn:hover {
    background: #ea580c;
    color: #ffffff !important;
    padding-left: 12px !important;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.tursab-insurance-note {
    background: rgba(249, 115, 22, 0.08);
    border-left: 3px solid #f97316;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    color: #cbd5e1;
    margin-top: 14px;
    line-height: 1.4;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.tursab-insurance-note i {
    color: #f97316;
    margin-top: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Legal Pages Styling */
.legal-page-layout {
    padding: 60px 0 90px;
    background: #f8fafc;
}

.legal-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

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

.legal-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 90px;
}

.legal-sidebar h3 {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.legal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.legal-nav-link:hover {
    background: #fff7ed;
    color: #ea580c;
}

.legal-nav-link.active {
    background: #fff7ed;
    color: #ea580c;
    border-left-color: #ea580c;
    font-weight: 600;
}

.legal-sidebar-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}

.legal-sidebar-info strong {
    color: #0f172a;
}

.legal-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    line-height: 1.85;
    color: #334155;
}

@media (max-width: 768px) {
    .legal-content-card {
        padding: 24px 18px;
    }
}

.legal-content-card h1 {
    font-size: 1.85rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.legal-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #fed7aa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.legal-content-card h2 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-top: 32px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 700;
}

.legal-content-card h3 {
    font-size: 1.05rem;
    color: #1e293b;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content-card p, .legal-content-card ul, .legal-content-card ol {
    margin-bottom: 16px;
    font-size: 0.96rem;
}

.legal-content-card ul, .legal-content-card ol {
    padding-left: 22px;
}

.legal-content-card ul li, .legal-content-card ol li {
    margin-bottom: 8px;
}

.legal-highlight-box {
    background: #fff7ed;
    border-left: 4px solid #ea580c;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
    color: #7c2d12;
    font-size: 0.94rem;
    line-height: 1.7;
}

.legal-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.legal-info-table th, .legal-info-table td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
}

.legal-info-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
    width: 32%;
}

