/* ================================
   MODERN GREEN CAMPING DESIGN
   Mobile First - Responsive
   ================================ */

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

/* Font optimization - swap for better performance, reduce initial load */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;600&display=swap');

:root {
    /* Minimalist Nature Luxury Colors */
    --beige: #F5EBDC;
    --cream: #FFF9F3;
    --olive: #8B8B8B;
    --olive-dark: #6B6B6B;
    --brown: #3E3A35;
    --brown-dark: #2A2723;
    --gold: #C2A878;
    --gold-light: #D4BA8E;
    --soft-blue: #A9C9C2;
    --white: #FFFFFF;
    --off-white: #FDFCFA;
    
    /* Font Families */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(62, 58, 53, 0.08);
    --shadow-lg: 0 12px 40px rgba(62, 58, 53, 0.12);
    --shadow-xl: 0 20px 60px rgba(62, 58, 53, 0.15);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Navigation için offset */
}

/* Rezervasyon section highlight when scrolled to */
#rezervasyon {
    scroll-margin-top: 80px;
}

#rezervasyon:target .reservation-card {
    animation: highlight 1.5s ease-out, float 3s ease-in-out infinite 1.5s;
}

@keyframes highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        transform: scale(1);
    }
}

body {
    font-family: var(--font-body);
    color: var(--brown);
    line-height: 1.8;
    background: var(--off-white);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--beige);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--olive));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--olive), var(--gold));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Performance: Hardware acceleration for animations */
.btn, .nav, .feature-card, .showcase-item, .gallery-masonry-item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize scrolling performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce paint on scroll */
.hero-bg, .nature-hero-bg, .experience-hero-bg, .parallax-image {
    will-change: auto;
    transform: translateZ(0);
}

/* Nature Hero - No animation */
.nature-hero-bg {
    will-change: auto !important;
    animation: none !important;
}

/* ================================================
   HERO SLIDER STYLES
   Modern carousel with auto-play
   ================================================ */

.hero-slider {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 0s 1.5s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-in-out, visibility 0s 0s;
    z-index: 2;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
}

.hero-slide.active .hero-bg {
    animation: kenburns 15s ease-in-out forwards;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translateZ(0);
    }
    100% {
        transform: scale(1.08) translateZ(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 58, 53, 0.5), rgba(139, 139, 139, 0.3));
    z-index: 1;
    pointer-events: none;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

/* Slider Navigation Buttons */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
}

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

.hero-scroll:hover {
    opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-prev {
        left: 1rem;
    }
    
    .hero-next {
        right: 1rem;
    }
    
    .hero-dots {
        bottom: 80px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideDown 0.5s ease-out;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--brown);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo i {
    color: var(--olive);
    font-size: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--brown);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

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

.nav-link {
    color: var(--brown);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--olive), var(--gold));
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--olive);
    transform: translateY(-2px);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(139, 139, 139, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--olive-dark), var(--brown));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 139, 139, 0.4);
}

/* ================================
   LANGUAGE SWITCHER - ALL DEVICES
   ================================ */

.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--beige);
    border: 2px solid rgba(194, 168, 120, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--brown);
}

.language-btn:hover {
    background: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.language-btn i {
    font-size: 1.1rem;
    color: var(--gold);
}

.current-lang {
    font-size: 0.9rem;
    font-weight: 700;
}

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

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

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--brown);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-option:hover {
    background: var(--beige);
    transform: translateX(5px);
}

.language-option.active {
    background: var(--gold);
    color: var(--white);
}

.language-option.active .flag-icon {
    filter: brightness(1.2);
}

.flag-icon {
    font-size: 1.5rem;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(62, 58, 53, 0.6), rgba(139, 139, 139, 0.5)),
        url('hero.jpg') center/cover;
    animation: zoom 20s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(62, 58, 53, 0.5) 100%);
}

/* Hero için alternatif görsel desteği */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 139, 139, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--olive-dark), var(--brown));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 139, 139, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    box-shadow: 0 4px 15px rgba(194, 168, 120, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(194, 168, 120, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--olive);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.btn-white:hover {
    background: var(--beige);
    color: var(--brown);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(194, 168, 120, 0.25);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--brown);
    opacity: 0.75;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Image Showcase Section */
.image-showcase {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--cream), var(--beige));
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 400px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(62, 58, 53, 0.15),
        0 0 0 8px var(--white),
        0 0 0 10px rgba(194, 168, 120, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
}

.showcase-large {
    grid-column: span 2;
    grid-row: span 1;
}

.showcase-item:nth-child(odd) {
    transform: rotate(-1deg);
}

.showcase-item:nth-child(even) {
    transform: rotate(1deg);
}

.showcase-item:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(62, 58, 53, 0.25),
        0 0 0 8px var(--white),
        0 0 0 12px var(--gold);
    z-index: 10;
}

.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.15), transparent);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.showcase-item:hover::before {
    opacity: 0;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.05) saturate(1.1);
}

.showcase-item:hover img {
    transform: scale(1.1);
    filter: contrast(1.1) saturate(1.2);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(62, 58, 53, 0.95) 0%, rgba(62, 58, 53, 0.6) 60%, transparent 100%);
    color: var(--white);
    transform: translateY(calc(100% - 50px));
    transition: transform 0.5s ease;
    z-index: 2;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.showcase-item:hover .showcase-content {
    transform: translateY(0);
}

.showcase-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-content p {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Nature Hero Section */
.nature-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.nature-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: none;
    transform: scale(1);
}

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

.nature-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62, 58, 53, 0.75), rgba(107, 107, 107, 0.65));
    z-index: 1;
}

.nature-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
}

.nature-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.nature-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nature-hero-badge i {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.nature-hero-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nature-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    letter-spacing: -0.5px;
}

.nature-hero-desc {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.nature-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.nature-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nature-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nature-feature i {
    font-size: 2rem;
    color: var(--gold-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nature-feature span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nature-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.nature-hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nature-hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Featured Moments */
.featured-moments {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--beige), var(--cream));
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 28px;
    box-shadow: 
        0 15px 45px rgba(62, 58, 53, 0.2),
        0 0 0 10px var(--white),
        0 0 0 12px rgba(194, 168, 120, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
    background: var(--white);
}

.featured-item:nth-child(1) {
    transform: rotate(-0.8deg);
}

.featured-item:nth-child(2) {
    transform: rotate(0.6deg);
}

.featured-item:nth-child(3) {
    transform: rotate(-0.5deg);
}

.featured-large {
    grid-column: span 1;
    height: 500px;
}

.featured-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(194, 168, 120, 0.15), transparent 70%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.featured-item:hover::before {
    opacity: 0;
}

.featured-item:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 75px rgba(139, 139, 139, 0.3),
        0 0 0 10px var(--white),
        0 0 0 14px var(--gold);
    z-index: 10;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.05) saturate(1.08) brightness(0.92);
}

.featured-item:hover img {
    transform: scale(1.1);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62, 58, 53, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent);
    display: flex;
    align-items: flex-end;
    padding: 3rem 2.5rem;
    transition: all 0.5s ease;
    z-index: 2;
    border-radius: 28px;
}

.featured-item:hover .featured-overlay {
    background: linear-gradient(to top, rgba(62, 58, 53, 0.92) 0%, rgba(139, 139, 139, 0.4) 50%, transparent);
}

.featured-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.featured-item:hover .featured-overlay h3 {
    transform: translateY(-5px);
}

/* Full Width Gallery */
.gallery-full {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 400px;
    box-shadow: 
        0 15px 40px rgba(62, 58, 53, 0.2),
        0 0 0 10px var(--white),
        0 0 0 12px rgba(139, 139, 139, 0.15);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
    background: var(--white);
}

.gallery-masonry-item:nth-child(3n+1) {
    transform: rotate(-0.5deg);
}

.gallery-masonry-item:nth-child(3n+2) {
    transform: rotate(0.5deg);
}

.gallery-masonry-item:nth-child(3n+3) {
    transform: rotate(-0.8deg);
}

.gallery-masonry-large {
    grid-column: span 2;
    height: 500px;
}

.gallery-masonry-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--olive), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
    filter: contrast(1.02) saturate(1.05);
}

.gallery-masonry-item:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(139, 139, 139, 0.3),
        0 0 0 10px var(--white),
        0 0 0 14px var(--gold);
    z-index: 10;
}

.gallery-masonry-item:hover img {
    transform: scale(1.08);
    filter: contrast(1.08) saturate(1.15) brightness(1.05);
}

.gallery-masonry-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62, 58, 53, 0.95) 0%, rgba(139, 139, 139, 0.5) 50%, transparent);
    color: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
}

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

.gallery-masonry-item .gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.gallery-masonry-item .gallery-overlay p {
    font-weight: 300;
    opacity: 0.95;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Reservation */
.reservation {
    padding: 5rem 0;
    background: var(--white);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reservation-desc {
    color: var(--brown);
    margin-bottom: 2rem;
    line-height: 1.9;
    opacity: 0.85;
}

.reservation-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.res-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.res-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.res-feature strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brown);
    font-weight: 600;
}

.res-feature span {
    font-size: 0.9rem;
    opacity: 0.75;
    color: var(--brown);
}

.reservation-card {
    background: linear-gradient(145deg, var(--white), var(--beige));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(194, 168, 120, 0.2);
    transition: all 0.4s ease;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(194, 168, 120, 0.25);
    border-color: var(--gold);
}

.res-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--beige);
    margin-bottom: 1.5rem;
}

.res-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--olive);
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.res-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.res-rating i {
    color: var(--gold);
}

.rating-count {
    font-size: 0.85rem;
    opacity: 0.7;
}

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

.res-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.res-input-group label,
.res-guests label,
.res-dome-select label {
    font-weight: 600;
    color: var(--brown);
    font-size: 0.9rem;
}

.res-input-group input,
.res-dome-select select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.res-input-group input:focus,
.res-dome-select select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 0 0 4px rgba(194, 168, 120, 0.15);
    transform: translateY(-2px);
}

.res-guests {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.res-dome-select {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.res-dome-select select {
    cursor: pointer;
}

.res-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--beige);
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--brown);
}

.res-note i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    padding-left: 2rem;
}

.about-desc {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--brown);
    opacity: 0.8;
    font-weight: 300;
}

.about-img-wrapper {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(62, 58, 53, 0.25),
        0 0 0 12px var(--white),
        0 0 0 15px rgba(194, 168, 120, 0.3);
    position: relative;
    transform: rotate(-1deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.1), transparent);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.about-img-wrapper:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(139, 139, 139, 0.3),
        0 0 0 12px var(--white),
        0 0 0 16px var(--gold);
}

.about-img-wrapper:hover::before {
    opacity: 0;
}

.about-img-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.7s ease;
    filter: contrast(1.05) saturate(1.05);
}

.about-img-wrapper:hover img {
    transform: scale(1.08);
    filter: contrast(1.1) saturate(1.15);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.about-badge i {
    font-size: 2rem;
    color: var(--gold);
}

.about-badge strong {
    font-family: var(--font-display);
    color: var(--brown);
}

/* About Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(194, 168, 120, 0.2);
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(62, 58, 53, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 139, 139, 0.15);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--olive), var(--gold));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.value-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.value-text span {
    font-size: 0.85rem;
    color: var(--brown);
    opacity: 0.7;
}

/* Experience Hero Section */
.experience-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.experience-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.experience-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62, 58, 53, 0.88), rgba(107, 107, 107, 0.75));
    z-index: 1;
}

.experience-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--white);
}

.experience-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.experience-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.experience-hero-desc {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.experience-hero-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.experience-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

.experience-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.experience-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(194, 168, 120, 0.4);
}

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.experience-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(194,168,120,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-text {
    padding-right: 2rem;
}

.story-quote {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--beige), var(--cream));
    border-left: 5px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.story-quote i {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.story-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.story-quote span {
    font-size: 0.95rem;
    color: var(--olive);
    font-weight: 600;
    padding-left: 1rem;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-feature-box {
    padding: 2.5rem;
    background: linear-gradient(145deg, var(--white), var(--beige));
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(62, 58, 53, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(194, 168, 120, 0.2);
}

.story-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 139, 139, 0.2);
    border-color: var(--gold);
}

.story-feature-box i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--olive), var(--gold));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 139, 139, 0.3);
}

.story-feature-box h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-feature-box p {
    color: var(--brown);
    opacity: 0.8;
    line-height: 1.8;
    font-weight: 300;
}

/* Reviews */
.reviews {
    padding: 6rem 0;
    background: var(--white);
}

.reviews-main-header {
    margin-bottom: 3rem;
    text-align: center;
}

.main-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
}

.main-rating {
    justify-content: center;
}

.main-rating i {
    color: var(--gold);
}

.rating-big {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brown);
}

.rating-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E5E7EB;
}

.category-item {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.category-rating {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar {
    flex: 1;
    height: 4px;
    background: var(--beige);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--olive), var(--gold));
    border-radius: 4px;
}

.rating-value {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 30px;
}

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

.review-card {
    padding: 2.5rem;
    background: linear-gradient(145deg, var(--white), var(--beige));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(194, 168, 120, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 168, 120, 0.08), transparent);
    transition: left 0.6s;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 139, 139, 0.2);
    border-color: var(--gold);
}

.review-header {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive), var(--soft-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.review-user-info h4 {
    font-weight: 600;
    color: var(--brown);
    font-family: var(--font-display);
}

.review-date {
    font-size: 0.9rem;
    opacity: 0.65;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.review-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.review-text {
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Image Banner */
.image-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: none;
    transform: scale(1);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62, 58, 53, 0.7), rgba(139, 139, 139, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.banner-content p {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    opacity: 0.95;
    font-weight: 300;
}

/* Features */
.features {
    padding: 6rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(194, 168, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--olive));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
    background: var(--cream);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--olive), var(--gold));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--white);
    transition: transform 0.6s ease;
    box-shadow: 0 8px 20px rgba(139, 139, 139, 0.25);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--brown);
}

.feature-card p {
    opacity: 0.75;
    color: var(--brown);
    font-weight: 300;
    line-height: 1.7;
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62, 58, 53, 0.92), rgba(139, 139, 139, 0.3), transparent);
    color: var(--white);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-weight: 300;
    opacity: 0.9;
}

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

.gallery-cta {
    text-align: center;
    padding: 3rem 0 0;
}

.gallery-cta p {
    margin-bottom: 1.5rem;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.parallax-image {
    position: absolute;
    inset: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(0);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62, 58, 53, 0.75), rgba(139, 139, 139, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.parallax-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.parallax-content p {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* CTA */
.cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--olive), var(--brown));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(194,168,120,0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(194,168,120,0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--brown-dark);
    color: var(--beige);
    padding: 5rem 0 2rem;
}

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

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-title i {
    color: var(--gold);
}

.footer-subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--olive));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(194, 168, 120, 0.4);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--beige);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--gold);
}

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

/* Developer Credit */
.developer-credit {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.developer-credit:hover {
    opacity: 1;
}

.developer-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.developer-link:hover {
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.developer-link:hover::after {
    width: 100%;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--olive), var(--brown));
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Domes */
.domes-section {
    padding: 6rem 0;
    background: var(--cream);
}

.domes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.dome-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(194, 168, 120, 0.15);
}

.dome-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.dome-card:hover .dome-image img {
    transform: scale(1.15) rotate(2deg);
}

.dome-image {
    position: relative;
    height: 280px;
}

.dome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dome-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(194, 168, 120, 0.4);
}

.dome-content {
    padding: 2rem;
}

.dome-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brown);
}

.dome-content p {
    color: var(--brown);
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.dome-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dome-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.dome-features i {
    color: var(--olive);
}

.dome-price {
    margin-bottom: 1.5rem;
}

.dome-price .price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--olive);
}

/* Contact */
.contact-section {
    padding: 6rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--olive), var(--gold));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 139, 139, 0.25);
}

.contact-text h3 {
    font-family: var(--font-display);
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--brown);
    opacity: 0.75;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--brown);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--brown);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 0 0 4px rgba(194, 168, 120, 0.15);
    transform: translateY(-2px);
}

.map-section {
    padding: 6rem 0;
    background: var(--white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(194, 168, 120, 0.2);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 25px 70px rgba(139, 139, 139, 0.25);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.map-container iframe {
    display: block;
}

/* Responsive iframe wrapper for mobile compatibility */
.map-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    width: 100%;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile-specific map adjustments */
@media (max-width: 768px) {
    .map-responsive {
        padding-top: 75%; /* 4:3 Aspect Ratio for mobile */
    }
    
    .map-container {
        border-radius: 15px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .map-responsive {
        padding-top: 100%; /* 1:1 Aspect Ratio for small mobile */
    }
}

/* Responsive */
@media (max-width: 968px) {
    section {
        padding: 4rem 0;
    }

    .nav {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(18px);
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo i {
        font-size: 1.3rem;
    }

    .nav-logo span {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

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

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .showcase-large {
        grid-column: span 2;
    }

    .showcase-item {
        border-radius: 20px;
        box-shadow: 
            0 8px 25px rgba(62, 58, 53, 0.15),
            0 0 0 6px var(--white),
            0 0 0 8px rgba(194, 168, 120, 0.2);
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem 0;
        gap: 1.5rem;
    }

    .gallery-masonry-large {
        grid-column: span 2;
        height: 400px;
    }

    .gallery-masonry-item {
        height: 300px;
        border-radius: 25px;
        box-shadow: 
            0 10px 30px rgba(62, 58, 53, 0.15),
            0 0 0 8px var(--white),
            0 0 0 10px rgba(139, 139, 139, 0.15);
    }

    .nature-hero {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }

    .nature-hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nature-feature {
        padding: 1.2rem;
    }

    .nature-feature i {
        font-size: 1.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .featured-item,
    .featured-large {
        height: 400px;
        border-radius: 22px;
    }

    .featured-overlay {
        padding: 2.5rem 2rem;
    }

    .featured-overlay h3 {
        font-size: 1.2rem;
    }

    .reservation-wrapper,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-left: 0;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience-hero {
        min-height: 70vh;
        padding: 3rem 0;
    }

    .experience-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-hero-title {
        font-size: clamp(1.4rem, 4.5vw, 2rem);
    }

    .experience-hero-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .experience-hero-list {
        gap: 1.5rem;
    }

    .experience-item {
        padding: 1.2rem;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .experience-item h4 {
        font-size: 1.2rem;
    }

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-text {
        padding-right: 0;
    }
    
    .image-banner {
        height: 50vh;
        min-height: 400px;
    }
    
    .image-banner img {
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
    }
    
    .banner-content h2 {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }
    
    .banner-content p {
        font-size: 0.95rem;
    }
    
    .parallax-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .parallax-image {
        background-attachment: scroll;
    }
    
    .parallax-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    
    .parallax-content p {
        font-size: 0.95rem;
    }

    .reservation-card {
        position: static;
    }

    .res-dates {
        grid-template-columns: 1fr;
    }

    .rating-categories,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .nav {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(12px);
    }

    .nav-container {
        padding: 0.6rem 0.75rem;
    }

    .nav-logo {
        font-size: 0.95rem;
    }

    .nav-logo i {
        font-size: 1rem;
    }

    .nav-logo span {
        font-size: 0.9rem;
    }

    .nav-menu {
        top: 55px;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.92);
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .nav-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .showcase-large {
        grid-column: span 1;
    }

    .showcase-item {
        border-radius: 18px;
        box-shadow: 
            0 8px 20px rgba(62, 58, 53, 0.12),
            0 0 0 5px var(--white),
            0 0 0 7px rgba(194, 168, 120, 0.15);
    }

    .showcase-content {
        padding: 2rem 1.5rem;
    }

    .showcase-content h3 {
        font-size: 1rem;
    }
    
    .showcase-content p {
        font-size: 0.75rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        padding: 2rem 1rem 0;
        gap: 1.5rem;
    }

    .gallery-masonry-large {
        grid-column: span 1;
        height: 350px;
    }

    .gallery-masonry-item {
        height: 300px;
        border-radius: 22px;
        box-shadow: 
            0 10px 25px rgba(62, 58, 53, 0.12),
            0 0 0 6px var(--white),
            0 0 0 8px rgba(139, 139, 139, 0.12);
    }

    .gallery-masonry-item .gallery-overlay {
        padding: 2rem 1.5rem;
    }

    .gallery-masonry-item .gallery-overlay h3 {
        font-size: 0.95rem;
    }
    
    .gallery-masonry-item .gallery-overlay p {
        font-size: 0.75rem;
    }

    .image-banner {
        height: 45vh;
        min-height: 350px;
    }
    
    .image-banner img {
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    .banner-content h2 {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .banner-content p {
        font-size: 0.8rem;
    }

    .parallax-section {
        height: 55vh;
        min-height: 400px;
    }

    .parallax-image {
        background-attachment: scroll;
    }

    .parallax-content h2 {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }

    .parallax-content p {
        font-size: 0.8rem;
    }

    .nature-hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .nature-hero-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .nature-hero-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .nature-hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nature-feature {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
    }

    .nature-feature i {
        font-size: 1.3rem;
    }

    .nature-feature span {
        font-size: 0.8rem;
    }

    .nature-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .nature-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .featured-item,
    .featured-large {
        height: 350px;
        border-radius: 20px;
        box-shadow: 
            0 10px 30px rgba(62, 58, 53, 0.12),
            0 0 0 6px var(--white),
            0 0 0 8px rgba(194, 168, 120, 0.15);
    }

    .featured-overlay {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .featured-overlay h3 {
        font-size: 1rem;
    }
    
    .about-img-wrapper {
        border-radius: 25px;
        box-shadow: 
            0 15px 40px rgba(62, 58, 53, 0.2),
            0 0 0 8px var(--white),
            0 0 0 10px rgba(194, 168, 120, 0.25);
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .value-item {
        padding: 1.2rem;
    }

    .experience-hero {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .experience-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-hero-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .experience-hero-desc {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .experience-hero-list {
        gap: 1rem;
    }

    .experience-item {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .experience-item:hover {
        transform: translateX(0) translateY(-5px);
    }

    .experience-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .experience-item h4 {
        font-size: 0.95rem;
    }

    .experience-item p {
        font-size: 0.8rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .experience-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .experience-card h3 {
        font-size: 1.1rem;
    }
    
    .experience-card p {
        font-size: 0.8rem;
    }

    /* Make right-side experience cards match left items on mobile */
    .experience-hero-right {
        gap: 1rem;
    }

    .experience-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
        text-align: left;
    }

    .experience-card:hover {
        transform: translateY(-5px);
    }

    .experience-card-icon {
        width: 55px;
        height: 55px;
        border-radius: 15px;
        margin: 0;
        font-size: 1.6rem;
        flex: 0 0 auto;
    }

    .experience-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .experience-card p {
        font-size: 0.8rem;
        opacity: 0.9;
        line-height: 1.6;
        margin: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        padding-right: 0;
    }

    .story-quote {
        padding: 2rem 1.5rem;
    }

    .story-quote p {
        font-size: 1.1rem;
    }

    .story-feature-box {
        padding: 2rem 1.5rem;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }

    .section-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin-bottom: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-tall,
    .gallery-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* ================================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   For better touch interactions and performance
   ================================================ */

/* Touch-friendly buttons and links */
@media (hover: none) and (pointer: coarse) {
    /* For touch devices */
    .btn,
    .nav-link,
    .nav-btn,
    a {
        min-height: 44px; /* Apple's recommended touch target size */
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .btn:hover,
    .feature-card:hover,
    .review-card:hover,
    .showcase-item:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .feature-card:active,
    .review-card:active,
    .showcase-item:active {
        transform: translateY(2px);
    }
}

/* Prevent text selection on touch devices for UI elements */
.btn,
.nav-toggle,
.nav-link,
.nav-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Optimize images for mobile */
@media (max-width: 768px) {
    img {
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }
    
    /* Lazy loading optimization */
    img[loading="lazy"] {
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    img[loading="lazy"].loaded {
        opacity: 1;
    }
}

/* Improve form inputs for mobile */
@media (max-width: 640px) {
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 0.85rem 1rem;
    }
    
    input[type="date"],
    input[type="time"],
    input[type="number"] {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* Optimize scrolling performance */
.hero,
.parallax-section,
.image-banner,
.nature-hero {
    -webkit-overflow-scrolling: touch;
    will-change: auto;
}

/* Image Banner - No animation */
.image-banner img {
    will-change: auto !important;
    animation: none !important;
    transform: scale(1) !important;
}

/* Prevent horizontal scroll */
body,
html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Improve fixed navigation on mobile */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    
    /* Add padding to body to account for fixed nav */
    body {
        padding-top: 60px;
    }
}

/* Mobile-specific font loading optimization */
@media (max-width: 640px) {
    body {
        font-size: 15px;
        line-height: 1.7;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Focus styles for keyboard navigation */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus {
        outline: 3px solid var(--gold);
        outline-offset: 2px;
    }
    
    /* Skip to main content link */
    .skip-to-main {
        position: absolute;
        top: -100px;
        left: 0;
        background: var(--gold);
        color: var(--white);
        padding: 1rem 2rem;
        text-decoration: none;
        z-index: 10000;
        transition: top 0.3s;
    }
    
    .skip-to-main:focus {
        top: 0;
    }
}

/* Optimize animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support for mobile devices */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .nav {
        background: rgba(42, 39, 35, 0.85);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu {
        background: rgba(42, 39, 35, 0.95);
    }
}

/* ================================================
   RESERVATION SECTION ENHANCEMENTS
   Dikkat çekici rezervasyon bölümü
   ================================================ */

/* Reservation section pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Reservation card enhancement */
.reservation-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: 3px solid rgba(194, 168, 120, 0.3);
    background: white !important;
    animation: float 3s ease-in-out infinite;
}

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

/* WhatsApp button hover effect */
.btn-primary.btn-block:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6) !important;
}

/* Reservation info enhancement */
.reservation-info .section-label {
    animation: slideInLeft 0.8s ease-out;
}

.reservation-info .section-title {
    animation: slideInLeft 1s ease-out;
}

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

/* Reservation card fade in */
.reservation-card {
    animation: fadeInUp 1.2s ease-out, float 3s ease-in-out infinite 1.2s;
}

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

/* Highlight reservation features */
.res-feature {
    transition: all 0.3s ease;
}

.res-feature:hover {
    transform: translateX(10px);
}

.res-feature i {
    color: #25D366 !important;
    font-size: 1.8rem !important;
}

/* Make reservation section stand out */
.reservation {
    padding: 6rem 0 !important;
    position: relative;
}

@media (max-width: 768px) {
    .reservation {
        padding: 4rem 0 !important;
    }
    
    .reservation-card {
        animation: fadeInUp 1s ease-out;
    }
}

/* ================================
   MOBILE STICKY RESERVATION BUTTON
   ================================ */

.mobile-reservation-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-reservation 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.mobile-reservation-btn i {
    font-size: 1.8rem;
    color: white;
}

.mobile-reservation-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.7);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

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

/* Pulse animation for attention */
@keyframes pulse-reservation {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-reservation-btn {
        display: flex;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .mobile-reservation-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .mobile-reservation-btn i {
        font-size: 1.6rem;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    .mobile-reservation-btn:focus {
        outline: 3px solid var(--gold);
        outline-offset: 3px;
    }
    
    /* Hide when user is at bottom of page to avoid covering content */
    .mobile-reservation-btn.hide-at-bottom {
        opacity: 0;
        pointer-events: none;
    }
}

/* ================================
   MOBILE OPTIMIZATION ENHANCEMENTS
   ================================ */

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    /* Ensure all interactive elements have minimum 44px touch target */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Optimize button sizes for touch */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Improve spacing for mobile navigation */
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Optimize hero content for mobile */
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Optimize section padding for mobile */
    section {
        padding: 3rem 0;
    }
    
    /* Improve card layouts on mobile */
    .accommodation-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Optimize images for mobile */
    img {
        width: 100%;
        height: auto;
    }
    
    /* Improve form elements on mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.875rem 1rem;
    }
    
    /* Optimize container padding for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Improve readability on mobile */
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    /* Further optimize for very small screens */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Optimize navigation for small screens */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Optimize slider controls for small screens */
    .hero-dots {
        bottom: 60px; /* Move above mobile reservation button */
    }
}

/* Landscape orientation optimization */
@media (max-width: 768px) and (orientation: landscape) {
    /* Reduce hero height in landscape mode */
    .hero,
    .hero-slider,
    .hero-slide {
        min-height: 70vh;
        max-height: 70vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Improve mobile performance */
@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Optimize transitions for mobile */
    *,
    *::before,
    *::after {
        transition-duration: 0.2s;
    }
    
    /* Disable parallax effects on mobile for better performance */
    .parallax {
        background-attachment: scroll !important;
    }
}

/* Safe area insets for notched devices (iPhone X and newer) */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .nav {
            padding-top: max(1rem, env(safe-area-inset-top));
        }
        
        .mobile-reservation-btn {
            bottom: max(20px, env(safe-area-inset-bottom));
            right: max(20px, env(safe-area-inset-right));
        }
        
        .footer {
            padding-bottom: max(2rem, env(safe-area-inset-bottom));
        }
    }
}

/* ================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   Final override for mobile devices
   ================================ */

/* Mobile Navigation Fix */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 60px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-btn {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
        justify-content: center;
    }
    
    /* Language Switcher Mobile - Fixed Next to Nav Toggle */
    .language-switcher {
        position: fixed !important;
        right: 75px !important;
        top: 20px !important;
        width: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1002 !important;
    }
    
    .language-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        padding: 0.55rem 0.8rem !important;
        font-size: 0.85rem !important;
        min-width: 60px !important;
        height: 40px !important;
        background: var(--beige) !important;
        border: 2px solid rgba(194, 168, 120, 0.3) !important;
        border-radius: 18px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .language-btn:active {
        background: var(--cream) !important;
        border-color: var(--gold) !important;
        transform: scale(0.95) !important;
    }
    
    .language-btn i {
        font-size: 1rem !important;
        color: var(--gold) !important;
    }
    
    .current-lang {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: var(--brown) !important;
    }
    
    .language-dropdown {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        right: 0 !important;
        left: auto !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
        background: var(--white);
        padding: 0.5rem;
        margin: 0;
        min-width: 150px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1003;
        border: 1px solid rgba(194, 168, 120, 0.2);
    }
    
    .language-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .language-option {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        background: transparent !important;
        color: var(--brown) !important;
        text-decoration: none !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 8px !important;
        transition: background 0.2s ease !important;
        min-height: 44px !important;
    }
    
    .language-option:active {
        background: var(--beige) !important;
    }
    
    .language-option.active {
        background: var(--gold) !important;
        color: white !important;
    }
    
    .flag-icon {
        font-size: 1.3rem;
    }
}

/* Mobile Hero Optimization */
@media screen and (max-width: 768px) {
    .hero-slider,
    .hero-slide {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        justify-content: center;
    }
    
    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-prev {
        left: 1rem;
    }
    
    .hero-next {
        right: 1rem;
    }
    
    .hero-dots {
        bottom: 80px;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* Mobile Typography */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.3;
    }
    
    h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

/* Mobile Layouts */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    section {
        padding: 3rem 0 !important;
    }
    
    .features-grid,
    .accommodation-grid,
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .feature-card,
    .accommodation-card {
        margin: 0;
    }
}

/* Mobile Buttons and Forms */
@media screen and (max-width: 768px) {
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important; /* Prevent zoom on iOS */
        padding: 1rem;
        min-height: 44px;
        width: 100%;
        border-radius: 8px;
    }
    
    textarea {
        min-height: 120px;
    }
}

/* Mobile Footer - Enhanced */
@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .footer-title {
        font-size: 1.3rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-links,
    .footer-contact {
        padding: 0;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .footer-links a,
    .footer-contact a {
        display: inline-block;
        padding: 0.5rem 1rem;
        min-height: 44px;
        line-height: 1.5;
    }
    
    .footer-contact i {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Extra small devices - Footer */
@media screen and (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem !important;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer-links li,
    .footer-contact li {
        font-size: 0.95rem;
    }
}

/* Additional Footer Mobile Enhancements */
@media screen and (max-width: 768px) {
    /* Footer columns spacing */
    .footer-col {
        margin-bottom: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    /* WhatsApp button in footer */
    .footer .btn-sm {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        min-height: 48px;
    }
    
    .footer .btn-sm i {
        font-size: 1.3rem;
    }
    
    /* Footer text optimization */
    .footer-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    /* Contact items with better spacing */
    .footer-contact li {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        margin-bottom: 0.75rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-contact li:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateX(0);
    }
    
    .footer-contact li i {
        flex-shrink: 0;
        width: 24px;
        font-size: 1.1rem;
        color: var(--gold);
        margin-top: 0.2rem;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        flex: 1;
        text-align: left;
    }
    
    .footer-contact li a {
        color: var(--cream);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-contact li a:hover {
        color: var(--gold);
    }
    
    /* Footer links with cards */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .footer-links li a {
        display: block;
        padding: 0.875rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        color: var(--cream);
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 1rem;
    }
    
    .footer-links li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--gold);
        transform: translateX(0);
    }
    
    /* Social links enhancement */
    .social-links {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .social-link {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--gold);
        border-color: var(--gold);
        transform: translateY(-3px);
    }
    
    .social-link i {
        color: var(--cream);
    }
    
    /* Footer bottom enhancement */
    .footer-bottom {
        margin-top: 2.5rem;
        padding: 1.5rem 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
    }
    
    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        opacity: 0.7;
    }
    
    /* Developer credit mobile optimization */
    .developer-credit {
        font-size: 0.8rem;
        margin-top: 0.75rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .developer-link {
        display: inline-block;
        padding: 0.25rem 0.5rem;
        min-height: auto;
    }
}

/* Extra enhancements for very small screens */
@media screen and (max-width: 480px) {
    .footer .btn-sm {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-contact li i {
        width: auto;
        margin-top: 0;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        text-align: center;
    }
    
    /* Developer credit - extra small screens */
    .developer-credit {
        font-size: 0.75rem;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .developer-link {
        padding: 0.2rem 0.4rem;
    }
}

/* Mobile Reservation Section */
@media screen and (max-width: 768px) {
    .reservation {
        padding: 3rem 0 !important;
    }
    
    .reservation-card {
        padding: 2rem 1.5rem;
    }
    
    .res-feature {
        font-size: 1rem;
    }
    
    .res-feature i {
        font-size: 1.5rem !important;
    }
}

/* Mobile Images */
@media screen and (max-width: 768px) {
    img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force images to be visible */
    img[loading="lazy"] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr !important;
    }
    
    .showcase-image {
        display: block !important;
        height: auto !important;
        min-height: 200px;
    }
    
    .showcase-image img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
    }
}

/* Mobile Gallery */
@media screen and (max-width: 768px) {
    .gallery-masonry {
        column-count: 1 !important;
        gap: 1rem;
        display: block !important;
    }
    
    .gallery-masonry-item {
        margin-bottom: 1rem;
        display: block !important;
        height: auto !important;
        min-height: 250px;
    }
    
    .gallery-masonry-item img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 250px;
        object-fit: cover;
    }
    
    /* Gallery grid items */
    .gallery-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    
    .gallery-item {
        display: block !important;
        height: auto !important;
        min-height: 200px;
    }
    
    .gallery-item img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
        object-fit: cover;
    }
    
    /* About page showcase */
    .showcase-image img,
    .about-hero img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 250px;
        object-fit: cover;
    }
}

/* ================================
   DISABLE IMAGE EFFECTS ON MOBILE
   Deneyimler ve Rezervasyon Bölümleri
   ================================ */

@media screen and (max-width: 768px) {
    /* Experience Hero - Animasyonu kaldır */
    .experience-hero-bg {
        animation: none !important;
        transform: none !important;
        will-change: auto;
    }
    
    /* Showcase Items - Tüm efektleri kaldır */
    .showcase-item {
        transform: none !important;
        transition: none !important;
        box-shadow: 0 8px 20px rgba(62, 58, 53, 0.12), 0 0 0 5px var(--white) !important;
    }
    
    .showcase-item:hover {
        transform: none !important;
        box-shadow: 0 8px 20px rgba(62, 58, 53, 0.12), 0 0 0 5px var(--white) !important;
    }
    
    .showcase-item::before {
        display: none !important;
    }
    
    .showcase-item img {
        transform: none !important;
        transition: none !important;
        filter: none !important;
    }
    
    .showcase-item:hover img {
        transform: none !important;
        filter: none !important;
    }
    
    .showcase-content {
        transform: translateY(0) !important;
        transition: none !important;
        position: relative !important;
        background: rgba(62, 58, 53, 0.85) !important;
    }
    
    .showcase-item:hover .showcase-content {
        transform: translateY(0) !important;
    }
    
    /* Reservation Section - Float ve highlight animasyonlarını kaldır */
    .reservation-card {
        animation: none !important;
        transform: none !important;
    }
    
    #rezervasyon:target .reservation-card {
        animation: none !important;
        transform: none !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* About Image Wrapper - Efektleri kaldır */
    .about-image-wrapper {
        transform: none !important;
        transition: none !important;
    }
    
    .about-image-wrapper:hover {
        transform: none !important;
    }
    
    .about-image-wrapper img {
        transform: none !important;
        transition: none !important;
        filter: none !important;
    }
    
    .about-image-wrapper:hover img {
        transform: none !important;
        filter: none !important;
    }
    
    /* Experience Items - Animasyonları kaldır */
    .experience-item {
        animation: none !important;
        transform: none !important;
    }
    
    .experience-icon {
        animation: none !important;
        transform: none !important;
    }
    
    /* Disable all hover transforms on mobile */
    .showcase-item:active,
    .showcase-item:focus {
        transform: none !important;
    }
}

/* Mobile Map */
@media screen and (max-width: 768px) {
    .map-responsive {
        padding-top: 75%; /* 4:3 Aspect Ratio for mobile */
        border-radius: 15px;
    }
}

/* Extra Small Devices (< 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .mobile-reservation-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .mobile-reservation-btn i {
        font-size: 1.6rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Landscape Orientation on Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-slider,
    .hero-slide {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-dots {
        bottom: 20px;
    }
}

/* Touch-friendly enhancements */
@media screen and (max-width: 768px) {
    a, button, input, select, textarea, .btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .btn:hover,
        .feature-card:hover,
        .accommodation-card:hover {
            transform: none;
        }
    }
}

/* iOS specific fixes */
@media screen and (max-width: 768px) {
    /* Fix iOS input zoom */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Fix iOS safe area */
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Disable iOS text size adjustment */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Performance optimizations for mobile */
@media screen and (max-width: 768px) {
    /* Reduce animation complexity */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Disable parallax on mobile */
    .parallax,
    .hero-bg {
        background-attachment: scroll !important;
    }
    
    /* Optimize transforms */
    .btn, .card, .feature-card {
        will-change: auto;
    }
}

/* ================================
   Site-wide overrides (images/reservation removed)
   ================================ */
/* (images re-enabled) */

/* Remove all reservation related UI */
.reservation,
.mobile-reservation-btn,
.nav .nav-btn,
.cta {
    display: none !important;
}
