/*
 * Lavanta Bungalov - Main Stylesheet
 * Modern, Premium Design
 */

/* ==========================================
   CSS Variables / Design Tokens
   ========================================== */
:root {
    /* Colors */
    --primary: #6B4E9E;
    --primary-dark: #5A3E8A;
    --primary-light: #8B6EBE;
    --secondary: #E8B86D;
    --secondary-dark: #D4A45C;

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    --dark: #1F2937;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6B4E9E 0%, #8B6EBE 100%);
    --gradient-secondary: linear-gradient(135deg, #E8B86D 0%, #F4D19B 100%);
    --gradient-dark: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ==========================================
   Reset & Base
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul,
ol {
    list-style: none;
}

/* ==========================================
   Container
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

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

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
}

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

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

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

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

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--gray-100);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Header
   ========================================== */
/* Mobil menüyü masaüstünde gizle */
@media (min-width: 769px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 140px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

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

.logo-sub {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-list a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta .btn {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
}

.header-cta .btn-outline-light {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.header-cta .btn-outline-light:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-800);
}

.header-cta .btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.header-cta .btn-primary:hover {
    background: var(--primary-dark);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    margin-left: 4px;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 3px 10px 3px 3px;
    cursor: pointer;
    transition: all 0.2s;
    height: 36px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.user-dropdown-toggle:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.user-avatar {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 1px;
}

.user-dropdown-toggle i {
    font-size: 11px;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
    overflow: hidden;
}

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

.dropdown-user-info {
    padding: 16px 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f8f7ff 100%);
}

.dropdown-user-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.dropdown-user-email {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: var(--primary);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--primary);
}

.dropdown-item.text-danger {
    color: #ef4444;
}

.dropdown-item.text-danger i {
    color: #ef4444;
}

.dropdown-item.text-danger:hover {
    background: #fef2f2;
}

.user-login-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

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

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobilde masaüstü menüyü gizle ve hamburger butonu göster */
@media (max-width: 768px) {

    .main-nav,
    .header-cta {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }
}

/* Mobile User Button - Varsayılan olarak gizli */
.mobile-user-btn {
    display: none;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-light);
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(107, 78, 158, 0.4);
}

.hero-cta .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(107, 78, 158, 0.5);
}

.hero-cta .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta .btn-outline-light:hover {
    background: #fff;
    color: var(--gray-900);
    border-color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    text-decoration: none;
}

.hero-scroll a i {
    font-size: 1.25rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(107, 78, 158, 0.12);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(107, 78, 158, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(107, 78, 158, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================
   Bungalovs Section
   ========================================== */
.bungalovs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}

.bungalovs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .bungalovs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.bungalov-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.bungalov-card:hover {
    box-shadow: 0 24px 60px rgba(107, 78, 158, 0.18);
    transform: translateY(-12px);
}

.bungalov-card.featured {
    border: 2px solid var(--primary);
}

.bungalov-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B6EBE 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(107, 78, 158, 0.3);
}

.bungalov-image {
    position: relative;
    padding-top: 65%;
    background: var(--gray-100);
    overflow: hidden;
}

.bungalov-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bungalov-card:hover .bungalov-image img {
    transform: scale(1.08);
}

.bungalov-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-300);
}

.bungalov-content {
    padding: 32px;
}

.bungalov-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.bungalov-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bungalov-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.bungalov-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
}

.bungalov-meta i {
    color: var(--primary);
    font-size: 14px;
}

.bungalov-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(107, 78, 158, 0.08);
    border-radius: 10px;
    font-size: 14px;
    color: var(--primary);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: var(--primary);
    color: #fff;
}

.bungalov-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.price-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.price-from {
    font-size: 12px;
    color: var(--gray-400);
}

.bungalov-footer .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.bungalov-footer .btn:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #fff;
    color: var(--gray-900);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(107, 78, 158, 0.4);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-md);
}

.footer-desc {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

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

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
}

.footer-contact ul li {
    display: flex;
    gap: var(--space-md);
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    background: var(--gray-800);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    padding: var(--space-md) var(--space-lg);
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-700);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ==========================================
   WhatsApp Button
   ========================================== */
.whatsapp-button {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    background: var(--gradient-dark);
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

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

/* ==========================================
   Page Hero (Alt Sayfalar)
   ========================================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
    max-width: 700px;
}

.page-hero-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
    }
}

/* Tablet & Mobile Header */
@media (max-width: 991px) {
    .main-header {
        height: 70px;
        padding: 0;
    }

    .header-inner {
        height: 100%;
        min-height: auto;
    }
}

/* ==========================================
   Bungalovs Page
   ========================================== */
.bungalovs-page {
    padding: var(--space-3xl) 0;
}

/* ==========================================
   Bungalov Detail Page
   ========================================== */
.bungalov-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
}

.hero-gallery {
    height: 100%;
}

.hero-main-image {
    height: 100%;
}

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

.hero-placeholder {
    height: 100%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gray-400);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.hero-info {
    color: var(--white);
}

.campaign-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero-info h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.hero-meta {
    display: flex;
    gap: var(--space-xl);
    font-size: 1rem;
}

.hero-meta i {
    margin-right: var(--space-sm);
    color: var(--secondary);
}

/* Bungalov Content Layout */
.bungalov-content-section {
    padding: var(--space-3xl) 0;
}

.bungalov-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
}

.bungalov-main {
    min-width: 0;
}

.content-block {
    margin-bottom: var(--space-3xl);
}

.content-block h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gray-200);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--gray-50);
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    padding: var(--space-lg);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Sidebar */
.bungalov-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.price-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.price-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.price-header .price-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.price-header .price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-header .price-note {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.price-weekend {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

.price-info {
    margin-bottom: var(--space-lg);
}

.price-info div {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.price-info i {
    color: var(--primary);
    width: 20px;
}

.price-box .btn {
    margin-bottom: var(--space-sm);
}

.calendar-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
}

.calendar-box h4 {
    margin-bottom: var(--space-md);
}

.calendar-header {
    text-align: center;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.calendar-legend {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
}

.legend-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-item.available::before {
    background: var(--success);
}

.legend-item.booked::before {
    background: var(--danger);
}

.calendar-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Related Section */
.related-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.related-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.related-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.related-placeholder {
    height: 100%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-400);
}

.related-info {
    padding: var(--space-lg);
}

.related-info h4 {
    margin-bottom: var(--space-xs);
}

.related-info span {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .bungalov-layout {
        grid-template-columns: 1fr;
    }

    .bungalov-sidebar {
        position: static;
    }

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

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

@media (max-width: 768px) {

    /* Header Layout - APP BAR STYLE */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 70px;
        padding: 10px 16px;
        gap: 12px;
    }

    /* Sol Taraf - Hamburger Menü */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        padding: 0;
        gap: 5px;
        background: rgba(107, 78, 158, 0.08);
        border-radius: 12px;
        border: 1px solid rgba(107, 78, 158, 0.12);
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #6B4E9E;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active {
        background: rgba(107, 78, 158, 0.15);
    }

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

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

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

    /* Logo Ortala */
    .logo {
        position: relative;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-img {
        max-height: 70px;
        height: 70px;
        width: auto;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Sağ Taraf - Kullanıcı İkonu */
    .mobile-user-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    .mobile-user-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: rgba(107, 78, 158, 0.08);
        border-radius: 12px;
        border: 1px solid rgba(107, 78, 158, 0.12);
        color: #6B4E9E;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .mobile-user-link:hover {
        background: #6B4E9E;
        color: #fff;
    }

    .mobile-user-link .user-avatar {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }


    /* Navigation */
    .main-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
        z-index: 1000;
        padding-top: 90px;
        overflow-y: auto;
    }

    .main-nav.active {
        display: flex !important;
        flex-direction: column;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
    }

    .main-nav .nav-list li {
        width: 100%;
    }

    .main-nav .nav-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 24px;
        font-size: 20px;
        font-weight: 600;
        color: #1F2937;
        text-align: center;
        border-radius: 16px;
        margin-bottom: 8px;
        transition: all 0.2s;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .main-nav .nav-list a:hover,
    .main-nav .nav-list a.active {
        color: #fff;
        background: linear-gradient(135deg, #6B4E9E 0%, #8B6EBE 100%);
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(107, 78, 158, 0.3);
    }

    /* Mobil Menüde CTA Butonları */
    .main-nav::after {
        content: '';
        display: block;
        padding: 20px 24px;
    }

    /* Header CTA Gizle */
    .header-cta {
        display: none !important;
    }

    /* Bungalov Grid */
    .bungalovs-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-col ul {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-info .logo-img {
        margin: 0 auto 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Related Grid */
    .related-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Meta */
    .hero-meta {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    /* Hero Content */
    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    /* Page Header */
    .page-header {
        padding: calc(70px + 24px) 0 24px;
    }

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

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

/* ==========================================
   Reservation Styles
   ========================================== */
.page-header-sm {
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
}

.breadcrumb-nav {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-400);
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.reservation-section {
    padding: var(--space-3xl) 0;
}

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
}

.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.form-section h3 i {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-note i {
    color: var(--primary);
}

.error {
    color: var(--danger);
    font-size: 0.8125rem;
    margin-top: var(--space-xs);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.extra-item {
    cursor: pointer;
}

.extra-item input {
    display: none;
}

.extra-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.extra-item input:checked+.extra-content {
    border-color: var(--primary);
    background: rgba(107, 78, 158, 0.05);
}

.extra-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.extra-info {
    flex: 1;
}

.extra-name {
    display: block;
    font-weight: 500;
}

.extra-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.extra-price {
    font-weight: 600;
    color: var(--primary);
}

.coupon-input {
    display: flex;
    gap: var(--space-md);
}

.coupon-input input {
    flex: 1;
}

.summary-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    position: sticky;
    top: 100px;
}

.summary-header h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.summary-bungalov {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-lg);
}

.bungalov-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-200);
}

.bungalov-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-dates {
    margin-bottom: var(--space-lg);
}

.date-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.summary-pricing {
    border-top: 1px solid var(--gray-200);
    padding-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.price-row.total {
    border-top: 2px solid var(--gray-200);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    font-size: 1.25rem;
    font-weight: 700;
}

.price-row.total span:last-child {
    color: var(--primary);
}

.price-row .discount {
    color: var(--success);
}

.summary-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: var(--space-md);
}

/* ==========================================
   Confirmation Page
   ========================================== */
.confirmation-section {
    padding: var(--space-3xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.confirmation-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.confirmation-icon.success {
    background: var(--success);
    color: var(--white);
}

.confirmation-box h1 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.confirmation-message {
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

.pnr-box {
    background: var(--gray-100);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.pnr-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.pnr-code {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.confirmation-details {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.detail-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.detail-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.detail-section h3 i {
    color: var(--primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.detail-item .label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.detail-item .value {
    font-weight: 500;
}

.confirmation-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.confirmation-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

/* ==========================================
   Query Page
   ========================================== */
.query-section {
    padding: var(--space-3xl) 0;
}

.query-box {
    max-width: 500px;
    margin: 0 auto;
}

.query-form {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.query-help {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.query-help h4 {
    margin-bottom: var(--space-md);
}

.query-help ul {
    margin-bottom: var(--space-md);
}

.query-help li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.query-help li i {
    color: var(--success);
}

/* ==========================================
   Blog Styles
   ========================================== */
.blog-section {
    padding: var(--space-3xl) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
}

.featured-posts {
    margin-bottom: var(--space-3xl);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.featured-card.featured-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.featured-image {
    position: absolute;
    inset: 0;
}

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

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.featured-content h3 {
    margin-bottom: var(--space-sm);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.post-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.post-content {
    padding: var(--space-lg);
}

.post-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.post-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.post-content h3 a:hover {
    color: var(--primary);
}

.post-content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.post-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.post-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.posts-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    color: var(--gray-400);
}

.posts-empty i {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.sidebar-widget h4 {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.category-list li {
    margin-bottom: var(--space-sm);
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    color: var(--gray-600);
}

.category-list a:hover {
    color: var(--primary);
}

.category-list span {
    color: var(--gray-400);
}

/* ==========================================
   Contact Styles
   ========================================== */
.contact-section {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-xl);
}

.contact-form {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.info-icon.whatsapp {
    background: #25D366;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

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

.social-card {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.social-card h3 {
    margin-bottom: var(--space-md);
}

.contact-map {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-map h3 {
    margin-bottom: var(--space-lg);
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ==========================================
   FAQ Styles
   ========================================== */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.faq-question i {
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: var(--space-lg);
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-empty {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--gray-400);
}

.faq-empty i {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.help-card {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.help-card h3 {
    margin-bottom: var(--space-md);
}

.help-card p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.help-card .btn {
    margin-bottom: var(--space-sm);
}

/* ==========================================
   About Styles
   ========================================== */
.about-section {
    padding: var(--space-3xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.about-text p {
    margin-bottom: var(--space-lg);
    color: var(--gray-600);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-features .feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.about-features .feature i {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-features .feature h4 {
    margin-bottom: var(--space-xs);
}

.about-features .feature p {
    margin: 0;
    font-size: 0.9375rem;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    background: var(--gray-900);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.8;
}

/* ==========================================
   Activities Styles
   ========================================== */
.activities-section {
    padding: var(--space-3xl) 0;
}

.category-tabs {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.tab-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.activity-image {
    aspect-ratio: 16/10;
    position: relative;
}

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

.activity-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-400);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--secondary);
    color: var(--dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-content {
    padding: var(--space-lg);
}

.activity-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.activity-content h3 {
    margin-bottom: var(--space-sm);
}

.activity-content p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.activity-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.activity-meta i {
    color: var(--primary);
}

.activities-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    color: var(--gray-400);
}

.activities-empty i {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

/* ==========================================
   Alert Styles
   ========================================== */
.alert {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
}

.alert-danger {
    background: #FEE2E2;
    color: #991B1B;
}

/* ==========================================
   Additional Responsive
   ========================================== */
@media (max-width: 1024px) {

    .reservation-layout,
    .blog-layout,
    .faq-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {

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

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

    .posts-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card.featured-large {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .confirmation-actions {
        flex-direction: column;
    }
}