@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Outfit:wght@300;400;500;600&family=Space+Grotesk:wght@500;700&display=swap');
:root {
  /* Background Colors */
  --bg-primary: #0B132B;       /* Deep Midnight Blue - Main website background */
  --bg-secondary: #1C2541;     /* Dark Cosmic Blue - Cards, modals, feature sections */
  --bg-surface: #25325A;       /* Elevated Surface - Inputs, hover states on dark cards */
  --bg-light: #F8F9FA;         /* Optional light background section if needed */
  --bg-glass: rgba(28, 37, 65, 0.6); /* Translucent Glassmorphism Base */
  /* Accent Colors */
  --accent-gold: #F4A261;      /* Warm Ambient Gold - Primary CTAs, highlights, badges */
  /* --accent-blue: #7cb9ff; */
  --accent-gold-hover: #E76F51;/* Darker warm gold/terracotta for button hover states */
  --accent-cyan: #4EA8DE;      /* Cyan Electric Glow - Secondary accents, LED-style glows */
  --accent-cyan-glow: rgba(78, 168, 222, 0.25); /* Subtle glow effect for borders/shadows */
  /* Text & Typography Colors */
  --text-primary: #F8F9FA;     /* Crisp Off-White - Headings & main body text */
  --text-secondary: #8D99AE;   /* Light Steel Gray - Subtitles, metadata, captions */
  --text-muted: #5C677D;       /* Muted Gray - Disabled states, footer copyright */
  --text-on-accent: #0B132B;   /* Dark Navy - Text inside Gold CTA buttons */
  /* Typography Stacks */
  --font-editorial: 'Bodoni Moda', serif;
  --font-tech: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  /* Border & Divider Colors */
  --border-subtle: rgba(255, 255, 255, 0.1); /* Low contrast dividers */
  --border-accent: #4EA8DE;                  /* Cyan borders for active/highlighted elements */
  /* Layout & Geometry */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Box Shadows & Glow Effects */
  --glow-ambient-gold: 0 4px 20px rgba(244, 162, 97, 0.3);
  --glow-electric-cyan: 0 0 15px rgba(78, 168, 222, 0.4);
}
/* 2. RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* 3. TYPOGRAPHY SYSTEM */
h1, h2, h3, .font-editorial {
  font-family: var(--font-editorial);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-primary);
}
.hero-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-style: italic;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "wght" 500;
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  font-variation-settings: "opsz" 36, "wght" 500;
  margin-bottom: 1rem;
}
.tech-tag {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  display: inline-block;
  margin-bottom: 0.75rem;
}
p {
  color: var(--text-secondary);
  max-width: 65ch;
  margin-bottom: 1.25rem;
}
/* 4. LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}
/* 5. COMPONENTS & INTERACTIVE ELEMENTS // Glassmorphism Cards */
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.card-glass:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-electric-cyan);
}
/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--accent-gold);
  color: var(--text-on-accent);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--glow-ambient-gold);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #FFF;
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(231, 111, 81, 0.4);
}
/* Secondary Ghost Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background-color: rgba(78, 168, 222, 0.05);
}
/* Form Controls */
.form-input {
  width: 100%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan-glow);
}
/* 6. UTILITIES */
.text-gold { color: var(--accent-gold); }
.text-cyan { color: var(--accent-cyan); }
.glow-accent { box-shadow: var(--glow-electric-cyan); }
/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}
.fade-up.show,
.fade-down.show,
.fade-left.show,
.fade-right.show,
.fade.show {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
.zoom {
  overflow: hidden;
  border-radius: 12px;
}
.zoom img {
  transition: transform 1s ease;
}
.zoom:hover img {
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-down, .fade-left, .fade-right, .fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* TOP BAR STYLES */
.top-bar {
  background-color: rgba(11, 19, 43, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-tech);
  font-size: 0.825rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.top-bar-location,
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.top-bar-item i {
  color: var(--accent-gold);
  font-size: 0.85rem;
  transition: transform var(--transition-fast);
}
a.top-bar-item:hover {
  color: var(--text-primary);
}
a.top-bar-item:hover i {
  color: var(--accent-cyan);
  transform: translateY(-1px);
}
.top-bar-divider {
  width: 1px;
  height: 12px;
  background-color: var(--border-subtle);
  display: inline-block;
}
@media (max-width: 640px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }
  .top-bar-location, 
  .top-bar-contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* NAVBAR  */
.navbar-luxury {
  background-color: rgba(11, 19, 43, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  transition: all var(--transition-smooth);
  z-index: 1030;
}
.navbar-brand img {
  max-width: 130px;
  height: auto;
  transition: height var(--transition-smooth);
}
.navbar-luxury .nav-link {
  font-family: var(--font-tech);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-fast);
}
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
  color: var(--accent-gold);
}
.navbar-luxury .navbar-toggler {
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.75rem;
}
.navbar-luxury .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 249, 250, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-luxury.scrolled {
  background-color: rgba(11, 19, 43, 0.95);
  border-bottom: 1px solid rgba(78, 168, 222, 0.2);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar-luxury.scrolled .navbar-brand img {
  height: 38px;
}
.lang-flag {
  width: 20px;
  height: auto;
  margin-right: 6px;
  border-radius: 2px;
}
.navbar-luxury .dropdown-menu {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  box-shadow: var(--glow-electric-cyan);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}
.navbar-luxury .dropdown-item {
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}
.navbar-luxury .dropdown-item:hover,
.navbar-luxury .dropdown-item.active {
  background-color: var(--bg-surface);
  color: var(--accent-gold);
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--accent-gold);
  color: var(--text-on-accent);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--glow-ambient-gold);
  transition: all var(--transition-fast);
}
.btn-book-main {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-book-offer {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(11, 19, 43, 0.2);
  text-align: left;
}
.btn-book-offer strong {
  font-size: 0.75rem;
  color: #000;
}
.btn-book-offer small {
  font-size: 0.65rem;
  opacity: 0.8;
}
.btn-book:hover {
  background-color: var(--accent-gold);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(231, 111, 81, 0.4);
}
.btn-book:hover .btn-book-offer strong {
  color: #FFF;
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background-color: var(--bg-primary);
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 7s ease-out;
}
.hero-carousel .carousel-item.active .slide-bg {
  transform: scale(1);
}
.hero-carousel .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 43, 0.4) 0%,
    rgba(11, 19, 43, 0.75) 70%,
    var(--bg-primary) 100%
  );
  z-index: 1;
}
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 5%;
  opacity: 1;
  z-index: 10;
}
.carousel-control-icon-wrapper {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.carousel-control-prev:hover .carousel-control-icon-wrapper,
.carousel-control-next:hover .carousel-control-icon-wrapper {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--glow-electric-cyan);
}
.hero-carousel .carousel-indicators {
  bottom: 2rem;
  margin-bottom: 0;
  gap: 0.5rem;
  z-index: 10;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  opacity: 1;
  transition: all var(--transition-fast);
}
.hero-carousel .carousel-indicators .active {
  background-color: var(--accent-gold);
  width: 32px;
  box-shadow: var(--glow-ambient-gold);
}
.hero-carousel .carousel-item:not(.active) [class*="fade-"],
.hero-carousel .carousel-item:not(.active) .zoom-in {
  opacity: 0;
  animation: none !important;
}
.hero-carousel .carousel-item.active .fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-carousel .carousel-item.active .fade-down {
  animation: fadeDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-carousel .carousel-item.active .fade-left {
  animation: fadeLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-carousel .carousel-item.active .fade-right {
  animation: fadeRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-carousel .carousel-item.active .fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-carousel .carousel-item.active .zoom-in {
  animation: zoomIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@media (max-width: 768px) {
  .hero-carousel {
    height: 80vh;
  }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }
}

/* ABOUT SECTION STYLES */
.about-section {
  position: relative;
  background-color: var(--bg-primary);
  overflow: hidden;
}
.about-image-wrapper {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.about-img-primary-frame {
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.5rem);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  box-shadow: var(--glow-electric-cyan);
  border-color: var(--border-accent);
  z-index: 3;
}
.about-badge i {
  font-size: 1.75rem;
}
.about-badge-text {
  display: flex;
  flex-direction: column;
}
.about-badge-text strong {
  font-family: var(--font-tech);
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.2;
}
.about-badge-text small {
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-lead {
  font-size: 1.125rem;
  color: var(--text-primary);
  line-height: 1.7;
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature-item .feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}
.about-feature-item:hover .feature-icon {
  background-color: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: var(--glow-electric-cyan);
  transform: translateY(-2px);
}
.about-feature-item h5 {
  font-family: var(--font-tech);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.about-feature-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .about-image-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 2rem;
  }
  .about-badge {
    position: relative;
    margin-top: -2rem;
    margin-left: auto;
    width: fit-content;
  }
}

/* FACILITIES / AMENITIES SECTION STYLES */
.facilities-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.max-w-2xl {
  max-width: 42rem;
}
.section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}
.card-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.facility-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background-color 0.4s ease;
}
.facility-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35),
              0 0 20px rgba(255, 255, 255, 0.05);
}
.facility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.4s ease;
}
.facility-icon i.text-gold {
  color: #ffc107;
}
.facility-card:hover .facility-icon {
  background: #ffffff;
  color: #0b0f19;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.facility-card:hover .facility-icon i.text-gold {
  color: #d4a017;
}
.facility-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.facility-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ACCOMMODATION / VILLA CAROUSEL STYLES */
.accommodation-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.card-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.room-card {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background-color 0.4s ease;
}
.room-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35),
              0 0 20px rgba(255, 255, 255, 0.05);
}
.room-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img {
  transform: scale(1.05);
}
.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffc107;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 193, 7, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.room-badge i {
  margin-right: 5px;
}
.room-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.room-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.room-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.room-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}
.room-specs span {
  display: inline-flex;
  align-items: center;
}
.room-specs i {
  color: #ffc107;
  margin-right: 6px;
}
.room-card .btn-primary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: #ffffff;
  color: #0b0f19;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.room-card .btn-primary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}
.accommodation-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.accommodation-carousel .owl-nav button.owl-prev,
.accommodation-carousel .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
  margin: 0 !important;
}
.accommodation-carousel .owl-nav button:hover {
  background: #ffffff !important;
  color: #0b0f19 !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.accommodation-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.accommodation-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}
.accommodation-carousel .owl-dot.active span {
  width: 28px;
  background: #ffffff !important;
  border-radius: 10px;
}

/* SERVICES SECTION STYLES */
.services-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.service-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35),
              0 0 20px rgba(255, 255, 255, 0.05);
}
.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img {
  transform: scale(1.05);
}
.service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffc107;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.service-badge i {
  margin-right: 5px;
}
.service-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-highlights {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.service-highlights li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.service-highlights li i {
  color: #ffc107;
  margin-right: 8px;
  font-size: 0.8rem;
}

/* Magas RESTAURANT SECTION STYLES */
.restaurant-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.restaurant-image-wrapper {
  position: relative;
}
.restaurant-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.restaurant-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.restaurant-image-wrapper:hover .restaurant-img-main {
  transform: scale(1.03);
}
.restaurant-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.restaurant-badge i {
  font-size: 1.5rem;
}
.restaurant-badge-text {
  display: flex;
  flex-direction: column;
}
.restaurant-badge-text strong {
  color: #ffffff;
  font-size: 0.95rem;
}
.restaurant-badge-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.restaurant-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
}
.restaurant-highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.restaurant-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.highlight-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1.2rem;
}
.restaurant-highlight-item h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.restaurant-highlight-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.restaurant-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* GALLERY CAROUSEL SECTION STYLES */
.gallery-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.gallery-item {
  padding: 0 !important;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}
.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
}
.gallery-carousel .owl-nav button:hover {
  background: #ffffff !important;
  color: #0b0f19 !important;
  border-color: #ffffff !important;
  transform: scale(1.05);
}
.gallery-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.gallery-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}
.gallery-carousel .owl-dot.active span {
  width: 24px;
  background: #ffffff !important;
  border-radius: 10px;
}

/* TESTIMONIALS SECTION STYLES */
.testimonials-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.testimonial-card {
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}
.testimonial-stars i {
  color: #ffc107;
  font-size: 0.95rem;
  margin-right: 2px;
}
.testimonial-quote {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1rem;
}
.author-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}
.author-stay {
  font-size: 0.82rem;
}
.testimonials-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
}
.testimonials-carousel .owl-nav button:hover {
  background: #ffffff !important;
  color: #0b0f19 !important;
  border-color: #ffffff !important;
  transform: scale(1.05);
}
.testimonials-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.testimonials-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}
.testimonials-carousel .owl-dot.active span {
  width: 24px;
  background: #ffffff !important;
  border-radius: 10px;
}

/* CALL TO ACTION (CTA) SECTION STYLES */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  z-index: 2;
  color: #ffffff;
}
.cta-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 25, 0.92) 0%,
    rgba(11, 15, 25, 0.78) 50%,
    rgba(11, 15, 25, 0.92) 100%
  );
}
.cta-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 2.5rem;
}
.cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.cta-buttons .btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
}

/* FOOTER STYLES */
.footer-section {
    background-color: #0b0f19;
    color: #a0aec0;
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}
.footer-brand {
    display: inline-block;
}
.footer-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}
.footer-about {
    color: #cbd5e1;
    line-height: 1.6;
    margin-top: 1rem;
}
.footer-text {
    font-size: 0.875rem;
    color: #94a3b8;
}
.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background-color: #d4af37;
    border-radius: 2px;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a i {
    font-size: 0.75rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}
.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.footer-links a:hover i {
    transform: translateX(2px);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-contact i {
    margin-top: 0.25rem;
    font-size: 1rem;
}
.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: #ffffff;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background-color: #d4af37;
    color: #0b0f19;
    border-color: #d4af37;
    transform: translateY(-3px);
}
.footer-section iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 12px;
    filter: grayscale(20%) contrast(1.1);
}
.footer-bottom {
    font-size: 0.875rem;
    color: #64748b;
}
.copyright-text {
    color: #94a3b8;
}
.designer-logo {
    height: 20px;
    width: auto;
    margin-left: 0.3rem;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}
.designer-logo:hover {
    opacity: 0.8;
}

/* PAGE HERO STYLES & BACKGROUND VARIATIONS */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-no-repeat;
  overflow: hidden;
  z-index: 2;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.85) 0%,
    rgba(11, 15, 25, 0.65) 50%,
    rgba(11, 15, 25, 0.95) 100%
  );
}
.page-hero-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-hero .breadcrumb-item a:hover {
  color: #ffffff;
}
.page-hero .breadcrumb-item.active {
  color: #ffc107;
  font-weight: 500;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}
.hero-bg-about {
  background-image: url('image/about-bg.jpeg');
}
.hero-bg-villas {
  background-image: url('image/villas-bg.jpg');
}
.hero-bg-restaurant {
  background-image: url('../image/hero-2.jpeg');
}
.hero-bg-gallery {
  background-image: url('image/gallery-bg.jpeg');
}
.hero-bg-contact {
  background-image: url('image/contact-bg.jpg');
}

/* VILLAS LIST SECTION STYLES */
.villas-section {
  position: relative;
  padding: 5rem 0;
  z-index: 2;
}
.villa-title {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.villa-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7) !important;
}
.villa-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.villa-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.villa-img-item {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.villa-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.villa-carousel .owl-nav {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.villa-carousel .owl-nav button.owl-prev,
.villa-carousel .owl-nav button.owl-next {
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  background: rgba(11, 15, 25, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
}
.villa-carousel .owl-nav button:hover {
  background: #ffffff !important;
  color: #0b0f19 !important;
}
.villa-carousel .owl-dots {
  position: absolute;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.villa-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) !important;
  transition: all 0.3s ease !important;
}
.villa-carousel .owl-dot.active span {
  width: 20px;
  background: #ffffff !important;
  border-radius: 10px;
}

/* Magas Bubble Houses - Gallery Section Styles */
.gallery-page-section {
    padding: 80px 0;
    background-color: #0d1117;
    color: #f0f6fc;
}
.gallery-page-header {
    margin-bottom: 50px;
}
.gallery-page-header .hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #58a6ff;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.gallery-page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.gallery-page-header p {
    font-size: 1.125rem;
    color: #8b949e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    background-color: #161b22;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(88, 166, 255, 0.15);
}
.gallery-item a.zoom {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.gallery-item a.zoom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0) 0%, rgba(13, 17, 23, 0.6) 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.gallery-item a.zoom::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    font-size: 1.25rem;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(88, 166, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.gallery-item:hover a.zoom::before {
    opacity: 1;
}
.gallery-item:hover a.zoom::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 991px) {
    .gallery-page-header h1 {
        font-size: 2.25rem;
    }
    .gallery-item img {
        height: 240px;
    }
}
@media (max-width: 575px) {
    .gallery-page-section {
        padding: 50px 0;
    }
    .gallery-page-header h1 {
        font-size: 1.85rem;
    }
    .gallery-item img {
        height: 220px;
    }
}

/* Magas Bubble Houses - Contact Section Styles */
.contact-page-section {
    padding: 80px 0;
    background-color: #0d1117;
    color: #f0f6fc;
}
.contact-page-header {
    margin-bottom: 50px;
}
.contact-page-header .hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #58a6ff;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-page-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.contact-page-header p {
    font-size: 1.125rem;
    color: #8b949e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.contact-info-card {
    background-color: #161b22;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}
.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.contact-card-desc {
    color: #8b949e;
    font-size: 0.975rem;
    margin-bottom: 30px;
    line-height: 1.5;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.info-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(88, 166, 255, 0.1);
    color: #58a6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-content h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b949e;
    margin-bottom: 4px;
    font-weight: 600;
}
.info-content p, 
.info-content p a {
    color: #f0f6fc;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-content p a:hover {
    color: #58a6ff;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    filter: opacity(0.9) contrast(1.05);
    transition: filter 0.3s ease;
}
.map-container:hover iframe {
    filter: opacity(1) contrast(1);
}
@media (max-width: 991px) {
    .contact-info-card {
        padding: 30px;
    }
    .map-container {
        min-height: 320px;
    }
}
@media (max-width: 575px) {
    .contact-page-section {
        padding: 50px 0;
    }
    .contact-page-header h2 {
        font-size: 1.85rem;
    }
    .contact-info-card {
        padding: 24px;
    }
}

/* Magas Restaurant - About Section (3-Column Layout) */
.about-restaurant-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
}
.about-media-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    height: 440px;
}
.about-video,
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth);
}
.about-media-wrapper:hover .about-video,
.about-media-wrapper:hover .about-img {
    transform: scale(1.05);
}
.badge-floating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--glow-electric-cyan);
    z-index: 2;
}
.badge-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
}
.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.badge-text strong {
    /* color: var(--accent-gold); */
    font-family: var(--font-tech);
    font-size: 1rem;
    font-weight: 700;
}
.badge-text span {
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.info-highlight-title {
    font-family: var(--font-tech);
    color: var(--accent-cyan);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.info-highlight-title i {
    font-size: 0.9rem;
    color: var(--accent-gold);
}
.about-cta-group .btn-primary {
    width: 100%;
}
@media (max-width: 991px) {
    .about-media-wrapper {
        height: 350px;
    }
}
@media (max-width: 575px) {
    .about-media-wrapper {
        height: 280px;
    }
}

/* Why Our Restaurant */
.why-restaurant-section {
    background-color: var(--bg-primary);
    position: relative;
}
.card-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
}
.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}
.feature-card:hover .card-img-top {
    transform: scale(1.08);
}
.feature-icon-badge {
    position: absolute;
    bottom: 0px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-electric-cyan);
    z-index: 2;
    transition: all var(--transition-fast);
}
.feature-icon-badge i {
    font-size: 1.15rem;
    color: var(--accent-gold);
    transition: color var(--transition-fast);
}
.feature-card:hover .feature-icon-badge {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-ambient-gold);
}
.feature-card:hover .feature-icon-badge i {
    color: var(--text-on-accent);
}
.feature-title {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.feature-card .text-secondary {
    color: var(--text-secondary) !important;
    line-height: 1.5;
}
.border-accent-glow {
    border: 1px solid var(--border-accent) !important;
    box-shadow: var(--glow-electric-cyan);
}
.magas-garden-banner .btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

/* Restaurant Gallery Section  */
.restaurant-gallery-section {
    background-color: var(--bg-primary);
    position: relative;
}
.gallery-carousel .gallery-item {
    padding: 0 !important;
    height: 100%;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.gallery-carousel .gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--glow-electric-cyan);
}
.gallery-media-wrapper {
    position: relative;
    height: 380px;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-surface);
}
.gallery-img,
.gallery-video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}
.gallery-item:hover .gallery-img,
.gallery-item:hover .gallery-video {
    transform: scale(1.06);
}
.gallery-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--accent-gold);
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--glow-electric-cyan);
    z-index: 2;
    pointer-events: none;
}
.gallery-carousel .owl-stage-outer {
    padding: 10px 0;
}
.gallery-carousel .owl-dots {
    margin-top: 2rem !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.gallery-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-full) !important;
    transition: all var(--transition-fast) !important;
}
.gallery-carousel .owl-dot.active span,
.gallery-carousel .owl-dot:hover span {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: var(--glow-ambient-gold);
    width: 28px !important;
}
@media (max-width: 991px) {
    .gallery-media-wrapper {
        height: 320px;
    }
}
@media (max-width: 575px) {
    .gallery-media-wrapper {
        height: 280px;
    }
}

/* Restaurant Menu Section Styles */
.restaurant-menu-section {
    background-color: var(--bg-primary);
    position: relative;
}
.menu-tabs {
    gap: 10px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}
.menu-tabs .nav-link {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-tech);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}
.menu-tabs .nav-link:hover {
    color: var(--text-primary);
    border-color: var(--border-accent);
}
.menu-tabs .nav-link.active {
    background: var(--accent-gold);
    color: var(--text-on-accent);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-ambient-gold);
}
.menu-category-title {
    font-family: var(--font-tech);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px dashed var(--border-subtle);
    padding-bottom: 10px;
}
.drink-subgroup {
    font-family: var(--font-tech);
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
}
.menu-item {
    margin-bottom: 1rem;
}
.menu-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.menu-item-name {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}
.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--border-subtle);
    margin: 0 12px;
    opacity: 0.6;
}
.menu-item-price {
    font-family: var(--font-tech);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1rem;
    white-space: nowrap;
}
.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
    margin-bottom: 0;
    line-height: 1.4;
}
.badge-traditional {
    background: rgba(212, 160, 23, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--border-accent);
    font-size: 0.7rem;
    font-family: var(--font-tech);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    vertical-align: middle;
}
.text-accent {
    color: var(--accent-gold);
}