/* Sivas Gezi Rotası - Premium Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: hsl(354, 90%, 50%); /* Logo red */
    --primary-hover: hsl(354, 90%, 42%);
    --primary-light: rgba(231, 76, 60, 0.1);
    --secondary: #121212; /* Black */
    --dark-grey: #1a1a1a;
    --light-grey: #f8f9fa;
    --border-color: rgba(0, 0, 0, 0.06);
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Text colors */
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
}

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

/* Common Container */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

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

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

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

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-red {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Topbar Header */
.topbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact, .topbar-social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition);
}

.topbar-contact a i {
    color: var(--primary);
    font-size: 13px;
}

.topbar-contact a:hover {
    color: var(--white);
}

.topbar-social a {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.topbar-social a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

/* Navbar Navigation */
.navbar {
    position: sticky;
    top: 8px;
    margin: 8px auto 16px auto;
    width: calc(100% - 40px);
    max-width: 1440px;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Clip the transparent padding that surrounds the logo in the PNG */
    overflow: hidden;
    height: 68px;
}

.nav-logo img {
    /* PNG has ~35% whitespace top+bottom internally.
       Render taller and crop with parent overflow:hidden. */
    height: 170px;
    margin-top: -48px;
    margin-bottom: -48px;
    width: auto;
    display: block;
    transition: var(--transition);
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.nav-links > li > a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    padding: 8px 12px;
    border-radius: 8px;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.nav-links > li > a:hover {
    color: var(--primary);
    background: rgba(231, 76, 60, 0.05);
}

.nav-links > li > a:hover::after {
    transform: scaleX(1);
}

.nav-links > li.active > a {
    color: var(--primary);
}

.nav-links > li.active > a::after {
    transform: scaleX(1);
}

.nav-cta-btn {
    background: linear-gradient(135deg, #25d366 0%, #1cba54 100%) !important;
    border: none !important;
    color: var(--white) !important;
    font-weight: 700;
    padding: 9px 18px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta-btn::after { display: none !important; }

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #20ba5a, #1b9d4c) !important;
    color: var(--white) !important;
}

.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    list-style: none;
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--light-grey);
    color: var(--primary);
    padding-left: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Burger Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Multiple hero slides cycling */
.hero-slide {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoomBg 30s infinite alternate ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1507608869274-d3177c8bb4c7?auto=format&fit=crop&w=1920&q=90');
    animation-delay: 0s;
}
.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=90');
    animation-delay: -7s;
}
.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=90');
    animation-delay: -14s;
}
.hero-slide:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1534008757030-27299c4371b6?auto=format&fit=crop&w=1920&q=90');
    animation-delay: -21s;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 30, 0.55) 0%,
        rgba(10, 14, 30, 0.72) 60%,
        rgba(10, 14, 30, 0.88) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 32px;
    animation: slideUpIn 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.18);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #fca5a5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 68px;
    line-height: 1.08;
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.hero-content h1 em {
    font-style: normal;
    color: var(--white);
    position: relative;
    display: inline-block;
}

/* Gradient underline for Bizimle Keşfedin */
.hero-content h1 em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff6b6b, #fca5a5);
    border-radius: 4px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(231, 76, 60, 0.45);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.hero-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(231, 76, 60, 0.55);
    color: var(--white);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Search Widget */
.search-widget {
    position: relative;
    max-width: 1200px;
    margin: -36px auto 0 auto;
    z-index: 10;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.search-tabs {
    display: flex;
    background: #f4f6f8;
    border-bottom: 1.5px solid #e9ecef;
    padding: 0 28px;
}

.search-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    cursor: pointer;
    padding: 14px 20px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.search-tab-btn.active {
    color: var(--primary);
    background: var(--white);
}

.search-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
}

.search-form {
    display: flex;
    align-items: flex-end;
    padding: 20px 28px 22px;
    gap: 12px;
    flex-wrap: wrap;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    align-self: flex-end;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.search-form-group {
    flex: 1;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.search-form-group label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-form-group label i {
    color: var(--primary);
}

.search-form-group select,
.search-form-group input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background-color: #f9fafb;
    color: #111827;
    outline: none;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.search-form-group select:focus,
.search-form-group input:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.search-form-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-submit-btn {
    height: auto;
    min-width: 130px;
    align-self: flex-end;
    border-radius: 10px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 11px 22px !important;
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.28);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.search-submit-btn:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(231, 76, 60, 0.38);
}


/* Section Layout */
.section-padding {
    padding: 88px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title {
    max-width: 600px;
}

.section-title small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #111827;
}

.section-title p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Categories Bento Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}

.category-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.category-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.category-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.category-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.category-card-content .cat-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.category-card-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.category-card-content > span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    font-weight: 400;
    margin-bottom: 12px;
}

.category-card-content .cat-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 13px;
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .cat-arrow {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateX(4px);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.category-card:hover img {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(0.9);
}

.category-card:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(231, 76, 60, 0.6) 100%);
}




/* Tour Card List Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.catalog-layout main .tours-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.tour-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.tour-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-card-body h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 12px;
    height: 46px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tour-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.tour-price h4 {
    font-size: 22px;
    color: var(--primary);
    font-weight: 800;
}

.tour-price span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(231, 76, 60, 0.2);
}

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

/* Regions Grid Layout */
.regions-section {
    background-color: var(--light-grey);
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
}

.region-item {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.region-item i {
    color: var(--primary);
    font-size: 18px;
}

.region-item a {
    font-weight: 500;
    font-size: 14px;
}

.region-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

/* Why Choose Us & About Box Card */
.about-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-box-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--light-grey);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.about-box-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Footer Section styling */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-info li {
    display: flex;
    gap: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.footer-info li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-info a {
    color: var(--text-light);
}

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

.footer-tursab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-tursab img {
    max-width: 100px;
    background-color: var(--white);
    padding: 8px;
    border-radius: var(--radius-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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



/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.login-modal {
    background-color: var(--white);
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .login-modal {
    transform: scale(1);
}

.modal-header-login {
    background-color: var(--secondary);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.modal-header-login h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 6px;
}

.modal-header-login p {
    font-size: 13px;
    color: var(--text-light);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
}

.modal-close-btn:hover {
    opacity: 1;
}

.modal-body-login {
    padding: 30px;
}

.form-group-login {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group-login label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group-login input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group-login input:focus {
    border-color: var(--primary);
}

.login-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Cookie consent banner styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: var(--white);
    width: 420px;
    max-width: calc(100vw - 40px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.cookie-banner-title i {
    color: var(--primary);
}

.cookie-banner-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: var(--white);
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-settings {
    background-color: var(--light-grey);
    color: var(--secondary);
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

/* Catalog View & Filters styling */
.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.mobile-filter-toggle-container {
    display: none;
}

.filter-sidebar {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    height: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.filter-sidebar h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    text-transform: uppercase;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group h4 {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.filter-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-links-list li {
    display: block;
}

.filter-links-list a {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.filter-links-list a span {
    font-size: 11px;
    font-weight: 700;
    background-color: #f1f5f9;
    color: #64748b;
    padding: 3px 8px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.filter-links-list li.active a,
.filter-links-list a:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.filter-links-list li.active a span,
.filter-links-list a:hover span {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

/* Single Tour Details Layout styling */
.tour-details-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.tour-details-main h1 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.tour-details-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.detail-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-info-item i {
    color: var(--primary);
    font-size: 20px;
}

.detail-info-item-text {
    font-size: 13px;
    color: var(--text-muted);
}

.detail-info-item-text span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.tour-details-hero-img {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: var(--shadow-md);
}

.tour-details-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-highlights-box {
    background-color: var(--light-grey);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 40px;
}

.tour-highlights-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.tour-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
}

.tour-highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.tour-highlights-list li i {
    color: #25d366;
}

/* Tabs structure */
.detail-tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    gap: 30px;
    margin-bottom: 25px;
}

.detail-tab-trigger {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    padding: 12px 0;
    position: relative;
}

.detail-tab-trigger.active {
    color: var(--primary);
}

.detail-tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.detail-tab-content {
    display: none;
}

.detail-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.day-item {
    margin-bottom: 24px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.day-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.inc-list, .exc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inc-list li, .exc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.inc-list i { color: #25d366; }
.exc-list i { color: var(--primary); }

/* Booking Card (Sticky Sidebar) */
.booking-sticky-card {
    position: sticky;
    top: 110px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 30px;
}

.booking-price-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.booking-price-header span {
    font-size: 13px;
    color: var(--text-muted);
}

.booking-price-header h3 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 800;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
    transition: var(--transition);
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    border-color: var(--primary);
}

.booking-submit-btn {
    width: 100%;
}

.whatsapp-booking-btn {
    width: 100%;
    background-color: #25d366;
    color: var(--white);
}

.whatsapp-booking-btn:hover {
    background-color: #20ba5a;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Hakkımızda and Contact styling */
.about-page-desc h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.about-page-desc p {
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-info-details p, .contact-info-details a {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-map-mockup {
    margin-top: 50px;
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

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

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    .category-card:nth-child(1),
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4) {
        grid-column: span 1 !important;
        height: 250px !important;
    }
    .tours-grid, .regions-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .catalog-layout, .tour-details-layout {
        grid-template-columns: 1fr;
    }
    .booking-sticky-card {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

@media screen and (max-width: 900px) {
    .categories-grid {
        grid-template-rows: 320px 240px;
    }
    .category-card-content h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .topbar {
        display: none;
    }

    .navbar {
        position: sticky;
        top: 0;
        margin: 0;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    }

    .navbar .container {
        height: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-logo {
        height: 60px;
    }

    .nav-logo img {
        height: 110px;
        margin-top: -25px;
        margin-bottom: -25px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 4px;
        transition: left 0.35s ease;
        overflow-y: auto;
        box-shadow: 4px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links > li > a {
        width: 100%;
        padding: 13px 16px;
        border-radius: 10px;
        font-size: 15px;
    }

    .nav-links.active {
        left: 0;
    }

    /* Mobile Dropdown Styling */
    .nav-links .dropdown {
        width: 100%;
    }
    .nav-links .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .nav-links .dropdown-menu {
        position: static;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease-in-out;
        width: 100%;
        transform: none;
        background-color: #f8fafc;
        border-radius: 10px;
    }
    .nav-links .dropdown.active .dropdown-menu {
        opacity: 1;
        max-height: 400px;
        pointer-events: auto;
        padding: 8px 0;
        margin-top: 6px;
    }
    .nav-links .dropdown.active > a i {
        transform: rotate(180deg);
    }
    .nav-links .dropdown-menu a {
        padding: 11px 20px;
        font-size: 14px;
    }
    .nav-links .dropdown-menu a:hover {
        padding-left: 26px;
        color: var(--primary);
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-actions {
        display: none;
    }

    /* Hero mobile */
    .hero {
        height: 580px;
    }

    .hero-content h1 {
        font-size: 34px;
        letter-spacing: -0.02em;
    }

    .hero-eyebrow {
        font-size: 10px;
        padding: 6px 14px;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 24px;
        padding-top: 20px;
    }

    .hero-stat strong {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-btn-primary, .hero-btn-outline {
        padding: 13px 24px;
        font-size: 14px;
    }

    /* Search widget mobile */
    .search-widget {
        margin: 0 12px;
        border-radius: 14px;
    }

    .search-form {
        padding: 16px;
        gap: 10px;
    }

    .search-form-group {
        min-width: 100%;
    }

    .search-divider {
        display: none;
    }

    .search-submit-btn {
        width: 100% !important;
        justify-content: center;
    }

    /* Categories mobile */
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 230px);
        gap: 12px;
    }

    .category-card:nth-child(1),
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        height: auto;
    }

    .category-card-content h3 {
        font-size: 18px;
    }

    .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .regions-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-box, .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-padding {
        padding: 56px 0;
    }

    /* Mobile Catalog Layout & Filter Sidebar Drawer */
    .catalog-layout {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .mobile-filter-toggle-container {
        display: block !important;
        margin-bottom: 20px;
        width: 100%;
    }

    .mobile-filter-toggle-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 700;
        border-radius: 12px;
        background-color: var(--white);
        border: 2px solid var(--primary);
        color: var(--primary);
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.08);
    }

    .mobile-filter-toggle-btn:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    .filter-sidebar {
        display: none; /* Collapsed by default on mobile */
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border-color: #e2e8f0;
        animation: slideDownIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .filter-sidebar.active {
        display: block !important;
    }
}

@media screen and (max-width: 520px) {
    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .category-card:nth-child(1),
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
        height: 220px !important;
    }
    .tours-grid, .regions-list {
        grid-template-columns: 1fr !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .tour-highlights-list {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 12px;
    }
    .hero-stat strong {
        font-size: 18px;
    }
}

/* ==========================================
   FLOATING ELEMENTS & KVKK COOKIE STYLING 
   ========================================== */

/* Yüzen WhatsApp Butonu */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Pulse Efekti */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #25d366;
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Yüzen Sosyal Destek Balonu */
.floating-contact-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
}

.bubble-toggler {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.bubble-toggler:hover {
    background-color: var(--primary);
    transform: scale(1.05);
}

.bubble-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition);
    transform-origin: bottom right;
}

.bubble-menu.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.bubble-menu h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--secondary);
}

.bubble-menu p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bubble-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bubble-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.bubble-option-btn.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.bubble-option-btn.whatsapp:hover {
    background-color: #25d366;
    color: var(--white) !important;
}

.bubble-option-btn.instagram {
    background-color: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.bubble-option-btn.instagram:hover {
    background-color: #e1306c;
    color: var(--white) !important;
}

.bubble-option-btn.phone {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.bubble-option-btn.phone:hover {
    background-color: var(--secondary);
    color: var(--white) !important;
}

/* Çerez (KVKK) Onay Penceresi */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 24px;
    z-index: 1001;
    transform: translateY(120%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-title i {
    color: var(--primary);
}

.cookie-banner-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept:hover {
    background-color: var(--primary-hover);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-settings:hover {
    background-color: var(--light-grey);
    color: var(--secondary);
}

@media screen and (max-width: 520px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    }
}

