/* ==========================================
   UltraRide - ULTRA PREMIUM DARK EDITION
   Radical Modern Cycling Experience
   ========================================== */

/* CSS Variables - Dark Premium Palette */
:root {
    --deep-black: #0a0a0a;
    --dark-surface: #1a1a1a;
    --darker-surface: #141414;
    --gold-accent: #ffffff;
    --electric-blue: #00d4ff;
    --pure-white: #ffffff;
    --soft-white: #e0e0e0;
    --mid-gray: #666666;
    --subtle-border: rgba(255, 255, 255, 0.1);
    --smooth-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --quick-transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--deep-black);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Ultra Premium Navigation - Netflix Style */
.ultra-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 9999;
    transition: background 0.5s ease, height 0.3s ease;
}

.ultra-nav.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ultra-nav-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.ultra-nav-menu {
    margin: 0 auto;
}

.ultra-logo {
    height: 200px;
    margin-left: -40px;
    transition: var(--quick-transition);
    filter: brightness(2.5) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
    border-radius: 4px;
}

.ultra-nav.scrolled .ultra-logo {
    height: 75px;
    margin-left: 5%;
    margin-top: 5%;
}

.ultra-nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.ultra-nav-menu a {
    text-decoration: none;
    color: var(--soft-white);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: var(--quick-transition);
}

.ultra-nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--electric-blue));
    transition: width 0.4s ease;
}

.ultra-nav-menu a:hover {
    color: var(--gold-accent);
}

.ultra-nav-menu a:hover::before {
    width: 100%;
}

.ultra-nav-cta {
    padding: 12px 30px !important;
    background: linear-gradient(135deg, var(--gold-accent), #ffffff);
    color: var(--deep-black) !important;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: var(--quick-transition);
}

/* Hamburger - hidden on desktop */
.hamburger-btn {
    display: none;
}

.ultra-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.ultra-nav-cta::before {
    display: none;
}

/* Theme Dropdown */
.theme-dropdown {
    position: relative;
    margin-left: 30px;
}

.theme-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--soft-white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-current-icon {
    font-size: 16px;
    line-height: 1;
}

.theme-current-text {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.theme-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.theme-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.theme-dropdown.active .theme-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-option:last-child {
    border-bottom: none;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-option.active {
    background: rgba(255, 255, 255, 0.15);
}

.theme-option-icon {
    font-size: 18px;
    line-height: 1;
}

.theme-option-text {
    font-size: 14px;
    color: var(--soft-white);
    font-weight: 400;
}

/* Light Mode Styles - Hero section excluded */
body.light-mode {
    background: #f5f5f5;
    color: #1a1a1a;
}

body.light-mode .ultra-stats {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

body.light-mode .ultra-stat-item {
    border-right: 1px solid #e0e0e0;
}

body.light-mode .ultra-stat-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .ultra-stat-number {
    background: linear-gradient(135deg, #1a1a1a, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .ultra-stat-label {
    color: #666666;
}

body.light-mode .ultra-split-content {
    background: #ffffff;
}

body.light-mode .ultra-split-label {
    color: #1a1a1a;
}

body.light-mode .ultra-split-title {
    color: #0a0a0a;
}

body.light-mode .ultra-split-text {
    color: #333333;
}

body.light-mode .ultra-split-cta {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

body.light-mode .ultra-split-cta:hover {
    background: #1a1a1a;
    color: #ffffff;
}

body.light-mode .ultra-gallery {
    background: #f5f5f5;
}

body.light-mode .ultra-gallery-title {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .ultra-gallery-subtitle {
    color: #666666;
}

body.light-mode .ultra-gallery-item-title {
    color: #ffffff;
}

body.light-mode .ultra-gallery-item-desc {
    color: #e0e0e0;
}

body.light-mode .ultra-tours {
    background: #ffffff;
}

body.light-mode .ultra-section-label {
    color: #1a1a1a;
}

body.light-mode .ultra-section-title {
    color: #0a0a0a;
}

body.light-mode .ultra-section-subtitle {
    color: #666666;
}

body.light-mode .ultra-tour-card {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

body.light-mode .ultra-tour-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.light-mode .ultra-tour-title {
    color: #0a0a0a;
}

body.light-mode .ultra-tour-desc {
    color: #333333;
}

body.light-mode .ultra-tour-meta {
    border-top: 1px solid #e0e0e0;
}

body.light-mode .ultra-tour-meta-label {
    color: #666666;
}

body.light-mode .ultra-tour-meta-value {
    color: #1a1a1a;
}

body.light-mode .ultra-tour-cta {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
}

body.light-mode .ultra-tour-cta:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.light-mode .ultra-testimonials {
    background: #f5f5f5;
}

body.light-mode .ultra-testimonial-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

body.light-mode .ultra-testimonial-card:hover {
    border-color: #1a1a1a;
}

body.light-mode .ultra-testimonial-quote {
    color: #333333;
}

body.light-mode .ultra-testimonial-avatar {
    background: linear-gradient(135deg, #1a1a1a, #00d4ff);
    color: #ffffff;
}

body.light-mode .ultra-testimonial-name {
    color: #0a0a0a;
}

body.light-mode .ultra-testimonial-tour {
    color: #666666;
}

body.light-mode .ultra-footer {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    border-image: linear-gradient(90deg, transparent, #1a1a1a, transparent) 1;
}

body.light-mode .ultra-footer::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

body.light-mode .ultra-footer-desc {
    color: #333333;
}

body.light-mode .ultra-footer-section h4 {
    color: #1a1a1a;
}

body.light-mode .ultra-footer-section h4::after {
    background: linear-gradient(90deg, #1a1a1a, transparent);
}

body.light-mode .ultra-footer-links a {
    color: #333333;
}

body.light-mode .ultra-footer-links a::before {
    color: #1a1a1a;
}

body.light-mode .ultra-footer-links a:hover {
    color: #1a1a1a;
}

body.light-mode .ultra-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .ultra-footer-copy {
    color: #666666;
}

body.light-mode .ultra-social-link {
    border: 1px solid #e0e0e0;
    color: #333333;
}

body.light-mode .ultra-social-link:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #ffffff;
}

body.light-mode .ultra-contact {
    background: #ffffff;
}

body.light-mode .ultra-form-input,
body.light-mode .ultra-form-textarea,
body.light-mode .ultra-form-select {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
}

body.light-mode .ultra-form-input:focus,
body.light-mode .ultra-form-textarea:focus,
body.light-mode .ultra-form-select:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

body.light-mode .ultra-form-label {
    color: #1a1a1a;
}

body.light-mode .ultra-form-submit {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
}

body.light-mode .ultra-form-submit:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Full-Screen Hero Section */
.ultra-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ultra-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65);
    transform: scale(1.1);
    transition: transform 2s ease-out;
}

.ultra-hero:hover .ultra-hero-bg {
    transform: scale(1);
}

.ultra-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.ultra-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 0 40px;
    animation: fadeInUp 1.2s ease-out;
    margin-bottom: 10%;
}

.ultra-hero-logo {
    height: 185px;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: 1px;
    margin-top: 200px;
    filter: brightness(1.1) drop-shadow(0 10px 40px rgba(255, 255, 255, 0.3));
    animation: fadeInUp 1.2s ease-out;
}

.ultra-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--soft-white);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.ultra-hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold-accent), #ffffff);
    color: var(--deep-black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--quick-transition);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.ultra-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
}

/* Sayfa-Özel Hero Logo & Background Ayarları */

/* Anasayfa Hero */
.home-hero-logo {
    /* Logo boyutu ve konumlandırma */
    height: 270px;
    margin-top: 150px;
    margin-bottom: 100px;
}

.home-hero-bg {
    /* Arkaplan konumlandırma ve filtreler */
    filter: brightness(0.65);
    object-position: center;
}

/* Tours Sayfası Hero */
.tours-hero-logo {
    /* Logo boyutu ve konumlandırma */
    height: 185px;
    margin-top: 200px;
    margin-bottom: 1px;
}

.tours-hero-bg {
    /* Arkaplan konumlandırma ve filtreler */
    filter: brightness(0.65);
    object-position: center;
    margin-bottom: 3500px;
}

/* About Sayfası Hero */
.about-hero-logo {
    /* Logo boyutu ve konumlandırma */
    height: 185px;
    margin-top: 200px;
    margin-bottom: 1px;
}

.about-hero-bg {
    /* Arkaplan konumlandırma ve filtreler */
    filter: brightness(0.65);
    object-position: center;
}

/* Contact Sayfası Hero */
.contact-hero-logo {
    /* Logo boyutu ve konumlandırma */
    height: 185px;
    margin-top: 200px;
    margin-bottom: 1px;
}

.contact-hero-bg {
    /* Arkaplan konumlandırma ve filtreler */
    filter: brightness(0.65);
    object-position: center;
}

.ultra-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--soft-white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.ultra-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Immersive Stats Section */
.ultra-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--darker-surface);
    border-top: 1px solid var(--subtle-border);
    border-bottom: 1px solid var(--subtle-border);
}

.ultra-stat-item {
    padding: 80px 40px;
    text-align: center;
    border-right: 1px solid var(--subtle-border);
    transition: var(--smooth-transition);
}

.ultra-stat-item:last-child {
    border-right: none;
}

.ultra-stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ultra-stat-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-accent), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.ultra-stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-gray);
}

/* Split-Screen Feature Section */
.ultra-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.ultra-split-content {
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark-surface);
}

.ultra-split-image {
    position: relative;
    overflow: hidden;
}

.ultra-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.ultra-split-image:hover img {
    transform: scale(1.1);
}

.ultra-split-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 30px;
    font-weight: 600;
}

.ultra-split-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--pure-white);
}

.ultra-split-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--soft-white);
    margin-bottom: 40px;
}

.ultra-split-cta {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--quick-transition);
    align-self: flex-start;
}

.ultra-split-cta:hover {
    background: var(--gold-accent);
    color: var(--deep-black);
    transform: translateX(10px);
}

/* Horizontal Scroll Gallery */
.ultra-gallery {
    padding: 120px 0;
    background: var(--deep-black);
    overflow: hidden;
    position: relative;
}

.ultra-gallery-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 40px;
}

.ultra-gallery-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pure-white), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ultra-gallery-subtitle {
    font-size: 20px;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.ultra-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.8;
}

.ultra-scroll-arrow {
    display: flex;
    gap: 8px;
    animation: scrollHint 2s ease-in-out infinite;
}

.ultra-scroll-arrow span {
    font-size: 20px;
}

@keyframes scrollHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.ultra-gallery-wrapper {
    position: relative;
    max-width: 100%;
}

.ultra-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0.7;
}

.ultra-gallery:hover .ultra-gallery-nav {
    opacity: 1;
}

.ultra-gallery-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--gold-accent);
    color: var(--deep-black);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.ultra-gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.ultra-gallery-nav-left {
    left: 20px;
}

.ultra-gallery-nav-right {
    right: 20px;
}

.ultra-gallery-scroll {
    display: flex;
    gap: 30px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ultra-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.ultra-gallery-item {
    min-width: 500px;
    height: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    transition: var(--smooth-transition);
}

.ultra-gallery-item:hover {
    transform: translateY(-10px);
}

.ultra-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ultra-gallery-item:hover img {
    transform: scale(1.1);
}

.ultra-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.95));
}

.ultra-gallery-item-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pure-white);
}

.ultra-gallery-item-desc {
    font-size: 16px;
    color: var(--soft-white);
}

/* Premium Tour Cards */
.ultra-tours {
    padding: 120px 60px;
    background: var(--darker-surface);
}

.ultra-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.ultra-section-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.ultra-section-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.ultra-section-subtitle {
    font-size: 20px;
    color: var(--mid-gray);
    max-width: 700px;
    margin: 0 auto;
}

.ultra-tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.ultra-tour-card {
    background: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid var(--subtle-border);
    transition: var(--smooth-transition);
    cursor: pointer;
}

.ultra-tour-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.ultra-tour-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.ultra-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ultra-tour-card:hover .ultra-tour-image img {
    transform: scale(1.1);
}

.ultra-tour-content {
    padding: 40px;
}

.ultra-tour-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 15px;
}

.ultra-tour-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--soft-white);
    margin-bottom: 25px;
}

.ultra-tour-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--subtle-border);
}

.ultra-tour-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ultra-tour-meta-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.ultra-tour-meta-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-accent);
}

.ultra-tour-cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-accent), #ffffff);
    color: var(--deep-black);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--quick-transition);
}

.ultra-tour-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Testimonials Premium */
.ultra-testimonials {
    padding: 120px 60px;
    background: var(--deep-black);
}

.ultra-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.ultra-testimonial-card {
    background: var(--dark-surface);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--subtle-border);
    transition: var(--smooth-transition);
}

.ultra-testimonial-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.ultra-testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: var(--soft-white);
    margin-bottom: 30px;
    font-style: italic;
}

.ultra-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ultra-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-accent), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-black);
}

.ultra-testimonial-info {
    flex: 1;
}

.ultra-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 5px;
}

.ultra-testimonial-tour {
    font-size: 14px;
    color: var(--mid-gray);
}

/* Premium Footer */
.ultra-footer {
    background: linear-gradient(180deg, var(--darker-surface) 0%, #0a0a0a 100%);
    padding: 100px 60px 50px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold-accent), transparent) 1;
    position: relative;
    overflow: hidden;
}

.ultra-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.ultra-footer-content {
    max-width: 2500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 70px;
    margin-left: 250px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.ultra-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ultra-footer-logo {
    height: 70px;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    border-radius: 4px;
}

.ultra-footer-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--soft-white);
    max-width: 400px;
}

.ultra-footer-section {
    position: relative;
}

.ultra-footer-section h4 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.ultra-footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.ultra-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ultra-footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.ultra-footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold-accent);
}

.ultra-footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 20px;
    transform: translateX(5px);
}

.ultra-footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.ultra-footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ultra-footer-copy {
    font-size: 14px;
    color: var(--mid-gray);
    letter-spacing: 0.5px;
}

.ultra-footer-socials {
    display: flex;
    gap: 20px;
}

.ultra-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--subtle-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-white);
    text-decoration: none;
    transition: var(--quick-transition);
}

.ultra-social-link:hover {
    border-color: var(--gold-accent);
    background: var(--gold-accent);
    color: var(--deep-black);
    transform: translateY(-3px);
}

/* Contact Form Premium */
.ultra-contact {
    padding: 120px 60px;
    background: var(--dark-surface);
}

.ultra-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.ultra-form-group {
    margin-bottom: 30px;
}

.ultra-form-label {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.ultra-form-input,
.ultra-form-textarea,
.ultra-form-select {
    width: 100%;
    padding: 15px 20px;
    background: var(--darker-surface);
    border: 1px solid var(--subtle-border);
    border-radius: 10px;
    color: var(--soft-white);
    font-size: 16px;
    font-family: inherit;
    transition: var(--quick-transition);
}

.ultra-form-input:focus,
.ultra-form-textarea:focus,
.ultra-form-select:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.ultra-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.ultra-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold-accent), #ffffff);
    color: var(--deep-black);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--quick-transition);
}

.ultra-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollLine {
    0% {
        height: 0;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ultra-split-section {
        grid-template-columns: 1fr;
    }
    
    .ultra-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ultra-footer-content {
        grid-template-columns: 1fr 1fr;
        margin-left: 0;
    }
}

/* ===================== TABLET ===================== */
@media (max-width: 1024px) {
    /* Navbar - switch to hamburger on tablet */
    .ultra-nav {
        height: 70px;
    }

    .ultra-nav.scrolled {
        height: 65px;
    }

    .ultra-nav-container {
        padding: 0 25px;
    }

    .ultra-logo {
        height: 65px;
        margin-left: 0;
    }

    .ultra-nav.scrolled .ultra-logo {
        height: 60px;
        margin-left: 0;
        margin-top: 0;
    }

    .ultra-nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px 20px;
        gap: 0;
        z-index: 9998;
        overflow-y: auto;
    }

    .ultra-nav-menu.mobile-open {
        display: flex;
    }

    .ultra-nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ultra-nav-menu a {
        display: block;
        padding: 18px 15px;
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .ultra-nav-menu a::before {
        display: none;
    }

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 9999;
    }

    .hamburger-btn span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--pure-white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .ultra-hero-logo,
    .home-hero-logo {
        height: 200px;
    }

    .ultra-hero-subtitle {
        font-size: 18px;
        padding: 0 40px;
    }

    /* Sections */
    .ultra-split-content {
        padding: 60px 40px;
    }

    .ultra-split-title {
        font-size: 36px !important;
    }

    .ultra-split-text {
        font-size: 17px !important;
    }

    .ultra-split-image img {
        height: 400px;
    }

    /* Stats */
    .ultra-stat-number {
        font-size: 56px;
    }

    .ultra-stat-item {
        padding: 50px 30px;
    }

    /* Tours */
    .ultra-tours {
        padding: 80px 30px;
    }

    .ultra-tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ultra-section-title {
        font-size: 38px !important;
    }

    /* Gallery */
    .ultra-gallery-item {
        min-width: 320px;
        height: 450px;
    }

    /* Footer */
    .ultra-footer {
        padding: 60px 30px 30px;
    }

    /* Contact */
    .ultra-contact {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    /* ===================== NAVBAR - HAMBURGER ===================== */
    .ultra-nav {
        height: 60px;
    }

    .ultra-nav.scrolled {
        height: 60px;
    }

    .ultra-nav-container {
        padding: 0 15px;
    }

    .ultra-logo {
        height: 55px;
        margin-left: 0;
    }

    .ultra-nav.scrolled .ultra-logo {
        height: 50px;
        margin-left: 0;
        margin-top: 0;
    }
    
    .ultra-nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px 20px;
        gap: 0;
        z-index: 9998;
        overflow-y: auto;
    }

    .ultra-nav-menu.mobile-open {
        display: flex;
    }

    .ultra-nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ultra-nav-menu a {
        display: block;
        padding: 18px 10px;
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .ultra-nav-menu a::before {
        display: none;
    }

    /* Hamburger button */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 9999;
        margin-right: 10px;
    }

    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--pure-white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .theme-dropdown {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-right: 5px;
    }

    .theme-dropdown-btn {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }

    .theme-current-text {
        display: none;
    }

    /* ===================== HERO SECTIONS ===================== */
    .ultra-hero {
        min-height: 70vh;
    }

    .ultra-hero-logo {
        height: 160px;
        margin-top: 80px;
    }

    .home-hero-logo {
        height: 180px;
        margin-top: 80px;
    }

    .tours-hero-logo,
    .about-hero-logo,
    .contact-hero-logo {
        height: 160px;
        margin-top: 80px;
    }

    .ultra-hero-subtitle {
        font-size: 16px !important;
        padding: 0 20px;
    }

    /* ===================== STATS ===================== */
    .ultra-stats {
        grid-template-columns: 1fr;
    }
    
    .ultra-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--subtle-border);
        padding: 40px 20px;
    }

    .ultra-stat-number {
        font-size: 48px;
    }

    .ultra-stat-label {
        font-size: 12px;
    }

    /* ===================== SPLIT SECTIONS (ZIGZAG) ===================== */
    .ultra-split-section {
        min-height: auto;
    }

    .ultra-split-content {
        padding: 50px 20px;
    }

    .ultra-split-title {
        font-size: 32px !important;
    }

    .ultra-split-text {
        font-size: 16px !important;
    }

    .ultra-split-label {
        font-size: 11px;
    }

    .ultra-split-image img {
        height: 300px;
    }

    /* ===================== GALLERY ===================== */
    .ultra-gallery {
        padding: 60px 0;
    }

    .ultra-gallery-scroll {
        padding: 0 15px;
    }

    .ultra-gallery-item {
        min-width: 280px;
        height: 400px;
    }

    .ultra-gallery-nav {
        width: 40px;
        height: 40px;
    }

    .ultra-gallery-nav svg {
        width: 14px;
        height: 14px;
    }

    /* ===================== TOURS SECTION ===================== */
    .ultra-tours {
        padding: 60px 20px;
    }
    
    .ultra-tour-grid {
        grid-template-columns: 1fr;
    }

    .ultra-tour-card {
        max-width: 100%;
    }

    .ultra-tour-content {
        padding: 25px 20px;
    }

    .ultra-tour-title {
        font-size: 22px;
    }

    .ultra-tour-meta {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ultra-section-title {
        font-size: 32px !important;
    }

    .ultra-section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .ultra-section-header {
        margin-bottom: 40px;
    }

    /* ===================== CONTACT ===================== */
    .ultra-contact {
        padding: 60px 20px;
    }

    .ultra-contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ===================== FOOTER ===================== */
    .ultra-footer {
        padding: 50px 20px 30px;
    }

    .ultra-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-left: 0;
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .ultra-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ultra-footer-copy {
        font-size: 13px;
    }

    /* ===================== TESTIMONIALS ===================== */
    .ultra-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== SMALL PHONES ===================== */
@media (max-width: 480px) {
    .ultra-logo {
        height: 45px;
    }

    .ultra-nav.scrolled .ultra-logo {
        height: 40px;
    }

    .ultra-hero-logo,
    .home-hero-logo,
    .tours-hero-logo,
    .about-hero-logo,
    .contact-hero-logo {
        height: 130px;
        margin-top: 70px;
    }

    .ultra-split-content {
        padding: 40px 15px;
    }

    .ultra-split-title {
        font-size: 26px !important;
    }

    .ultra-gallery-item {
        min-width: 250px;
        height: 350px;
    }

    .ultra-stat-number {
        font-size: 36px;
    }

    .ultra-stat-item {
        padding: 30px 15px;
    }
}
