/* Professional Travel Portfolio - Minimalist & Photo-Centric */

:root {
    /* Sophisticated red palette */
    --primary: #8B1E3F;
    --primary-dark: #5c1429;
    --accent: #A73D5F;
    --accent-light: #C4546A;
    
    /* Text colors */
    --text-primary: #2a2a2a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-white: #ffffff;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f7f7f7;
    --bg-overlay: rgba(139, 30, 63, 0.75);
    
    /* Borders & Shadows */
    --border: #e5e5e5;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
}

h2 {
    font-size: 2.25rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Navigation - Minimal & Elegant */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 1.5rem 0;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Messages */
.messages-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.message {
    background: white;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.message-text {
    flex: 1;
}

.message-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-close:hover {
    opacity: 1;
}

.message-success {
    border-left-color: #10b981;
    color: #065f46;
    background: #d1fae5;
}

.message-error {
    border-left-color: #ef4444;
    color: #991b1b;
    background: #fee2e2;
}

.message-info {
    border-left-color: #3b82f6;
    color: #1e40af;
    background: #dbeafe;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .messages-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Navigation Menu */

.nav-brand a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .nav-brand a {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .nav-brand a {
        font-size: 0.8125rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    position: relative;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.75rem;
    }
    
    .nav-menu a {
        font-size: 0.875rem;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

/* Burger Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
    position: relative;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9998;
        overflow-y: auto;
    }

    .nav-right.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-menu a {
        font-size: 1.25rem;
        font-weight: 500;
    }
    
    .language-switcher {
        margin-top: 1rem;
    }
}

/* User profile in navigation */
.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.nav-username {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.8125rem;
    }
    
    .nav-right {
        gap: 0.85rem;
    }
    
    .language-switcher .lang-name {
        display: none;
    }
    
    .language-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 0.85rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .nav-brand a {
        font-size: 0.85rem;
    }
    
    .language-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.language-code {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.language-form {
    padding: 0.5rem;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.language-option:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.language-option.active {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 500;
}

.language-option .flag {
    font-size: 1.25rem;
}

.language-option .lang-name {
    flex: 1;
}

@media (max-width: 768px) {
    .language-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 160px;
    }
    
    .language-dropdown.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero - Full-Screen, Photo-Centric */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    color: var(--text-white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero {
        height: 75vh;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Buttons - Minimal & Sophisticated */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

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

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

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

.btn-book-tour {
    width: 100%;
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.btn-book-tour:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* About Section - Elegant & Professional */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    filter: grayscale(10%);
}

.about-text h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.guide-title {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.experience-badge {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bio {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Tour Cards - Photo-First, Minimal Design */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
}

.tour-card {
    background: var(--bg-white);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

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

.tour-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #e0e0e0;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0%);
}

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

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.tour-content {
    padding: 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 400;
}

.tour-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
    flex: 1;
}

.tour-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.detail-item {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.detail-item strong {
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Features - Minimal Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.why-choose {
    background: var(--bg-white);
}

.featured-tours {
    background: var(--bg-light);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-white);
    padding: 1rem 0 6rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* User profile header in forms */
.user-profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.user-profile-header .profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.user-profile-header .profile-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-profile-header .profile-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.6;
}

.btn-full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Loading button state */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

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

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Tour Detail Page */
.tour-header {
    background: var(--bg-white);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.back-link:hover {
    color: var(--text-primary);
}

.tour-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.tour-meta {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-item strong {
    color: var(--text-primary);
    font-weight: 500;
    margin-right: 0.25rem;
}

.tour-detail-content {
    padding: 5rem 0;
    background: var(--bg-white);
}

.tour-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
}

.tour-main h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.tour-main h2:first-child {
    margin-top: 0;
}

.tour-main p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.destinations-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    position: relative;
}

.destination-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #8B1E3F;
}

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

.destination-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B1E3F 0%, #5c1429 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139, 30, 63, 0.3);
    z-index: 1;
}

.destination-content {
    flex: 1;
}

.destination-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.destination-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .destinations-list::before {
        left: 15px;
    }
    
    .destination-item {
        gap: 1rem;
        padding: 1rem;
    }
    
    .destination-item:hover {
        transform: translateX(4px);
    }
    
    .destination-badge {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .destination-item h3 {
        font-size: 1.1rem;
    }
    
    .destination-item p {
        font-size: 0.875rem;
    }
}

.tour-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.price-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.price-card h3 {
    color: var(--text-primary);
}

.price {
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.tour-info-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.tour-info-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.tour-info-list li:last-child {
    border-bottom: none;
}

.tour-info-list strong {
    color: var(--text-primary);
    font-weight: 500;
}

.or-contact {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.or-contact .contact-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.or-contact .contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

#map {
    height: 500px;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

/* Leaflet Map Z-Index Controls */
.leaflet-pane {
    z-index: auto !important;
}

.leaflet-map-pane {
    z-index: 1 !important;
}

.leaflet-control-container {
    z-index: 800 !important;
}

.leaflet-control {
    z-index: 800 !important;
}

.leaflet-popup-pane {
    z-index: 700 !important;
}

.leaflet-tooltip-pane {
    z-index: 650 !important;
}

.leaflet-shadow-pane {
    z-index: 500 !important;
}

.leaflet-marker-pane {
    z-index: 600 !important;
}

.leaflet-tile-pane {
    z-index: 200 !important;
}

.leaflet-overlay-pane {
    z-index: 400 !important;
}

/* Tour Image Carousel */
.tour-carousel-container {
    margin-bottom: 3rem;
}

.tour-carousel {
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-main {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 3rem 2rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.carousel-btn span {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
}

.carousel-prev {
    left: 1.5rem;
}

.carousel-next {
    right: 1.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    border-color: white;
}

.carousel-indicator:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.5);
}

.carousel-thumbnails {
    display: flex;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    overflow-x: auto;
    padding: 1rem;
    gap: 1rem;
    scroll-behavior: smooth;
}

.carousel-thumbnail {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.carousel-thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.carousel-thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.02);
}

.carousel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.carousel-thumbnail:hover img {
    transform: scale(1.1);
}

/* Mobile Responsive Carousel */
@media (max-width: 768px) {
    .carousel-main {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn span {
        font-size: 1.25rem;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    .carousel-caption {
        padding: 2rem 1rem 1rem;
        font-size: 0.875rem;
    }
    
    .carousel-thumbnails {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .carousel-thumbnail {
        flex: 0 0 80px;
        height: 60px;
    }
}

@media (max-width: 968px) {
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tour-sidebar {
        position: static;
    }
    
    .tour-header h1 {
        font-size: 2rem;
    }
}

/* Tour List Page */
.tours-header {
    background: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.tours-header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.tours-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.tours-content {
    padding: 5rem 0;
    background: var(--bg-light);
}

.no-tours {
    text-align: center;
    color: var(--text-muted);
    padding: 4rem 0;
    font-size: 1rem;
}

/* Footer - Minimal & Clean */
.footer {
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

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

.footer-section h3 {
    color: var(--accent-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    font-size: 0.9375rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-light);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    opacity: 0.75;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Ratings Page Styles */
.page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-rating {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.big-score {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #fbbf24;
}

.hero-rating .stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-rating .stars .star {
    font-size: 1.5rem;
    color: #fbbf24;
}

.review-count {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.reviews-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.form-card {
    position: sticky;
    top: 100px;
}

.form-card h3 {
    margin-bottom: 10px;
}

.star-rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-select input {
    display: none;
}

.star-rating-select label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-select input:checked ~ label,
.star-rating-select label:hover,
.star-rating-select label:hover ~ label {
    color: #fbbf24;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-country {
    font-size: 0.9rem;
    color: #666;
}

.review-date {
    margin-left: auto;
    font-size: 0.85rem;
    color: #999;
}

.review-rating {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-body p {
    color: #4a4a4a;
    font-style: italic;
}

.login-prompt {
    text-align: center;
    padding: 20px 0;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        position: static;
        margin-bottom: 40px;
    }
}

/* Winter Tour Section */
.winter-tour-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.winter-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.winter-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.winter-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.winter-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.winter-features {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.winter-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.winter-features li::before {
    content: "❄";
    color: var(--accent);
}

.winter-media-grid {
    display: grid;
    gap: 2rem;
}

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

.winter-media-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.winter-media-wrapper {
    position: relative;
}

.winter-media-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.winter-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.winter-card-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.winter-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.winter-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
}

.winter-videos .winter-media-card {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 768px) {
    .winter-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .winter-videos {
        grid-template-columns: 1fr;
    }
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.2), transparent);
    margin: 0;
    border: none;
    width: 100%;
}

/* Custom Video Player */
.custom-video-player {
    position: relative;
    width: 100%;
    border-radius: 12px 12px 0 0; /* Rounded top corners only since it's in a card */
    overflow: hidden;
    box-shadow: none; /* Shadow is on the card now */
    background: #000;
    aspect-ratio: 3/4;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fullscreen video styles - show in original size */
.custom-video-player:fullscreen video {
    object-fit: contain;
}

.custom-video-player:-webkit-full-screen video {
    object-fit: contain;
}

.custom-video-player:-moz-full-screen video {
    object-fit: contain;
}

.custom-video-player:-ms-fullscreen video {
    object-fit: contain;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-player:hover .video-controls {
    opacity: 1;
}

.play-pause-btn, .mute-btn, .fullscreen-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.play-pause-btn:hover, .mute-btn:hover, .fullscreen-btn:hover {
    color: var(--accent-light);
}

.progress-bar-container {
    flex-grow: 1;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
    width: 0;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.progress-bar-container:hover .progress-bar::after {
    opacity: 1;
}

.time-display {
    color: white;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.3s;
    pointer-events: none;
}

.custom-video-player.playing .video-overlay {
    opacity: 0;
}

.big-play-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s, background-color 0.2s;
    padding-left: 5px; /* Optical adjustment for play icon */
}

.big-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
}


