/* ==========================================================
   ULTRA-PREMIUM LUXURY STYLESHEET - BUNGALOW RENTAL SYSTEM
   Aesthetics: Silk Ivory/Linen, Asymmetric Layouts, Glassmorphism,
               Gold Accent Lines, Dynamic Micro-Animations, High Contrast
   ========================================================== */

/* Typography & Core Styling Reset */
:root {
    /* Premium Warm Linen/Ivory Palette */
    --bg-light: #FAF9F5;
    --bg-linen: #F3F1EB;
    --bg-white: #FFFFFF;
    
    /* Obsidian & Sage Contrast Tones */
    --color-text-main: #141715;
    --color-text-muted: #575E59;
    --color-text-light: #8E9690;
    
    /* Elegant Border Colors */
    --border-color: rgba(20, 23, 21, 0.06);
    --border-hover: rgba(197, 168, 128, 0.35);
    
    /* Premium Shadows */
    --shadow-premium-sm: 0 4px 20px rgba(20, 23, 21, 0.02);
    --shadow-premium-md: 0 12px 30px rgba(20, 23, 21, 0.04);
    --shadow-premium-lg: 0 25px 60px rgba(20, 23, 21, 0.06);
    --shadow-premium-hover: 0 35px 80px rgba(20, 23, 21, 0.12);
    
    /* Animation Easing Curves */
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base resets & Clean Canvas */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--color-text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading), 'Playfair Display', 'Poppins', serif;
    color: var(--color-text-main);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Premium micro-dot grid background to eliminate "completely empty white page" feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(20, 23, 21, 0.015) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: -1;
}

a {
    transition: var(--transition-smooth);
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

/* Section Spacing & Alternating Depths */
.section-padding {
    padding: 100px 0;
}

section.bg-white {
    background-color: var(--bg-white) !important;
}

section.bg-light, 
section.section-padding:nth-of-type(even) {
    background-color: var(--bg-linen) !important;
    border-top: 1px solid rgba(20, 23, 21, 0.02);
    border-bottom: 1px solid rgba(20, 23, 21, 0.02);
}

/* ==========================================================
   FLOATING CAPSULE NAVBAR (HEADER)
   ========================================================== */
.site-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1280px;
    z-index: 1000;
    transition: var(--transition-premium);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-premium-md);
    padding: 8px 24px !important;
}

.site-header.scrolled {
    top: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(20, 23, 21, 0.05);
    box-shadow: var(--shadow-premium-lg);
    padding: 6px 24px !important;
}

.navbar {
    padding: 0 !important;
}

.navbar-brand {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 42px;
    object-fit: contain;
}

.logo-text.premium-logo {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.navbar-nav .nav-item {
    margin: 0 4px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body), sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-main) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(var(--primary-color-rgb), 0.04);
}

/* Elegant growing underline */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 12px;
}

/* ==========================================================
   PREMIUM BUTTONS
   ========================================================== */
.btn {
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    padding: 12px 28px;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 15px;
}

/* Primary Premium Button */
.btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.15);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.25);
}

/* Accent Premium Button */
.btn-accent {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.15);
}

.btn-accent:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.25);
}

/* Outline Premium Button */
.btn-outline-primary {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.15);
}

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    background: transparent;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--color-text-main) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================
   HERO COVER SLIDER (KEN BURNS)
   ========================================================== */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider .slide-image {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    transition: transform 10s cubic-bezier(0.1, 0.9, 0.2, 1);
}

/* Ken Burns Zoom Trigger */
.hero-slider .swiper-slide-active .slide-image {
    transform: scale(1.08);
}

.hero-slider .slide-overlay-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,23,21,0.5) 0%, rgba(20,23,21,0.2) 50%, rgba(20,23,21,0.6) 100%);
    z-index: 2;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 100px;
}

.hero-slider .slide-subtitle {
    font-family: var(--font-body), sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slider .slide-title {
    font-family: var(--font-heading), serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero-slider .slide-description {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0;
    max-width: 650px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.hero-slider .slide-actions {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

/* Active transitions */
.hero-slider .swiper-slide-active .slide-title,
.hero-slider .swiper-slide-active .slide-subtitle,
.hero-slider .swiper-slide-active .slide-description,
.hero-slider .swiper-slide-active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Pagination */
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    width: 28px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #ffffff;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

/* ==========================================================
   SECTION HEADERS
   ========================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header::before {
    content: 'Eşsiz & Huzurlu';
    display: block;
    font-family: var(--font-heading), serif;
    font-style: italic;
    color: var(--accent-color);
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.section-header.text-start .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ==========================================================
   INFO CARDS (GLASSMORPHISM & GRIDS)
   ========================================================== */
.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium-sm);
    transition: var(--transition-premium);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-lg);
    border-color: var(--accent-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--primary-color-rgb), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
    color: var(--primary-color);
    font-size: 22px;
}

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

/* ==========================================================
   PREMIUM DYNAMIC BUNGALOW CARDS
   ========================================================== */
.bungalow-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium-md);
    transition: var(--transition-premium);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hover double-border inset style */
.bungalow-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid transparent;
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
    transition: var(--transition-premium);
    z-index: 5;
}

.bungalow-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--accent-color);
}

.bungalow-card:hover::before {
    border-color: rgba(var(--accent-color-rgb), 0.3);
}

.bungalow-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.bungalow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.bungalow-price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-premium-sm);
    z-index: 8;
}

.bungalow-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bungalow-title {
    font-family: var(--font-heading), serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.bungalow-card:hover .bungalow-title {
    color: var(--accent-color);
}

.bungalow-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bungalow-info-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--primary-color-rgb), 0.04);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(var(--primary-color-rgb), 0.02);
}

.bungalow-short-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.bungalow-features-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 13px;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-icon i {
    color: var(--accent-color);
}

/* ==========================================================
   STATS, WHY US, SERVICES & TESTIMONIALS
   ========================================================== */
.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading), serif;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-text-muted);
}

/* Choose Us & Services Cards */
.why-card, .service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium-sm);
    transition: var(--transition-premium);
}

.why-card:hover, .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium-lg);
    border-color: var(--accent-color);
}

/* Testimonial styling */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium-md);
    text-align: center;
    margin: 15px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(var(--primary-color-rgb), 0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--bg-white);
    box-shadow: var(--shadow-premium-sm);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 13px;
    margin: 0 2px;
}

.testimonial-comment {
    font-style: italic;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text-main);
}

/* Newsletter Input Premium styling */
.newsletter-form .form-control {
    border-radius: 30px;
    padding: 14px 24px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-light);
    font-size: 14px;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.1);
}

/* ==========================================================
   DYNAMIC MOVING HERO FOR SUBPAGES
   ========================================================== */
@keyframes ShiftGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(-45deg, var(--primary-color), var(--primary-dark), #26382e, #6e5e40) !important;
    background-size: 400% 400% !important;
    animation: ShiftGradient 18s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-heading), serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 13.5px;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: var(--accent-color) !important;
    font-weight: 700;
}

/* ==========================================================
   BUNGALOW DETAILS PAGE (AIRBNB LUXE STYLE)
   ========================================================== */
.editorial-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-premium-md);
}

.editorial-gallery-grid .main-photo {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.editorial-gallery-grid .main-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition-premium);
}

.editorial-gallery-grid .main-photo:hover img {
    transform: scale(1.04);
}

.editorial-gallery-grid .sub-photos-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 10px;
    height: 100%;
}

.editorial-gallery-grid .sub-photo {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.editorial-gallery-grid .sub-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition-premium);
}

.editorial-gallery-grid .sub-photo:hover img {
    transform: scale(1.04);
}

.editorial-gallery-grid .view-all-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium-md);
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.editorial-gallery-grid .view-all-badge:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.03);
}

/* Detail Info Grid */
.detail-grid-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
    margin-bottom: 35px;
}

.detail-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-premium-sm);
    transition: var(--transition-smooth);
}

.detail-info-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-premium-md);
}

.detail-info-card i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.detail-info-card h6 {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.detail-info-card span {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
}

/* Sticky Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 110px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium-lg);
    padding: 35px;
    transition: var(--transition-premium);
}

.booking-sidebar:hover {
    border-color: var(--accent-color);
}

.price-card {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.price-card .amount {
    font-family: var(--font-heading), serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
}

.breakfast-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--primary-color-rgb), 0.05);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Form inputs on detail page */
.booking-sidebar .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text-main);
    margin-bottom: 6px;
}

.booking-sidebar .form-control,
.booking-sidebar .form-select {
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    background: var(--bg-light);
}

.booking-sidebar .form-control:focus,
.booking-sidebar .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.08);
}

/* Content Blocks */
.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium-sm);
    padding: 35px;
    margin-bottom: 30px;
}

.content-card h3 {
    font-family: var(--font-heading), serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(var(--primary-color-rgb), 0.03);
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    border: 1px solid rgba(var(--primary-color-rgb), 0.01);
}

.features-list .feature-item i {
    color: var(--accent-color);
    font-size: 14px;
}

/* ==========================================================
   REDESIGNED LUXURY FOOTER
   ========================================================== */
.site-footer {
    background-color: var(--bg-linen);
    border-top: 1px solid var(--border-color);
    color: var(--color-text-main);
}

.footer-main {
    padding: 90px 0 60px;
}

.site-footer h5 {
    font-family: var(--font-heading), serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

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

.footer-links li, .footer-contact li {
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-links a {
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

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

.footer-contact li {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-color-rgb), 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-premium);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(var(--primary-color-rgb), 0.15);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    background: rgba(20,23,21,0.01);
}

.footer-bottom p {
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.footer-bottom a {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-left: 20px;
    transition: var(--transition-smooth);
}

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

/* ==========================================================
   FLOATING CONTACT BUTTONS
   ========================================================== */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: var(--transition-premium);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(8deg);
}

.floating-btn.phone {
    background-color: var(--primary-color);
}

.floating-btn.phone:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* ==========================================================
   MOBILE & RESPONSIVE CONSTRAINTS
   ========================================================== */
@media (max-width: 991px) {
    .site-header {
        background: #ffffff;
        padding: 12px 20px !important;
        box-shadow: var(--shadow-premium-md);
        border-radius: 30px;
        top: 15px;
        width: 92%;
    }
    
    .navbar-toggler {
        border: none;
        padding: 4px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-premium-lg);
        border: 1px solid var(--border-color);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        border-radius: 8px;
    }
    
    .navbar-buttons {
        margin-top: 15px;
        flex-direction: column;
        align-items: stretch !important;
        gap: 8px !important;
    }
    
    .navbar-buttons .btn {
        width: 100%;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .editorial-gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .editorial-gallery-grid .sub-photos-grid {
        display: none;
    }
    
    .editorial-gallery-grid .main-photo {
        height: 300px;
    }
    
    .booking-sidebar {
        margin-top: 30px;
        position: static;
    }
    
    .detail-grid-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 80vh;
    }
    
    .hero-slider .slide-title {
        font-size: 32px;
    }
    
    .hero-slider .slide-subtitle {
        font-size: 12px;
    }
    
    .hero-slider .slide-description {
        font-size: 14.5px;
        margin-bottom: 25px;
    }
    
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

/* ==========================================================
   PREMIUM BOOTSTRAP ACCORDION (FAQ)
   ========================================================== */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: var(--shadow-premium-sm);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--accent-color) !important;
    box-shadow: var(--shadow-premium-md);
}

.accordion-button {
    font-family: var(--font-body), sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--color-text-main) !important;
    background: transparent !important;
    padding: 20px 24px;
    border: none;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: rgba(var(--primary-color-rgb), 0.03) !important;
    border-bottom: 1px solid var(--border-color);
}

.accordion-body {
    padding: 22px 24px;
    color: var(--color-text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    background: var(--bg-white);
}

.accordion-button::after {
    filter: grayscale(1) invert(0.2);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

/* ==========================================================
   GENERAL PREMIUM FORM CONTROLS & FLOATING LABELS
   ========================================================== */
.form-control, 
.form-select {
    font-family: var(--font-body), sans-serif;
    background-color: var(--bg-light) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 12px 18px;
    font-size: 14.5px;
    color: var(--color-text-main) !important;
    transition: var(--transition-smooth);
}

.form-control:focus, 
.form-select:focus {
    background-color: var(--bg-white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.08) !important;
}

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

/* Form floating label adjustments */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    font-weight: 600;
}

.form-floating > label {
    padding: 12px 18px;
    color: var(--color-text-light);
    font-size: 14px;
}

/* ==========================================================
   CALENDAR WIDGET & RESERVATION MODAL STYLING
   ========================================================== */
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cal-header span {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-main);
}

.cal-header button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cal-header button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.day-name {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 4px 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.cal-day.empty {
    background: transparent;
}

.cal-day.past {
    background: rgba(20,23,21,0.03);
    color: var(--color-text-light);
    opacity: 0.5;
}

.cal-day.today {
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.legend-dot.available {
    background: #28a745;
}

.legend-dot.past {
    background: #dee2e6;
}

/* Pricing selector and concepts */
.pricing-selector {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 20px 0;
}

.selector-group {
    margin-bottom: 15px;
}

.selector-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.person-options, .concept-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.person-option, .concept-option {
    flex: 1;
    min-width: 70px;
    text-align: center;
    padding: 10px;
    background: var(--bg-light);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.person-option input, .concept-option input {
    display: none;
}

.person-option.active, .concept-option.active {
    border-color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.05);
    color: var(--primary-color);
    font-weight: 700;
}

.selected-price-display {
    background: rgba(var(--primary-color-rgb), 0.03);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-price-display strong {
    color: var(--primary-color);
    font-size: 14.5px;
}

/* Share & Similar cards styling */
.share-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.share-card span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.share-buttons {
    display: flex;
    gap: 6px;
}

.share-buttons button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.share-buttons button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.08);
}

.similar-section {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.similar-section h2 {
    font-family: var(--font-heading), serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.similar-card {
    display: block;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-premium-sm);
    transition: var(--transition-premium);
}

.similar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium-md);
    border-color: var(--accent-color);
}

.similar-card .card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.similar-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.similar-card:hover .card-image img {
    transform: scale(1.06);
}

.similar-card .card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.similar-card .card-content {
    padding: 15px;
}

.similar-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

/* Modal Styling */
.reservation-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium-lg);
}

.reservation-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 25px;
    border: none;
}

.reservation-modal .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.package-summary {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.package-summary h6 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.summary-item {
    padding: 8px;
    background: var(--bg-white);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.summary-item small {
    display: block;
    font-size: 10px;
    color: var(--color-text-light);
}

.summary-item strong {
    font-size: 13px;
    color: var(--primary-color);
}

.total-calculation {
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-top: 15px;
}

.calc-detail {
    font-size: 13px;
    color: var(--color-text-muted);
}

.calc-total {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.calc-total strong {
    font-size: 20px;
    font-weight: 800;
}