/* ============================================
   MERAKPA RESORT - PRO LEVEL STYLESHEET
   Luxury Mountain Theme | Premium Design
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Luxury Theme */
:root {
  /* Primary Colors - Deep Forest */
  --color-primary: #0f4c3a;
  --color-primary-dark: #0a3528;
  --color-primary-light: #1a6b52;
  
  /* Secondary Colors - Luxury Gold */
  --color-gold: #d4a853;
  --color-gold-dark: #b8923d;
  --color-gold-light: #e8c77b;
  
  /* Accent Colors */
  --color-accent: #8b7355;
  --color-accent-light: #a89070;
  
  /* Neutrals */
  --color-dark: #0d0d0d;
  --color-text: #333333;
  --color-text-light: #6b6b6b;
  --color-text-muted: #999999;
  --color-light: #f7f7f5;
  --color-white: #ffffff;
  --color-cream: #faf8f5;
  --color-border: #e8e6e3;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 80px rgba(0,0,0,0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Prevent zoom on input focus in iOS */
@media screen and (max-width: 767px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ============================================
   TYPOGRAPHY - LUXURY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 1000px;
}

.section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.section-sm {
  padding: var(--spacing-xl) 0;
}

/* Section Headers - Luxury Style */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.section-subtitle::before {
  right: calc(100% + 15px);
}

.section-subtitle::after {
  left: calc(100% + 15px);
}

.section-title {
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Decorative Elements */
.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--spacing-md) auto;
}

.divider-left {
  margin: var(--spacing-md) 0;
}

/* ============================================
   BUTTONS - PREMIUM
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 76, 58, 0.3);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

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

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

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

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

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 1.125rem 2.75rem;
  font-size: 0.875rem;
}

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

/* ============================================
   HEADER - LUXURY
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-normal);
  padding: 0.5rem 0;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
  opacity: 1;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.header.scrolled::before {
  opacity: 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
  padding: 0;
}

.header.scrolled .nav-link {
  color: var(--color-text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--color-primary);
}

.header.scrolled .logo-text {
  color: var(--color-primary);
}

.header.scrolled .hamburger span {
  background: var(--color-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 1001;
}

.logo-img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition-normal);
}

.header.scrolled .logo-img {
  filter: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-white);
  transition: var(--transition-normal);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-cta {
  margin-left: 1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--color-white);
  transition: var(--transition-normal);
  border-radius: 2px;
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -15px 0 50px rgba(0,0,0,0.4);
    overflow-y: auto;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu::before {
    content: 'MENU';
    position: absolute;
    top: 40px;
    left: 2rem;
    font-size: 0.6875rem;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 600;
    font-family: var(--font-body);
  }
  
  .nav-link {
    font-size: 1.0625rem;
    color: var(--color-white) !important;
    padding: 1.125rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .nav-link::before {
    display: none !important;
  }
  
  .nav-link::after {
    content: '→';
    opacity: 0.4;
    transform: translateX(0);
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--color-gold) !important;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    opacity: 1;
    transform: translateX(5px);
    color: var(--color-gold);
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 2rem;
    width: 100%;
  }
  
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .header.scrolled .hamburger span {
    background: var(--color-dark);
  }
  
  .header.scrolled .hamburger.active span {
    background: var(--color-white);
  }
  
  /* Body scroll lock when menu open */
  body.menu-open {
    overflow: hidden;
  }
}

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

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(5, 35, 25, 0.9) 0%, 
    rgba(10, 53, 40, 0.8) 50%,
    rgba(5, 35, 25, 0.85) 100%
  );
  z-index: -1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-md);
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: rgba(212, 168, 83, 0.25);
  border: 2px solid rgba(212, 168, 83, 0.6);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease 0.2s both;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.4), 0 8px 40px rgba(0,0,0,0.6);
}

.hero-title span {
  color: var(--color-gold);
  display: block;
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 1px 1px 15px rgba(0,0,0,0.7);
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.8s both;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.5);
}

.hero-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}

/* Slider Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
}

.hero-arrow-prev {
  left: 40px;
}

.hero-arrow-next {
  right: 40px;
}

@media (max-width: 991px) {
  .hero-arrow {
    width: 45px;
    height: 45px;
  }
  
  .hero-arrow-prev {
    left: 15px;
  }
  
  .hero-arrow-next {
    right: 15px;
  }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceDown 2s infinite;
  z-index: 10;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  opacity: 0.7;
  font-size: 0.6875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition-fast);
}

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

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

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

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

/* Hero for Inner Pages */
.hero-inner {
  min-height: 60vh;
  padding-top: 120px;
}

.hero-inner .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-inner .hero-slide img {
  animation: none;
}

/* ============================================
   ABOUT SECTION - PREMIUM
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.about-img:hover::after {
  opacity: 1;
}

.about-img:first-child {
  grid-column: span 2;
}

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

.about-img:hover img {
  transform: scale(1.08);
}

/* Floating Badge */
.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: var(--spacing-md);
}

.about-content .section-subtitle {
  text-align: left;
}

.about-content .section-subtitle::before {
  display: none;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
}

.about-feature-text {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-dark);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .about-content {
    padding-left: 0;
    text-align: center;
  }
  
  .about-content .section-subtitle,
  .about-content .section-title {
    text-align: center;
  }
  
  .about-content .section-subtitle::after {
    display: block;
  }
  
  .about-features {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-badge {
    bottom: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
  }
  
  .about-badge-number {
    font-size: 1.75rem;
  }
  
  .about-badge-text {
    font-size: 0.5625rem;
  }
}

/* ============================================
   ROOMS/TARIFF SECTION - LUXURY
   ============================================ */
.rooms-section {
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.rooms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230f4c3a' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 1;
}

.rooms-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
}

.rooms-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.room-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}

.room-img.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.room-img:hover img {
  transform: scale(1.08);
}

.room-details {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.room-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: var(--spacing-sm);
}

.room-price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.room-price-period {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.room-category {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-dark);
}

.room-note {
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.05));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.room-amenities {
  margin-bottom: var(--spacing-md);
}

.room-amenities h4 {
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.amenity-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.room-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 991px) {
  .rooms-showcase {
    grid-template-columns: 1fr;
  }
  
  .room-details {
    order: -1;
  }
}

/* ============================================
   FACILITIES SECTION - PREMIUM
   ============================================ */
.facilities-section {
  background: var(--color-white);
}

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

.facility-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.facility-card:hover::before {
  transform: scaleX(1);
}

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

.facility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(15, 76, 58, 0.3);
  transition: var(--transition-normal);
}

.facility-card:hover .facility-icon {
  transform: scale(1.1) rotate(5deg);
}

.facility-icon svg {
  width: 30px;
  height: 30px;
}

.facility-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

@media (max-width: 991px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .facility-card {
    padding: var(--spacing-sm);
  }
  
  .facility-icon {
    width: 55px;
    height: 55px;
  }
  
  .facility-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   GALLERY SECTION - LUXURY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 58, 0) 0%, rgba(15, 76, 58, 0.5) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

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

.gallery-overlay svg {
  width: 45px;
  height: 45px;
  color: var(--color-white);
  background: rgba(212, 168, 83, 0.9);
  padding: 12px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--color-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  opacity: 1;
  background: var(--color-gold);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* ============================================
   MAP SECTION - PREMIUM
   ============================================ */
.map-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
}

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

.map-info .section-subtitle {
  color: var(--color-gold-light);
}

.map-info .section-subtitle::before,
.map-info .section-subtitle::after {
  background: var(--color-gold-light);
}

.map-info .section-title {
  color: var(--color-white);
}

.map-address {
  margin-bottom: var(--spacing-md);
}

.map-address-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.map-address-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-address-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
}

.map-address-text {
  padding-top: 0.625rem;
  line-height: 1.7;
}

.map-address-text a {
  color: var(--color-white);
  opacity: 0.9;
}

.map-address-text a:hover {
  color: var(--color-gold-light);
  opacity: 1;
}

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255,255,255,0.1);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 991px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }
  
  .map-info {
    text-align: center;
  }
  
  .map-info .section-subtitle::before,
  .map-info .section-subtitle::after {
    display: block;
  }
  
  .map-address {
    display: inline-block;
    text-align: left;
  }
}

/* ============================================
   CONTACT SECTION - PREMIUM
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-info {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-info .section-subtitle {
  color: var(--color-gold-light);
}

.contact-info .section-subtitle::before,
.contact-info .section-subtitle::after {
  background: var(--color-gold-light);
}

.contact-info .section-title {
  color: var(--color-white);
}

.contact-list {
  margin-top: var(--spacing-md);
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.contact-text {
  padding-top: 0.25rem;
}

.contact-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
}

.contact-value a {
  color: var(--color-white);
}

.contact-value a:hover {
  color: var(--color-gold-light);
}

.contact-social {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.contact-social h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--color-gold);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.contact-form-wrapper .section-subtitle,
.contact-form-wrapper .section-title {
  text-align: left;
}

.contact-form-wrapper .section-subtitle::before {
  display: none;
}

.contact-form {
  margin-top: var(--spacing-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--color-dark);
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--color-light);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(15, 76, 58, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 575px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA SECTION - LUXURY
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--spacing-xl) 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section > .container {
  position: relative;
}

.cta-title {
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

/* ============================================
   FOOTER - PREMIUM
   ============================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: var(--spacing-2xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary), var(--color-gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.footer-logo img {
  height: 55px;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.875rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.125rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-credit {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  margin: 0;
}

.footer-credit a {
  color: var(--color-gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: var(--color-gold-light);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* About Page */
.about-story {
  background: var(--color-light);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-img:first-child {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* Dirang Section */
.dirang-section {
  position: relative;
  overflow: hidden;
}

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

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

.dirang-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 76, 58, 0.95) 0%, rgba(15, 76, 58, 0.85) 50%, rgba(15, 76, 58, 0.6) 100%);
}

.dirang-content {
  max-width: 650px;
  color: var(--color-white);
  padding: var(--spacing-2xl) 0;
}

.dirang-content .section-subtitle {
  color: var(--color-gold-light);
}

.dirang-content .section-subtitle::before,
.dirang-content .section-subtitle::after {
  background: var(--color-gold-light);
}

.dirang-content .section-title {
  color: var(--color-white);
}

.dirang-content p {
  opacity: 0.95;
  font-size: 1.0625rem;
  line-height: 1.9;
}

.dirang-attractions {
  margin-top: var(--spacing-md);
}

.dirang-attractions h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.attractions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.attractions-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}

.attractions-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

/* Rooms Page */
.room-full-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.room-info-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 120px;
}

.room-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.room-image-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.room-image-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.room-image-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .room-full-details {
    grid-template-columns: 1fr;
  }
  
  .room-info-card {
    position: static;
  }
}

/* Gallery Page Full */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Facilities Page */
.facilities-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.facility-page-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
}

.facility-page-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.facility-page-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(15, 76, 58, 0.3);
}

.facility-page-icon svg {
  width: 40px;
  height: 40px;
}

.facility-page-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.facility-page-desc {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .facilities-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .facilities-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-in"].aos-animate {
  opacity: 1;
}

/* ============================================
   MOBILE RESPONSIVE - PRO LEVEL
   ============================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  }
  
  .footer-grid {
    gap: var(--spacing-lg);
  }
}

/* Tablets */
@media (max-width: 991px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--spacing-lg);
  }
  
  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 25px;
  }
  
  /* Hero Tablet */
  .hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
  }
  
  .hero-title span {
    font-size: 0.4em;
    letter-spacing: 4px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .hero-arrow {
    width: 50px;
    height: 50px;
  }
  
  .hero-arrow-prev {
    left: 15px;
  }
  
  .hero-arrow-next {
    right: 15px;
  }
  
  .hero-dots {
    bottom: 90px;
  }
  
  /* Grids Tablet */
  .about-grid,
  .rooms-showcase,
  .contact-wrapper,
  .map-wrapper,
  .room-full-details {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .about-content,
  .map-info {
    text-align: center;
    padding: 0;
  }
  
  .about-content .section-subtitle::before,
  .about-content .section-subtitle::after,
  .map-info .section-subtitle::before,
  .map-info .section-subtitle::after {
    display: inline-block;
  }
  
  .about-features {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto var(--spacing-md);
  }
  
  .about-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: 15px;
  }
  
  .about-badge-number {
    font-size: 1.75rem;
  }
  
  .about-badge-text {
    font-size: 0.5rem;
  }
  
  .room-details {
    order: -1;
  }
  
  .room-info-card {
    position: static;
  }
  
  /* Footer Tablet */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
  
  .footer-brand {
    grid-column: span 2;
    text-align: center;
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  /* Facilities Tablet */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .facilities-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Gallery Tablet */
  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .gallery-item.wide {
    grid-column: span 2;
  }
  
  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 767px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 3.5rem;
    --spacing-2xl: 4rem;
  }
  
  html {
    font-size: 15px;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Typography Mobile */
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.25rem); }
  h3 { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  
  .section-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 2px;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
  }
  
  .section-desc {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Buttons Mobile */
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 0.8125rem;
  }
  
  .btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
  }
  
  /* Header Mobile */
  .logo-img {
    height: 45px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
  }
  
  .hero-inner {
    min-height: 55vh;
    padding-top: 100px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1.25rem;
    font-size: 0.625rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 0.75rem;
  }
  
  .hero-title span {
    font-size: 0.35em;
    letter-spacing: 3px;
    margin-top: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  
  .hero-arrow svg {
    width: 18px;
    height: 18px;
  }
  
  .hero-arrow-prev {
    left: 10px;
  }
  
  .hero-arrow-next {
    right: 10px;
  }
  
  .hero-dots {
    bottom: 70px;
    gap: 10px;
  }
  
  .hero-dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-scroll {
    display: none;
  }
  
  /* About Mobile */
  .about-images {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .about-img:first-child {
    grid-column: span 1;
  }
  
  .about-badge {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: 10px;
  }
  
  .about-badge-number {
    font-size: 1.5rem;
  }
  
  .about-badge-text {
    font-size: 0.4375rem;
  }
  
  .about-text {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
    max-width: 280px;
  }
  
  .about-feature {
    justify-content: flex-start;
  }
  
  .about-feature-icon {
    width: 44px;
    height: 44px;
  }
  
  .about-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .about-feature-text {
    font-size: 0.875rem;
  }
  
  /* Rooms Mobile */
  .rooms-gallery {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .room-img.large {
    grid-column: span 1;
    aspect-ratio: 16/10;
  }
  
  .room-details {
    padding: 1.5rem;
  }
  
  .room-price-amount {
    font-size: 2.75rem;
  }
  
  .room-category {
    font-size: 1.25rem;
  }
  
  .room-note {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  
  .amenities-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .amenity-item {
    font-size: 0.875rem;
  }
  
  .room-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .room-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Room Images Grid Mobile */
  .room-images-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .room-image-item.large {
    grid-column: span 1;
  }
  
  .room-info-card {
    padding: 1.5rem;
  }
  
  /* Facilities Mobile */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .facility-card {
    padding: 1.25rem 1rem;
  }
  
  .facility-icon {
    width: 55px;
    height: 55px;
  }
  
  .facility-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .facility-title {
    font-size: 0.875rem;
  }
  
  .facilities-page-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .facility-page-card {
    padding: 1.5rem;
  }
  
  .facility-page-icon {
    width: 70px;
    height: 70px;
  }
  
  .facility-page-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .facility-page-title {
    font-size: 1.125rem;
  }
  
  .facility-page-desc {
    font-size: 0.875rem;
  }
  
  /* Gallery Mobile */
  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }
  
  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
  
  .gallery-overlay svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
  
  /* Map Mobile */
  .map-section {
    padding: var(--spacing-lg) 0;
  }
  
  .map-info {
    text-align: center;
  }
  
  .map-address {
    text-align: left;
    display: inline-block;
  }
  
  .map-address-item {
    margin-bottom: 1rem;
  }
  
  .map-address-icon {
    width: 44px;
    height: 44px;
  }
  
  .map-address-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .map-embed iframe {
    height: 300px;
  }
  
  .map-buttons {
    justify-content: center;
  }
  
  /* Contact Mobile */
  .contact-info,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
  }
  
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-value {
    font-size: 1rem;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  /* CTA Mobile */
  .cta-section {
    padding: var(--spacing-lg) 0;
  }
  
  .cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .cta-text {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.875rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Footer Mobile */
  .footer {
    padding-top: var(--spacing-lg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo img {
    height: 45px;
  }
  
  .footer-logo-text {
    font-size: 1.25rem;
  }
  
  .footer-desc {
    font-size: 0.875rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-title {
    font-size: 0.9375rem;
  }
  
  .footer-links {
    gap: 0.75rem;
  }
  
  .footer-link {
    font-size: 0.875rem;
  }
  
  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }
  
  .footer-contact-item span,
  .footer-contact-item a {
    font-size: 0.875rem;
  }
  
  .footer-bottom {
    padding: 1.25rem 0;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-copyright {
    font-size: 0.8125rem;
  }
  
  /* Lightbox Mobile */
  .lightbox {
    padding: 1rem;
  }
  
  .lightbox-close {
    top: -40px;
    font-size: 2rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: -50px;
  }
  
  .lightbox-next {
    right: -50px;
  }
  
  /* Story Grid Mobile */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .about-story-images {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .about-story-img:first-child {
    grid-column: span 1;
  }
  
  /* Dirang Section Mobile */
  .dirang-content {
    padding: var(--spacing-lg) 0;
    text-align: center;
  }
  
  .dirang-content .section-subtitle::before,
  .dirang-content .section-subtitle::after {
    display: inline-block;
  }
  
  .attractions-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: left;
    display: inline-block;
  }
  
  .attractions-list li {
    font-size: 0.875rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 0.875rem;
  }
  
  /* Hero Small Mobile */
  .hero-badge {
    padding: 0.4rem 1rem;
    font-size: 0.5625rem;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }
  
  .hero-title span {
    font-size: 0.3em;
    letter-spacing: 2px;
  }
  
  .hero-subtitle {
    font-size: 0.875rem;
  }
  
  .hero-buttons {
    max-width: 260px;
  }
  
  .hero-arrow {
    width: 36px;
    height: 36px;
  }
  
  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }
  
  /* Buttons Small Mobile */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.6875rem;
    gap: 0.5rem;
  }
  
  .btn svg {
    width: 16px;
    height: 16px;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.75rem;
  }
  
  /* Section Headers Small Mobile */
  .section-subtitle {
    font-size: 0.625rem;
    letter-spacing: 1.5px;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 15px;
  }
  
  /* Room Details Small Mobile */
  .room-details {
    padding: 1.25rem;
  }
  
  .room-price-amount {
    font-size: 2.25rem;
  }
  
  .room-price-period {
    font-size: 0.875rem;
  }
  
  .room-category {
    font-size: 1.125rem;
  }
  
  /* Facilities Small Mobile */
  .facilities-grid {
    gap: 0.75rem;
  }
  
  .facility-card {
    padding: 1rem 0.75rem;
  }
  
  .facility-icon {
    width: 48px;
    height: 48px;
  }
  
  .facility-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .facility-title {
    font-size: 0.8125rem;
  }
  
  /* Gallery Small Mobile */
  .gallery-grid,
  .gallery-page-grid {
    gap: 0.5rem;
  }
  
  /* Footer Small Mobile */
  .footer-logo img {
    height: 40px;
  }
  
  .footer-logo-text {
    font-size: 1.125rem;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer-social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.8125rem;
  }
  
  .hero-buttons {
    max-width: 240px;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.625rem;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 80px 0 40px;
  }
  
  .hero-content {
    padding: 0.5rem;
  }
  
  .hero-badge {
    margin-bottom: 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-title span {
    display: inline;
    font-size: 0.4em;
    margin-left: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    max-width: 100%;
  }
  
  .hero-buttons .btn {
    width: auto;
  }
  
  .hero-dots {
    bottom: 20px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .facility-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .about-img:hover img {
    transform: none;
  }
  
  /* Increase tap targets */
  .nav-link {
    padding: 0.75rem 0;
  }
  
  .footer-link {
    padding: 0.5rem 0;
    display: inline-block;
  }
  
  .social-link,
  .footer-social-link {
    min-width: 44px;
    min-height: 44px;
  }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-slide img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-slide img {
    animation: none;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  left: 70px;
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  left: 62px;
  border: 6px solid transparent;
  border-right-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .whatsapp-float {
    bottom: 90px;
    left: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float::before,
  .whatsapp-float::after {
    display: none;
  }
}

/* Mobile - hide when mobile CTA bar is visible */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 90px;
    left: 15px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 998;
  gap: 0.75rem;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-cta-bar .btn-call {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-cta-bar .btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.mobile-cta-bar a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
  }
  
  /* Add padding to body to prevent content being hidden by CTA bar */
  body {
    padding-bottom: 75px;
  }
  
  .footer {
    padding-bottom: 75px;
  }
  
  /* Adjust back to top position */
  .back-to-top {
    bottom: 85px !important;
  }
}

@media (max-width: 480px) {
  .mobile-cta-bar a {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }
  
  .mobile-cta-bar a span {
    display: none;
  }
  
  .mobile-cta-bar a svg {
    width: 22px;
    height: 22px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero-scroll,
  .btn,
  .hero-dots,
  .hero-arrow {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
}
