/* ============================================
   DOMKI NAD MORZEM - Main Stylesheet
   Coastal & Fresh Design Theme
   ============================================ */

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */
:root {
  /* Color Palette - Coastal Theme */
  --color-primary: #1B4965;
  --color-primary-dark: #0f2d42;
  --color-primary-light: #2a5f82;
  --color-secondary: #5FA8D3;
  --color-secondary-light: #7ebde3;
  --color-accent: #F5E6D3;
  --color-accent-dark: #e8d4bc;
  --color-background: #FEFEFE;
  --color-background-alt: #f8f9fa;
  --color-text: #2c3e50;
  --color-text-light: #5a6c7d;
  --color-text-muted: #8b9dad;
  --color-driftwood: #8B7355;
  --color-coral: #E07A5F;
  --color-coral-dark: #c9684f;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(27, 73, 101, 0.08);
  --shadow-md: 0 4px 12px rgba(27, 73, 101, 0.12);
  --shadow-lg: 0 8px 24px rgba(27, 73, 101, 0.16);
  --shadow-xl: 0 12px 48px rgba(27, 73, 101, 0.2);
  
  /* Typography */
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1400px;
  
  /* Header height */
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-lg);
}

.container--wide {
  max-width: var(--container-2xl);
}

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

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

.section--lg {
  padding: calc(var(--space-4xl) * 1.5) 0;
}

.section--alt {
  background-color: var(--color-background-alt);
}

.section--accent {
  background-color: var(--color-accent);
}

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

.section--primary h1,
.section--primary h2,
.section--primary h3 {
  color: var(--color-white);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-coral { color: var(--color-coral); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-white); }

.font-heading { font-family: var(--font-heading); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header--scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.header--transparent {
  background-color: transparent;
  box-shadow: none;
}

.header--transparent .nav__link {
  color: var(--color-white);
}

@media (max-width: 968px) {
  .header--transparent .nav__link {
    color: var(--color-primary);
  }
}

.header--transparent .logo__text {
  color: var(--color-white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--space-lg);
  max-width: var(--container-2xl);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo__icon {
  width: 48px;
  height: 48px;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.logo__subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  visibility: visible;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-coral);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

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

.nav__cta {
  background-color: var(--color-coral);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background-color: var(--color-coral-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Mobile Navigation */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-fast);
}

@media (max-width: 968px) {
  .nav__toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }
  
  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    gap: var(--space-sm);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }
  
  .nav__list--open {
    transform: translateX(0);
  }
  
  .nav__link {
    font-size: 1.125rem;
    color: var(--color-primary) !important;
    padding: var(--space-md) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
    display: block;
    font-weight: 500;
  }
  
  .nav__link:hover {
    background-color: var(--color-accent);
  }
  
  .nav__link::after {
    display: none;
  }
  
  .nav__cta {
    margin-top: var(--space-lg);
    text-align: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

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

.btn--primary:hover {
  background-color: var(--color-coral-dark);
  border-color: var(--color-coral-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

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

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

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

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn--sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
}

.btn--icon {
  padding: var(--space-md);
  border-radius: var(--radius-full);
}

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

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0.4) 0%,
    rgba(27, 73, 101, 0.6) 50%,
    rgba(27, 73, 101, 0.8) 100%
  );
  z-index: -1;
}

.hero__content {
  text-align: center;
  color: var(--color-white);
  padding: var(--space-2xl);
  max-width: 900px;
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
  opacity: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__description {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  opacity: 0.95;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Wave Animation */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero__wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.hero__wave .wave-fill {
  fill: var(--color-background);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__description {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.section-header__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-coral));
  margin: var(--space-lg) auto 0;
  border-radius: var(--radius-full);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 73, 101, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-lg);
}

.card:hover .card__overlay {
  opacity: 1;
}

.card__content {
  padding: var(--space-xl);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__subtitle {
  font-size: 0.875rem;
  color: var(--color-coral);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.card__description {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat {
  padding: var(--space-xl);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat__label {
  font-size: 1rem;
  color: var(--color-text-light);
}

.section--primary .stat__number {
  color: var(--color-coral);
}

.section--primary .stat__label {
  color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial {
  flex: 0 0 100%;
  padding: var(--space-2xl);
  text-align: center;
}

.testimonial__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  position: relative;
}

.testimonial__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

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

.testimonial__rating {
  display: flex;
  gap: 2px;
  margin-top: var(--space-xs);
}

.testimonial__rating svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials-nav__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  opacity: 0.3;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.testimonials-nav__dot--active,
.testimonials-nav__dot:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* ============================================
   FEATURES / AMENITIES
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

@media (max-width: 580px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  text-align: center;
  padding: var(--space-xl);
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  color: var(--color-secondary);
}

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

.feature__description {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 73, 101, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background-color: var(--color-coral);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__nav:hover {
  background-color: var(--color-coral);
}

.lightbox__nav--prev {
  left: var(--space-lg);
}

.lightbox__nav--next {
  right: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

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

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand {
    max-width: none;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form__label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 2px solid var(--color-accent-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(95, 168, 211, 0.15);
}

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  background-color: var(--color-primary);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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");
  opacity: 0.5;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header__breadcrumb a:hover {
  color: var(--color-white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.8);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Initial state for animated elements */
[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  opacity: 1;
}

/* ============================================
   MAP
   ============================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Frame effect removed - cleaner look */

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.about-features {
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-md);
}

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

.about-feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
}

.about-feature__text h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.about-feature__text p {
  font-size: 0.9rem;
  margin: 0;
}

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

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.pricing-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.pricing-card:hover .pricing-card__image img {
  transform: scale(1.05);
}

.pricing-card__content {
  padding: var(--space-xl);
}

.pricing-card__name {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.pricing-card__capacity {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.pricing-card__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-coral);
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ============================================
   RULES / REGULATIONS
   ============================================ */
.rules-list {
  display: grid;
  gap: var(--space-md);
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.rule-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.rule-item__text {
  color: var(--color-text);
}

/* ============================================
   RESERVATION STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  counter-reset: step;
}

.step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step__number {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  background: var(--color-coral);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

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

.step__description {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .btn,
  .nav {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  .section {
    padding: 1rem 0;
  }
}
