/* ========================================
   NTZ TEMA — MAIN CSS
   Renk paleti, tipografi, layout, header,
   footer, hero, turlar, özellikler, CTA,
   responsive tasarım.

   @package NTZ_Tema
   @since   1.0.0
   ======================================== */

/* ========================================
   CSS DEĞİŞKENLERİ (TASARIM SİSTEMİ)
   ======================================== */
:root {
    /* Birincil Renkler — Royal Blue */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #60a5fa;
    --color-primary-50: #eff6ff;
    --color-primary-100: #dbeafe;
    --color-primary-900: #1e3a8a;

    /* İkincil Renkler — Altın / Sıcak */
    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;
    --color-accent-light: #fbbf24;

    /* Nötr Renkler */
    --color-dark: #0f172a;
    --color-dark-700: #1e293b;
    --color-dark-600: #334155;
    --color-dark-500: #475569;
    --color-gray: #64748b;
    --color-gray-light: #94a3b8;
    --color-gray-100: #f1f5f9;
    --color-gray-50: #f8fafc;
    --color-white: #ffffff;

    /* Durum Renkleri */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;

    /* Tipografi */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Aralıklar */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Kenar Yuvarlaklıkları */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-2xl: 0px;
    --radius-full: 0px;

    /* Gölgeler */
    --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 -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);

    /* Geçişler */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Header yüksekliği */
    --header-height: 80px;
}

/* ========================================
   TOPBAR (MAVİ ÜST BİLGİ ÇUBUĞU)
   ======================================== */
.ntz-topbar {
    background: #1a56db;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1100;
}

.ntz-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    gap: 1rem;
}

.ntz-topbar-left,
.ntz-topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ntz-topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    white-space: nowrap;
}

.ntz-topbar-link:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .ntz-topbar-left { display: none; }
    .ntz-topbar-right { gap: 1rem; }
}

@media (max-width: 600px) {
    .ntz-topbar { display: none; }
}

/* ========================================
   HEADER (BEYAZ, STİCKY)
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all var(--transition-normal);
    height: var(--header-height);
}

.site-header::before {
    display: none;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-lg);
}

/* Logo */
.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo-text {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-dark);
    transition: opacity var(--transition-fast);
}

.site-logo-text:hover {
    opacity: 0.8;
    color: var(--color-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-dark);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--color-gray);
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* TÜRSAB Rozeti */
.tursab-badge {
    display: flex;
    align-items: center;
    margin-left: 14px;
}

/* TÜRSAB Rozeti — Yazı */
.tursab-badge-text {
    display: flex;
    align-items: center;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.tursab-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-gray);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tursab-badge-text {
        display: none;
    }
}

/* Navigasyon */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark-600);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: var(--space-md);
    right: var(--space-md);
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    transform: scaleX(1);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--color-primary);
    background: transparent;
}

/* Alt menü */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-fast);
}

.main-navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul a {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    width: 100%;
}

.main-navigation ul ul a::after {
    display: none;
}

/* Header Butonlar */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* Header outline mavi buton */
.btn-outline-blue {
    background: transparent;
    color: #1a56db;
    border: 2px solid #1a56db;
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-outline-blue:hover {
    background: #1a56db;
    color: #fff;
}
.btn-primary {
    border-radius: 50px !important;
}
.btn-outline {
    border-radius: 50px !important;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobil menü içi aksiyon butonları — masaüstünde gizli */
.nav-mobile-actions {
    display: none !important;
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    gap: 6px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: var(--color-gray-100);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   BUTONLAR
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.6rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-900));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    color: var(--color-white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--color-accent-dark), #b45309);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    color: var(--color-white);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-dark-600);
    border-color: var(--color-gray-light);
    font-weight: 500;
}

.btn-outline-light:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray);
    color: var(--color-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--color-dark-600);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ========================================
   HERO BÖLÜMÜ
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.75) 0%,
        rgba(37, 99, 235, 0.45) 50%,
        rgba(15, 23, 42, 0.65) 100%
    );
    z-index: 1;
}

/* Parçacık animasyonu */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; animation-duration: 18s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; animation-duration: 20s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 3s; animation-duration: 16s; width: 5px; height: 5px; }

@keyframes float-particle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.3; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Hero İçerik */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding-top: var(--header-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto var(--space-2xl);
    color: #ffffff;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    flex-wrap: wrap;
}

/* Hero İstatistikler */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0;
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ========================================
   BÖLÜM ORTAK STİLLER
   ======================================== */
.section-padding {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--color-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ========================================
   TUR KARTLARI
   ======================================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

.tour-card {
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.tour-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tour-card .tour-card-image img,
.tour-card-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block;
    transition: transform var(--transition-slow);
}

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

.tour-status {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.tour-status--guncel {
    background: var(--color-success);
    color: var(--color-white);
}

.tour-status--yaklasan {
    background: var(--color-accent);
    color: var(--color-white);
}

.tour-status--gecmis {
    background: var(--color-gray);
    color: var(--color-white);
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.tour-card:hover .tour-card-overlay {
    opacity: 1;
}

.tour-card-view {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.tour-card:hover .tour-card-view {
    transform: translateY(0);
}

.tour-card-body {
    padding: var(--space-lg);
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.tour-card-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

.tour-meta-item svg {
    flex-shrink: 0;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-gray-100);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* ========================================
   NEDEN BİZ / ÖZELLİKLER
   ======================================== */
.why-us-section {
    background: var(--color-gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-100);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary-50), var(--color-primary-100));
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   CTA BÖLÜMÜ
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-900) 100%);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #1a3a6b;
    color: rgba(255, 255, 255, 0.9);
}

.footer-top {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-logo-text:hover {
    color: var(--color-primary-light);
}

.footer-logo .custom-logo-link {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-logo .custom-logo {
    max-height: 50px;
    width: auto;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
}

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #60a5fa;
    border-radius: 0;
}

/* Footer TÜRSAB rozeti */
.footer-tursab-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

/* İletişim Listesi */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary-light);
}

.contact-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-list a:hover {
    color: var(--color-primary-light);
}

/* Footer CTA */
.footer-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-member-msg {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-success) !important;
    font-weight: 500;
}

/* Alt Footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ========================================
   ANİMASYONLAR
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sayfa yüklenirken görünür olan elemanlar */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE TASARIM
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .hero-stats {
        gap: var(--space-xl);
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Mobil Landscape */
@media (max-width: 768px) {
    /* Mobil header için backdrop-filter'ı kapatarak stacking context hatasını çöz (menünün yarım açılmasını engeller) */
    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff !important;
    }

    /* TÜRSAB rozeti mobilde görünür yap ve boyutu ayarla */
    .tursab-badge {
        display: flex !important;
        margin-left: 8px !important;
        align-items: center;
    }

    .tursab-badge img {
        height: 36px !important;
        width: auto !important;
    }

    /* Header mobil — tam ekran kayan menü paneli.
       top:0 + 100dvh ile her zaman tam yükseklikte açılır; konum JS'e bağlı
       değildir (eski "yarım açılma" sorununun kök nedeni buydu). Header'ı
       boşaltmak için üstten padding verilir, böylece kapatma (X) butonu görünür kalır. */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;          /* eski tarayıcılar için yedek */
        height: 100dvh;         /* mobil adres çubuğu dahil gerçek yükseklik */
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: var(--space-md);
        padding: calc(var(--header-height) + 44px) var(--space-xl) var(--space-2xl);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;          /* kapatma butonu (1002) üstte kalsın diye */
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .main-navigation ul {
        flex-direction: column;
        gap: var(--space-xs);
        width: 100%;
    }

    .main-navigation a {
        padding: var(--space-md) var(--space-lg);
        font-size: 1.05rem;
        width: 100%;
        border-radius: var(--radius-md);
        transition: all 0.2s ease;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item > a {
        background: var(--color-primary-50);
        color: var(--color-primary);
    }

    .main-navigation a::after {
        display: none;
    }

    .main-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: var(--space-lg);
        background: var(--color-gray-50);
        border-radius: var(--radius-md);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    /* Giriş/Üye Ol butonlarını mobilde menü içinde göster */
    .nav-mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        margin-top: auto;
        padding-top: var(--space-lg);
        border-top: 1px solid var(--color-gray-100);
    }

    .nav-mobile-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero mobil */
    .hero-section {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    /* Footer mobil */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Tours grid */
    .tours-grid {
        grid-template-columns: 1fr;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobil Portrait */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: var(--space-3xl) 0;
    }

    .tour-card-body {
        padding: var(--space-md);
    }
}

/* Büyük ekranlar */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ========================================
   WORDPRESS ADMIN BAR UYUMU
   ======================================== */
body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ========================================
   ELEMENTOR UYUMU
   ======================================== */
.elementor-page .site-content {
    padding: 0;
}

.elementor-page .site-main {
    padding: 0;
}

/* ========================================
   HERO SLIDER EFEKTLERİ
   ======================================== */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
    z-index: 2;
}

/* ========================================
   SON DAKİKA İNDİRİM MANŞET BANDI (TICKER)
   ======================================== */
.ntz-discount-ticker {
    background: linear-gradient(90deg, #0f172a 0%, var(--color-primary-900) 30%, var(--color-primary-dark) 60%, #0f172a 100%);
    color: var(--color-white);
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: var(--header-height, 80px);
    left: 0;
    right: 0;
    z-index: 999;
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.ntz-discount-ticker::before {
    content: '🔔 SON DAKİKA';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;          /* içeriğe göre genişle — sıkışıp kaymanın bozulmasını önler */
    flex-shrink: 0;
    animation: ntz-ticker-scroll 40s linear infinite;
    will-change: transform;
}

/* Her grup, mesaj dizisinin bir tam kopyası (iki birebir grup = kusursuz döngü) */
.ticker-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.ntz-discount-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-item::after {
    content: '◆';
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-size: 0.5rem;
    opacity: 0.7;
}

/* İki birebir grup olduğu için -50% = bir tam grup kayması = kusursuz döngü.
   "SON DAKİKA" rozeti soldaki alanı kapattığı için yazılar rozetin arkasından
   akar; bu yüzden track'e ekstra padding gerekmez ve döngü her ekranda kusursuz. */
@keyframes ntz-ticker-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

/* Erişilebilirlik: hareketi azalt tercihinde animasyon çalışmasın */
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
    .ntz-discount-ticker {
        overflow-x: auto;
    }
    /* Tekrarlanan ikinci grup hareketsiz modda gereksiz, gizle */
    .ticker-group[aria-hidden="true"] {
        display: none;
    }
}

/* Ticker yüzünden hero ve diğer içeriklerin padding'ini ayarla */
.site-content {
    padding-top: 0;
}

.hero-section {
    margin-top: 38px; /* ticker yüksekliği */
}

/* WP Admin bar uyumu */
body.admin-bar .ntz-discount-ticker {
    top: calc(var(--header-height, 80px) + 32px);
}




/* Turlar arşiv sayfasında ticker düzeltmesi */
.tur-archive-page .page-hero {
    padding-top: calc(8rem + 38px);
}

/* Responsive */
@media (max-width: 768px) {
    .ntz-discount-ticker {
        height: 32px;
        font-size: 0.78rem;
    }

    .ntz-discount-ticker::before {
        font-size: 0.6rem;
        padding: 0 0.6rem;
    }

    .ticker-item {
        padding: 0 1.25rem;
        font-size: 0.78rem;
    }

    .hero-section {
        margin-top: 32px;
    }

    .tur-archive-page .page-hero {
        padding-top: calc(8rem + 32px);
    }
}

@media (max-width: 782px) {
    body.admin-bar .ntz-discount-ticker {
        top: calc(var(--header-height, 80px) + 46px);
    }
}

/* ========================================
   HERO BÖLÜMÜ — SPLIT LAYOUT (v2.0 override)
   ======================================== */
.hero-section.hero-split,
.hero-split {
    position: relative;
    min-height: auto;
    padding: 80px 0 80px;
    background: #f8fafc !important;
    background-image: none !important;
    background-attachment: scroll !important;
    overflow: hidden;
    display: block;
    margin-top: 0;
}

/* Eski hero overlay ve background-image'i sıfırla */
.hero-split .hero-overlay {
    display: none !important;
}

.hero-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 75vh;
}

/* Sol: Yazı */
.hero-text {
    padding-right: var(--space-xl);
}

.hero-split .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-dark {
    display: block;
    color: var(--color-dark);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-split .hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.75;
    max-width: 460px;
    margin: 0 0 var(--space-2xl) 0;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-split .hero-buttons {
    justify-content: flex-start;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    gap: var(--space-md);
}

/* Sağ: Kolaj Görseli */
.hero-collage {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.3s both;
    position: relative;
}

.hero-collage-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.12));
}

@media (max-width: 900px) {
    .hero-split-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: var(--space-2xl);
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-split .hero-subtitle {
        margin: 0 auto var(--space-2xl);
    }

    .hero-split .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-collage-img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero-split .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-split .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   DESTİNASYON CAROUSEL
   ======================================== */
.destinations-section {
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background: var(--color-gray-50);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: var(--space-lg);
    animation: carousel-scroll 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

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

.carousel-slide:hover .carousel-img {
    transform: scale(1.05);
}

@keyframes carousel-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

/* Dot navigasyon */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* Hover'da duraklat */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .carousel-slide {
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        width: 280px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 240px;
        height: 170px;
    }
}

/* ========================================
   BLOG BÖLÜMÜ
   ======================================== */
.blog-section {
    background: var(--color-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
}

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

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

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-light);
}

.blog-card-date {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-white);
    border-radius: 8px;
    padding: var(--space-xs) var(--space-sm);
    text-align: center;
    min-width: 50px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.blog-date-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}

.blog-date-month {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-cat {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.blog-card-body {
    padding: var(--space-lg);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.blog-author {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--color-gray);
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-read-more {
    color: var(--color-primary-dark);
}

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

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

/* ========================================
   FOOTER — v2.0 Royal Blue eklentileri
   ======================================== */
.footer-logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-tursab {
    margin-bottom: var(--space-lg);
}

.footer-tursab-img {
    max-height: 50px;
    width: auto;
    border-radius: 4px;
    background: #fff;
    padding: 4px 8px;
}

/* Footer blog listesi */
.footer-blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-blog-list li {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-blog-list li:last-child {
    border-bottom: none;
}

.footer-blog-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    display: block;
    transition: color var(--transition-fast);
}

.footer-blog-list a:hover {
    color: var(--color-white);
}

.footer-blog-date {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.ntz-google-reviews-section {
    padding: 50px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.ntz-google-reviews-section .ntz-gr-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 28px;
    color: var(--color-primary, #0e7490);
}

