/* Modern Adventure Tours CSS - Enhanced Visual Design */

/* CSS Custom Properties for Easy Theming */
:root {
    /* Primary Color Palette */
    --primary-color: #ff6b35;
    --primary-dark: #e55027;
    --primary-light: #ff8555;
    
    /* Secondary Colors */
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --accent-color: #f39c12;
    --accent-dark: #e67e22;
    
    /* Adventure Theme Colors */
    --nature-green: #27ae60;
    --sky-blue: #3498db;
    --sunset-orange: #ff6b35;
    --earth-brown: #8b4513;
    --water-blue: #1abc9c;
    
    /* Neutral Colors */
    --text-dark: #2c3e50;
    --text-medium: #34495e;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-nature: linear-gradient(135deg, var(--nature-green) 0%, var(--water-blue) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--sunset-orange) 0%, var(--accent-color) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(46, 204, 113, 0.4) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 15px rgba(255, 107, 53, 0.4);
    --shadow-button-hover: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Modern Header Design */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Brand Section */
.nav-brand a {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    animation: float 3s ease-in-out infinite;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Desktop logo */
.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.brand-text {
    min-width: 200px;
    max-width: 250px;
}

.brand-text h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-main {
    font-size: 1em;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-size: 1em;
    font-weight: 800;
    margin-top: -2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

/* Navigation Center */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 90px;
    justify-content: center;
}

.nav-icon {
    font-size: 1.1rem;
}

.nav-text {
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Language Selector */
.nav-right {
    display: flex;
    align-items: center;
}

/* Desktop/Mobile visibility */
.mobile-lang-selector {
    display: none;
}

.desktop-lang-selector {
    display: flex;
}

.language-selector {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-white);
    color: var(--text-dark);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: space-between;
}

.lang-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.current-flag {
    font-size: 1.2rem;
}

.current-lang {
    font-weight: 700;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-toggle.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: var(--spacing-xs);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--gradient-primary);
    color: white;
}

.lang-option.active {
    background: var(--background-light);
    font-weight: 700;
}

.flag {
    font-size: 1.2rem;
}

.lang-name {
    flex: 1;
}

.lang-code {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-button);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--background-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.btn-nature {
    background: var(--gradient-nature);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-nature:hover {
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.6);
}

/* Spectacular Hero Section */
.hero {
    background: 
        var(--gradient-hero),
        url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.hero-highlight {
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    margin-bottom: var(--spacing-xl);
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.btn-icon {
    font-size: 1.1rem;
}

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

.btn-compact {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
    min-width: auto !important;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-xs);
}

/* Animated Sections with Colorful Themes */
.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    transition: all 0.6s ease;
}

/* Featured Tours Section - Orange Theme */
.section-tours {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        rgba(255, 140, 85, 0.08) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-top: 4px solid var(--primary-color);
}

.section-tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,107,53,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,107,53,0.08)"/><circle cx="60" cy="70" r="1" fill="rgba(255,107,53,0.06)"/></svg>');
    pointer-events: none;
}

/* Why Choose Us Section - Green Theme */
.section-features {
    background: linear-gradient(135deg, 
        rgba(46, 204, 113, 0.06) 0%, 
        rgba(26, 188, 156, 0.08) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-top: 4px solid var(--nature-green);
}

.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="15,25 25,15 35,25 25,35" fill="rgba(46,204,113,0.08)"/><polygon points="75,65 85,55 95,65 85,75" fill="rgba(46,204,113,0.06)"/></svg>');
    pointer-events: none;
}

/* Gallery Section - Blue Theme */
.section-gallery {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.05) 0%, 
        rgba(155, 89, 182, 0.06) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-top: 4px solid var(--sky-blue);
}

.section-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="8" height="8" fill="rgba(52,152,219,0.08)" transform="rotate(45 24 24)"/><rect x="70" y="60" width="6" height="6" fill="rgba(52,152,219,0.06)" transform="rotate(45 73 63)"/></svg>');
    pointer-events: none;
}

/* Social Gallery Section - Purple Theme */
.section-social {
    background: linear-gradient(135deg, 
        rgba(155, 89, 182, 0.05) 0%, 
        rgba(142, 68, 173, 0.07) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border-top: 4px solid #9b59b6;
}

.section-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30,30 Q40,20 50,30 Q60,20 70,30 Q60,40 50,30 Q40,40 30,30" fill="rgba(155,89,182,0.08)"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

.section-title h2 {
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Section-specific title colors */
.section-tours .section-title h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tours .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-features .section-title h2 {
    background: linear-gradient(135deg, var(--nature-green), var(--water-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-features .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--nature-green);
    border-radius: 2px;
}

.section-gallery .section-title h2 {
    background: linear-gradient(135deg, var(--sky-blue), #3742fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-gallery .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--sky-blue);
    border-radius: 2px;
}

.section-social .section-title h2 {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-social .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #9b59b6;
    border-radius: 2px;
}

/* Enhanced Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.tour-card {
    background: var(--background-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: var(--radius-xl);
}

.tour-card:hover::before {
    opacity: 0.05;
}

.tour-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-card-hover);
}

.tour-card-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-nature);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

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

.tour-card-content {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.tour-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 1.4rem;
}

.tour-info {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-light);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.tour-info-item::before {
    font-size: 1.1rem;
}

/* Enhanced Tour Cards */
.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.tour-header h3 {
    margin: 0;
    font-size: 1.3rem;
    flex: 1;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.stars {
    font-size: 0.9rem;
}

.rating-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.tour-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.tour-info {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--background-light);
    border-radius: var(--radius-sm);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.info-icon {
    font-size: 1rem;
}

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

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

/* Enhanced Tour Info Styling */
.tour-info-details {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: var(--background-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.tour-info-item:last-child {
    margin-bottom: 0;
}

.tour-info-item .info-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.tour-info-item .info-text {
    font-weight: 500;
    color: var(--text-medium);
}

/* Enhanced Price Styling */
.price-amount {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb-navigation {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xs);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.breadcrumb-item:not(:last-child)::after {
    content: '→';
    margin-left: var(--spacing-xs);
    color: var(--text-light);
    font-weight: 300;
}

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

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

.breadcrumb-item.active span {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-navigation {
        margin: var(--spacing-sm) 0;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Enhanced Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 16/9;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.gallery-item:hover::before {
    opacity: 0.8;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotateZ(2deg);
    box-shadow: var(--shadow-card-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    z-index: 4;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    text-align: center;
    width: 100%;
}

.gallery-tour-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.gallery-action {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(255, 107, 53, 0.9);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-xs);
}

/* Gallery Header */
.gallery-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="90" cy="10" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="80" r="1.5" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
}

.gallery-header h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Tour Detail Gallery Carousel */
.tour-gallery-carousel {
    margin-top: 0;
}

.gallery-main-display {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--spacing-lg);
}

.gallery-main-image {
    position: relative;
    aspect-ratio: 16/9;
    background: #f8f9fa;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    display: none;
}

.gallery-nav button {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.gallery-counter {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: flex;
    gap: var(--spacing-xs);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--spacing-xs) 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    max-width: 100%;
    /* Prevent page expansion */
    width: 100%;
    box-sizing: border-box;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 70px; /* Reduced from 80px */
    height: 50px; /* Reduced from 60px */
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Reduced from 3px */
    opacity: 0.7;
}

.gallery-thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Grid - Eşit Yükseklik */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch; /* Eşit yükseklik için */
}

.services-included,
.services-excluded {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-included > div,
.services-excluded > div {
    flex: 1; /* İçerik alanını eşit yap */
    display: flex;
    flex-direction: column;
}

.services-content {
    flex: 1; /* İçeriği eşit dağıt */
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .gallery-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-thumbnails {
        gap: var(--spacing-xs);
    }
    
    .gallery-thumbnail {
        width: 55px; /* Further reduced for mobile */
        height: 40px; /* Further reduced for mobile */
    }
    
    .gallery-main-image {
        aspect-ratio: 4/3;
    }
    
    /* Tour detail grid becomes single column on mobile */
    .tour-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .reservation-form {
        position: static !important;
        margin-top: 2rem !important;
        order: 2;
    }
}

/* Tour Info Cards */
.tour-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.info-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.duration-card::before {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.difficulty-card::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.price-card::before {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.info-icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .tour-info-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .info-card {
        padding: var(--spacing-md);
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Enhanced Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.gallery-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Enhanced Forms */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--background-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Reservation Form */
.reservation-form {
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.reservation-form h3 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reservation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

/* Date Picker Styles */
.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper .date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.1rem;
    color: var(--text-light);
}

.date-picker {
    cursor: pointer;
    background: var(--background-white);
}

.date-picker:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Person Counter Styles */
.person-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    transition: border-color 0.3s ease;
}

.person-counter:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.counter-input {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    width: 60px;
    padding: 8px 4px;
    color: var(--text-dark);
}

.counter-input:focus {
    outline: none;
    background: var(--background-light);
    border-radius: var(--radius-sm);
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap;
}

/* Alert Messages */
.alert {
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-radius: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-top: 4px solid #28a745;
    border-bottom: 4px solid #28a745;
    color: #155724;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-top: 4px solid #dc3545;
    border-bottom: 4px solid #dc3545;
    color: #721c24;
}

/* Clean Footer */
.footer {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: var(--spacing-xs) 0;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-contact-info {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-contact-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.social-media-footer {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    color: var(--text-medium);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon i {
    display: block;
}

.social-icon span {
    display: none;
}

/* If FontAwesome fails to load, show emoji fallback */
.social-icon i:after {
    content: '';
}

.social-icon:not(:has(i[class*="fa-"])) span,
.social-icon i[class*="fa-"]:not([class]):empty + span {
    display: block;
}

.social-icon:not(:has(i[class*="fa-"])) i,
.social-icon i[class*="fa-"]:not([class]):empty {
    display: none;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand-text h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.footer-brand-main {
    font-size: 1em;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-brand-sub {
    font-size: 1em;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: -2px;
}

/* Footer Links Sections */
.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.footer-links-column h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }

    /* Mobile Header */
    .navbar .container {
        justify-content: space-between;
    }

    .nav-center {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 80px);
        justify-content: flex-start;
        padding: var(--spacing-xl) 0 calc(var(--spacing-xxl) + env(safe-area-inset-bottom, 20px));
        transition: left 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-links {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
        padding: 0 var(--spacing-lg);
    }

    .nav-link {
        min-width: 100%;
        padding: var(--spacing-md);
        font-size: 1.1rem;
        border: 2px solid var(--border-color);
        border-radius: var(--radius-lg);
        background: var(--background-white);
    }

    .nav-right {
        position: static;
        order: 3;
        margin-top: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
        width: 100%;
        display: none;
        padding: 0 var(--spacing-lg) var(--spacing-lg);
    }

    .nav-right.active {
        display: flex;
        justify-content: center;
    }
    
    /* Mobile/Desktop visibility toggle */
    .desktop-lang-selector {
        display: none !important;
    }
    
    .mobile-lang-selector {
        display: flex !important;
    }
    
    /* Mobile language selector styling */
    .mobile-lang-selector .language-selector {
        width: 100%;
        max-width: 200px;
    }
    
    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-md);
        font-size: 1.1rem;
        border: 2px solid var(--border-color);
        border-radius: var(--radius-lg);
        background: var(--background-white);
    }
    
    .lang-dropdown {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        border: none;
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-xl);
        width: 100%;
    }
    
    .lang-dropdown.active {
        display: block;
    }
    
    .lang-option {
        margin-bottom: var(--spacing-xs);
        padding: var(--spacing-sm);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        background: var(--background-white);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1002;
    }

    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--gradient-primary);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Brand adjustments */
    .brand-text {
        min-width: 180px;
        max-width: 220px;
    }
    
    .brand-text h1 {
        font-size: 1.3rem;
    }
    
    .brand-main {
        font-size: 1em;
    }
    
    .brand-sub {
        font-size: 1em;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }
    
    /* Mobile logo switch */
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }

    /* Language dropdown mobile */
    .lang-dropdown {
        right: -10px;
        min-width: 160px;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .footer-contact-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .reservation-form {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

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

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

    .gallery-controls {
        padding: 0 var(--spacing-sm);
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .gallery-controls,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    .section {
        padding: 20pt 0;
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --background-white: #fff;
        --text-dark: #000;
        --border-color: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Social Gallery Grid Styles */
.social-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.social-photo-item {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.social-photo-item:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.social-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

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

.social-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.social-photo-item:hover .social-photo-image img {
    transform: scale(1.05);
}

.social-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-md);
    color: white;
}

.social-photo-item:hover .social-photo-overlay {
    opacity: 1;
}

.social-photo-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: auto;
}

.social-photo-info span {
    font-size: 0.85rem;
    font-weight: 500;
}

.social-photo-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.social-photo-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    min-width: auto;
}

.social-photo-caption {
    padding: var(--spacing-md);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
    border-top: 1px solid var(--border-color);
    background: var(--background-light);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.caption-icon {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.caption-text {
    flex: 1;
    font-style: italic;
    color: var(--text-dark);
}

/* Social Gallery Responsive */
@media (max-width: 768px) {
    .social-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
    
    .social-photo-overlay {
        padding: var(--spacing-sm);
    }
    
    .social-photo-info span {
        font-size: 0.8rem;
    }
    
    .social-photo-caption {
        padding: var(--spacing-sm);
        font-size: 0.85rem;
        gap: 0.25rem;
    }
    
    .caption-icon {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

/* ===== FAQ Section Styles ===== */
.section-faq {
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    padding-right: var(--spacing-md);
    line-height: 1.4;
}

.faq-toggle {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    background: var(--background-light);
}

.faq-answer p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: var(--spacing-sm);
    }
    
    .faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ================================
   WhatsApp Float Button
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-float:hover {
    background-color: #1ebe5b;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float:focus {
    outline: none;
    color: white;
    text-decoration: none;
}

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

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    z-index: 1001;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float::before {
        right: 65px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
    
    .whatsapp-float::before {
        display: none; /* Hide tooltip on very small screens */
    }
}

/* Flatpickr navigation oklarını gizle */
.flatpickr-prev-month,
.flatpickr-next-month {
    display: none !important;
}

.flatpickr-current-month {
    text-align: center !important;
    justify-content: center !important;
}

.flatpickr-months .flatpickr-month {
    justify-content: center !important;
}

