/* ==================== SPLASH ANIMATION ==================== */

.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: transparent;
    padding-bottom: 15vh;
}

.splash-logo {
    opacity: 0;
    transform: scale(0.3);
    animation: splashLogoIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

.splash-logo-img {
    width: 400px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 10px 40px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
    .splash-overlay {
        padding-bottom: 0;
    }

    .splash-logo-img {
        width: 220px;
    }
}

@keyframes splashLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
    70% {
        transform: scale(0.95) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.splash-logo.move-to-header {
    animation: splashMoveToHeader 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashMoveToHeader {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(0, -50vh);
    }
}

.splash-overlay.hidden {
    display: none;
}

/* Header logo - initially hidden on homepage */
body.splash-active .logo-img {
    opacity: 0 !important;
    transition: opacity 0.25s ease;
}

body.splash-active .logo-img.logo-visible {
    opacity: 1 !important;
}

/* Service cards - initially hidden on homepage */
body.splash-active .services-grid .service-card {
    opacity: 0;
    transform: translateY(40px);
}

body.splash-active .services-grid .service-card.card-visible {
    animation: cardFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==================== END SPLASH ANIMATION ==================== */

/* Global Styles */
:root {
    --primary-color: #00b8d4; /* Turkuaz */
    --secondary-color: #0288d1; /* Mavi */
    --accent-color: #ff9800; /* Turuncu */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #00b8d4 0%, #0288d1 100%);
    --gradient-accent: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button, a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 184, 212, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(0, 184, 212, 0.15);
    backdrop-filter: blur(15px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    padding-right: 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    /* Hover effect removed - logo stays same size */
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    /* Hover effect removed - logo stays same size */
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: none;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled .nav-menu a::after {
    background: var(--gradient-primary);
    box-shadow: none;
}

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

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

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

.nav-menu a.active {
    font-weight: 600;
    color: #009cd2;
}

.navbar.scrolled .nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 8px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .hamburger:hover {
    background: rgba(0, 184, 212, 0.1);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: none;
}

.navbar.scrolled .hamburger span {
    background: var(--primary-color);
    box-shadow: none;
}

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

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

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

/* Cart Icon */
.header-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 4%;
    background: #f0f0f0;
    color: #555;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s;
}
.header-cart-icon:hover {
    background: #e8f8f5;
    color: #147db8;
}
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ff9800;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 9px;
    line-height: 1;
}

/* Auth Buttons - Modern Design */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

button.btn-auth {
    font-family: inherit;
    cursor: pointer;
}

button.btn-auth.btn-login {
    background: none;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-auth::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-auth:hover::before {
    width: 350px;
    height: 350px;
}

.btn-login {
    color: var(--primary-color);
    background: transparent;
    border: 2.5px solid var(--primary-color);
    position: relative;
    text-shadow: none;
    z-index: 1;
}

.btn-login i,
.btn-login span,
.btn-auth > i,
.btn-auth > span {
    position: relative;
    z-index: 2;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 184, 212, 0.3);
}

.btn-login i {
    font-size: 1rem;
}

.btn-signup {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: var(--white);
    border: 2.5px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-signup:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
}

/* Auth buttons active state */
.btn-auth:active {
    transform: translateY(0) scale(0.98);
}

/* Auth buttons on navbar scroll */
.navbar.scrolled .btn-login {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-shadow: none;
}

.navbar.scrolled .btn-login:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.navbar.scrolled .btn-signup {
    box-shadow: 0 3px 12px rgba(255, 152, 0, 0.35);
}

/* Auth buttons focus state (accessibility) */
.btn-auth:focus {
    outline: 3px solid rgba(255, 152, 0, 0.5);
    outline-offset: 3px;
}

/* Icon styles - no animation on hover */

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.btn-signup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Hero Section with Service Cards */
.hero {
    position: relative;
    min-height: 75vh;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.85) 0%, rgba(2, 136, 209, 0.85) 100%);
}

.hero-services {
    position: relative;
    z-index: 1;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 152, 0, 0.5);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.6);
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 184, 212, 0.4);
}

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

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 184, 212, 0.2);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Popular Tours Section */
.popular-tours {
    padding: 5rem 0;
    background: var(--light-gray);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tour-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.tour-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: var(--white);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 1rem 0;
    background: var(--light-gray);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-auth {
        gap: 0.8rem;
    }
    
    .btn-auth {
        padding: 0.7rem 1.6rem;
        font-size: 0.9rem;
    }
    
    .btn-login {
        color: var(--primary-color);
        border-color: var(--primary-color);
        text-shadow: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Mobilde logo kucult ve menu ustunde goster */
    .logo {
        position: relative;
        z-index: 999;
    }

    .logo-img {
        height: 36px !important;
    }

    .nav-container {
        padding: 0.6rem 16px;
        padding-right: 16px;
    }

    .nav-auth {
        display: none;
    }

    /* Hamburger menu acildiginda */
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: #fff;
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        box-shadow: none;
        padding: 80px 24px 100px;
        overflow-y: auto;
        z-index: 998;
        justify-content: flex-start;
        gap: 0;
        transform: translateX(-100%);
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu a {
        color: #333 !important;
        text-shadow: none;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-menu a::after {
        background: var(--primary-color);
    }

    .nav-menu a.active {
        color: var(--primary-color) !important;
    }

    /* Mobil menu item ayirici */
    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 16px 8px;
        font-size: 1.05rem;
    }

    /* Mobilde Login/Register butonu menu icinde */
    .nav-auth.mobile-active {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 24px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        justify-content: flex-start;
        border-top: 1px solid #eee;
    }

    .nav-auth.mobile-active .btn-login-register {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Mobilde profil dropdown yukari dogru acilsin */
    .nav-auth.mobile-active .user-profile-header {
        width: 70%;
        justify-content: flex-start;
    }

    .nav-auth.mobile-active .user-dropdown {
        top: auto;
        bottom: 100%;
        margin-top: 0;
        margin-bottom: 8px;
        transform: translateY(8px);
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-auth.mobile-active .user-profile-header:hover .user-dropdown,
    .nav-auth.mobile-active .user-profile-header.dropdown-open .user-dropdown {
        transform: translateY(0);
    }

    .nav-auth.mobile-active .user-dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-auth.mobile-active .user-profile-header:hover .user-dropdown-arrow,
    .nav-auth.mobile-active .user-profile-header.dropdown-open .user-dropdown-arrow {
        transform: rotate(0deg);
    }

    .hero {
        height: 100svh;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .category-card p {
        font-size: 0.85rem;
    }

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

    .tour-image {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .container {
        padding: 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100svh;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .features-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-card {
        margin: 0 0.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.25rem;
    }

    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .popular-tours,
    .categories,
    .testimonials,
    .cta {
        padding: 3rem 0;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .scroll-indicator {
        font-size: 1.5rem;
    }
}

/* Page Header (for all pages except home) */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80') center/cover;
    margin-top: 70px;
    padding-top: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.85) 0%, rgba(2, 136, 209, 0.85) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Page Header */
@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* ============================================
   LOGIN MODAL
   ============================================ */

.login-modal {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.login-modal:not(.active) .modal-overlay {
    opacity: 0;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 460px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.login-modal:not(.active) .modal-content {
    transform: translateY(30px);
    opacity: 0;
}

.login-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0;
}

.login-form .form-group {
    margin-bottom: 1.2rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #999;
    font-size: 1.1rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.remember-me input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #c62828;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #2e7d32;
}

.btn-submit-signup {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%) !important;
}

.btn-submit-signup:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%) !important;
}

.btn-submit,
.login-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00b8d4, #0288d1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 212, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover,
.login-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 184, 212, 0.4);
}

.btn-submit:active,
.login-form .btn-submit:active {
    transform: translateY(0);
}

.modal-divider {
    text-align: center;
    margin: 2rem 0 1rem;
    position: relative;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.modal-divider::before {
    left: 0;
}

.modal-divider::after {
    right: 0;
}

.modal-divider span {
    background: white;
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
}

.signup-text {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.signup-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.signup-text a:hover {
    text-decoration: underline;
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem;
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .service-card p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .service-card .service-link {
        font-size: 0.8rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem 1.5rem;
        width: 95%;
        max-height: 80vh;
    }
    
    .modal-header {
        margin-bottom: 1.2rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .login-form .form-group {
        margin-bottom: 1rem;
    }
    
    .form-options {
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 0.6rem;
    }

    .service-card {
        padding: 1rem 0.6rem;
    }
    
    .service-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
    }
    
    .service-card p {
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-card .service-link {
        font-size: 0.75rem;
    }
}

/* =========================================
   Login / Register Page Styles
   ========================================= */

.auth-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding-top: 60px;
}

.auth-wrapper {
    display: flex;
    align-items: stretch;
    min-width: 1366px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

/* Sol ve sag auth kartlari */
.auth-card {
    flex: 1;
    padding: 48px 100px;
}

.auth-card h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.auth-subtitle {
    color: #888;
    font-size: 0.92rem;
    margin-bottom: 24px;
}

/* Sosyal butonlar */
.auth-social {
    margin-bottom: 16px;
}

.auth-social > span {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Ayirici cizgi */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 18px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    padding: 0 14px;
    font-size: 0.85rem;
    color: #aaa;
}

/* Dikey ayirici */
.auth-divider-vertical {
    width: 1px;
    background: #e8e8e8;
    margin: 32px 0;
}

/* Form alanlari */
.auth-form-group {
    margin-bottom: 14px;
}

.auth-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.92rem;
    color: #333;
    background: #fff;
    transition: border-color 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.auth-form-group input:focus {
    border-color: var(--accent, #ff9800);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.auth-form-group input::placeholder {
    color: #bbb;
}

/* Sifre alani wrapper */
.auth-password-wrapper {
    position: relative;
}

.auth-password-wrapper input {
    padding-right: 42px;
}

.auth-toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 0.95rem;
    padding: 4px;
}

.auth-toggle-pw:hover {
    color: #666;
}

/* Remember secenegi */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #666;
    cursor: pointer;
}

.auth-remember input[type="checkbox"] {
    accent-color: var(--accent, #ff9800);
    width: 16px;
    height: 16px;
}

/* Mesaj alanlari */
.auth-message {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.auth-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.auth-message.error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

/* Butonlar */
.auth-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn-login {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: #fff;
}

.auth-btn-login:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
}

.auth-btn-register {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: #fff;
}

.auth-btn-register:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =========================================
   Header Nav Selectors (Currency / Language)
   ========================================= */

.nav-selectors {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-selector {
    position: relative;
}

.nav-selector-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nav-selector-btn:hover {
    border-color: #bbb;
    background: #f9f9f9;
}

.nav-selector.open .nav-selector-btn {
    border-color: #ff9800;
    color: #ff9800;
}

.nav-selector-btn i:first-child {
    font-size: 0.85rem;
    color: #999;
}

.nav-selector.open .nav-selector-btn i:first-child {
    color: #ff9800;
}

.selector-arrow {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
    color: #bbb;
}

.nav-selector.open .selector-arrow {
    transform: rotate(180deg);
    color: #ff9800;
}

.selector-label {
    min-width: 24px;
    text-align: center;
}

/* Selector dropdown */
.nav-selector-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid #eee;
    padding: 6px 0;
    overflow: hidden;
}

.nav-selector.open .nav-selector-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.selector-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.selector-item:hover {
    background: #f8f8f8;
    color: #ff9800;
}

.selector-item span {
    font-size: 1rem;
}

/* Nav-menu icerisindeki mobil selector - masaustunde gizle */
.nav-menu-selectors {
    display: none !important;
}

@media (max-width: 768px) {
    /* Navbar icerisindeki selector'lari mobilde gizle */
    .nav-selectors {
        display: none;
    }

    /* Nav-menu icerisindeki mobil selector'lari goster */
    .nav-menu-selectors {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 20px 8px 10px !important;
        border-bottom: none !important;
        justify-content: flex-start;
    }

    .nav-menu-selectors .nav-selector-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .nav-menu-selectors .nav-selector-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
    }
}

/* Header buton stili - Login / Register */
.btn-login-register {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff9800, #ff6f00) !important;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.btn-login-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
    background: linear-gradient(135deg, #ff6f00, #e65100) !important;
    color: #fff !important;
}

.btn-login-register i,
.btn-login-register span {
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.btn-login-register i {
    font-size: 0.9rem;
}

/* =========================================
   Header Kullanici Profil Alani
   ========================================= */

.user-profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 12px;
    background: #ececec;
    transition: background 0.2s ease;
}

.user-avatar-header {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #ff9800;
}

.user-avatar-header .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-avatar-header i {
    color: #fff;
    font-size: 1.1rem;
}

.user-info-header {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.user-greeting {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.user-subtitle-header {
    font-size: 0.78rem;
    color: #888;
    white-space: nowrap;
}

/* Dropdown ok ikonu */
.user-dropdown-arrow {
    font-size: 0.7rem;
    color: #999;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.user-profile-header:hover .user-dropdown-arrow,
.user-profile-header.dropdown-open .user-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
    border: 1px solid #eee;
    padding: 6px 0;
}

.user-profile-header:hover .user-dropdown,
.user-profile-header.dropdown-open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #555;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: #f8f8f8;
    color: #ff9800;
}

.user-dropdown-item i {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    color: #999;
    transition: color 0.2s ease;
}

.user-dropdown-item:hover i {
    color: #ff9800;
}

.fav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: auto;
    background: #ff9800;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1;
}

/* Admin Panel secenegi */
.dropdown-admin {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.dropdown-admin i {
    color: var(--primary-color) !important;
}

.dropdown-admin:hover {
    background: #e0f7fa !important;
    color: var(--primary-color) !important;
}

/* Partnership secenegi */
.dropdown-partnership {
    background: linear-gradient(135deg, #ff9800, #ff6f00) !important;
    color: #fff !important;
    margin: 0 8px;
    border-radius: 8px !important;
}

.dropdown-partnership i {
    color: #fff !important;
}

.dropdown-partnership:hover {
    background: linear-gradient(135deg, #ff6f00, #e65100) !important;
    color: #fff !important;
}

/* Dropdown ayirici cizgi */
.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 0;
}

/* Logout secenegi */
.dropdown-logout:hover {
    background: #fff5f5;
    color: #e74c3c;
}

.dropdown-logout:hover i {
    color: #e74c3c;
}

/* Forgotten password linki */
.auth-forgot-link {
    font-size: 0.88rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: auto;
}

.auth-forgot-link:hover {
    color: #ff9800;
    text-decoration: underline;
}

/* =========================================
   Reset Password Sayfasi
   ========================================= */

.reset-password-section {
    background: #f0f2f5;
}

.reset-card {
    max-width: 1366px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

.reset-card h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.reset-subtitle {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 28px;
}

.reset-card .auth-form-group {
    text-align: left;
}

.reset-card .auth-btn-reset {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: #fff;
}

.reset-card .auth-btn-reset:hover {
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
}

.reset-register-link {
    margin-top: 28px;
    font-size: 0.88rem;
    color: #888;
}

.reset-register-link a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}

.reset-register-link a:hover {
    text-decoration: underline;
}

/* Radio buton grubu */
.auth-radio-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.auth-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.92rem;
    color: #444;
    user-select: none;
}

.auth-radio input[type="radio"] {
    display: none;
}

.radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}

.auth-radio input[type="radio"]:checked ~ .radio-dot {
    border-color: #ff9800;
}

.radio-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff9800;
    transition: transform 0.2s ease;
}

.auth-radio input[type="radio"]:checked ~ .radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Privacy policy checkbox */
.auth-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.auth-privacy input[type="checkbox"] {
    accent-color: #ff9800;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.privacy-link {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Responsive - Login/Register */
@media (max-width: 768px) {
    .auth-section {
        padding: 80px 12px 20px;
        min-height: auto;
    }

    .auth-wrapper {
        flex-direction: column;
        min-width: unset;
        max-width: 100%;
        border-radius: 12px;
    }

    .auth-divider-vertical {
        width: 100%;
        height: 1px;
        margin: 0;
        background: #eee;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .auth-card h2 {
        font-size: 1.35rem;
    }

    .auth-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .social-buttons {
        gap: 6px;
    }

    .social-btn {
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .auth-form-group input {
        padding: 11px 12px;
        font-size: 0.88rem;
    }

    .auth-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    .auth-options {
        flex-wrap: wrap;
        gap: 8px;
    }

    .auth-forgot-link {
        font-size: 0.82rem;
    }

    .auth-radio-group {
        gap: 16px;
    }

    .auth-radio span:last-child {
        font-size: 0.85rem;
    }

    .auth-privacy {
        font-size: 0.82rem;
    }

    .auth-divider {
        margin: 14px 0;
    }

    /* Reset password mobil */
    .reset-card {
        padding: 32px 20px;
    }

    .reset-card h2 {
        font-size: 1.35rem;
    }

    .reset-subtitle {
        font-size: 0.85rem;
    }
}

/* =========================================
   WhatsApp Support Widget
   ========================================= */

.wa-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Ana buton */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-family: inherit;
}

.wa-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-btn i {
    font-size: 1.3rem;
}

/* Profil secim paneli */
.wa-panel {
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #eee;
}

.wa-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Panel header */
.wa-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #25D366;
    color: #fff;
}

.wa-panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.wa-panel-title i {
    font-size: 1.2rem;
}

.wa-panel-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s ease;
}

.wa-panel-close:hover {
    color: #fff;
}

/* Panel aciklama */
.wa-panel-desc {
    padding: 14px 20px 8px;
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* Agent listesi */
.wa-agents {
    padding: 8px 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-agent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid #f0f0f0;
}

.wa-agent:hover {
    background: #f0faf4;
    border-color: #25D366;
}

.wa-agent-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #25D366;
}

.wa-agent-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.wa-agent-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
}

.wa-agent-status {
    font-size: 0.78rem;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-agent-status i {
    font-size: 0.45rem;
}

.wa-agent-icon {
    font-size: 1.5rem;
    color: #25D366;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.wa-agent:hover .wa-agent-icon {
    transform: scale(1.15);
}

/* Responsive - WhatsApp Widget */
@media (max-width: 480px) {
    .wa-widget {
        bottom: 16px;
        right: 16px;
    }

    .wa-btn span {
        display: none;
    }

    .wa-btn {
        padding: 14px;
        border-radius: 50%;
    }

    .wa-btn i {
        font-size: 1.5rem;
    }

    .wa-panel {
        width: 290px;
        right: 0;
    }
}

/* ==================== HOMEPAGE TOUR CATEGORIES ==================== */

.hp-cat-section {
    padding: 4rem 0;
}

.hp-cat-light {
    background: #f8f9fb;
}

.hp-cat-white {
    background: #fff;
}

.hp-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.hp-cat-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hp-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hp-cat-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a3a4a;
    margin: 0;
    line-height: 1.2;
}

.hp-cat-count {
    font-size: 0.88rem;
    color: #888;
    margin: 2px 0 0;
}

.hp-cat-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #ff9800;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #ffe0b2;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.hp-cat-viewall:hover {
    background: #ff9800;
    color: #fff;
    border-color: #ff9800;
}

/* Scroll Container */
.hp-tours-scroll {
    position: relative;
}

.hp-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s;
}

.hp-scroll-btn:hover {
    background: #ff9800;
    color: #fff;
    box-shadow: 0 4px 18px rgba(255,152,0,0.35);
}

.hp-scroll-left {
    left: -18px;
}

.hp-scroll-right {
    right: -18px;
}

.hp-tours-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 16px;
}

.hp-tours-track::-webkit-scrollbar {
    display: none;
}

/* Tour Card */
.hp-tour-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.hp-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}

.hp-tour-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.hp-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hp-tour-region {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 2px solid #ff9800;
}

.hp-tour-region i {
    color: #4dd0c8;
    font-size: 0.7rem;
}

.hp-tour-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-tour-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.hp-tour-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #ff9800;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 3px 10px;
    background: #fff8e1;
    border-radius: 20px;
    width: fit-content;
}

.hp-tour-duration i {
    font-size: 0.7rem;
}

.hp-tour-price {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #f0f2f5;
    padding-top: 10px;
}

.hp-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.hp-price-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.hp-price-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #00b8d4;
}

/* Empty state */
.hp-empty-tours {
    text-align: center;
    padding: 60px 20px;
}

.hp-empty-tours i {
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 16px;
    opacity: 0.5;
}

.hp-empty-tours h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}

.hp-empty-tours p {
    color: #777;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hp-scroll-left { left: 4px; }
    .hp-scroll-right { right: 4px; }
    .hp-tour-card { flex: 0 0 260px; }
}

@media (max-width: 768px) {
    .hp-cat-section { padding: 3rem 0; }

    .hp-cat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hp-cat-title { font-size: 1.3rem; }

    .hp-scroll-btn { display: none; }

    .hp-tour-card { flex: 0 0 240px; }
    .hp-tour-img { height: 160px; }
}

@media (max-width: 480px) {
    .hp-cat-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .hp-cat-title { font-size: 1.15rem; }
    .hp-tour-card { flex: 0 0 220px; }
    .hp-tour-img { height: 140px; }
}

