/* Modern Design System for Mary Jane Canarias */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Color Palette */
  --bg-cream: #FAF6F0;
  --bg-cream-dark: #F5EFEB;
  --bg-dark-green: #11221B;
  --bg-dark-green-soft: #193127;
  --olive-green: #2E4E3F;
  --olive-light: #527A67;
  --accent-gold: #C5A368;
  --accent-gold-light: #E4CB9F;
  --accent-gold-dark: #9E7D45;
  
  /* Text Colors */
  --text-dark: #252B28;
  --text-dark-muted: #57605B;
  --text-light: #F5F7F6;
  --text-light-muted: #B3C2BC;
  
  /* Layout & Accents */
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(17, 34, 27, 0.05);
  --shadow-md: 0 8px 24px rgba(17, 34, 27, 0.08);
  --shadow-lg: 0 16px 40px rgba(17, 34, 27, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.25;
}

p {
  font-weight: 300;
}

strong {
  font-weight: 600;
}

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

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

/* Global Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-olive { color: var(--olive-green); }
.text-light { color: var(--text-light); }

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.glass-panel-dark {
  background: rgba(17, 34, 27, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--olive-green);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(46, 78, 63, 0.3);
}

.btn-primary:hover {
  background-color: var(--bg-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 34, 27, 0.4);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 163, 104, 0.3);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 125, 69, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Navigation */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.main-header.scrolled {
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(197, 163, 104, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.main-header.scrolled .nav-container {
  height: 65px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

header.main-header.scrolled .logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

/* Dropdown Language Selector */
.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(197, 163, 104, 0.1);
  transition: var(--transition-fast);
}

.lang-toggle:hover {
  background: rgba(197, 163, 104, 0.2);
}

.lang-toggle img {
  width: 20px;
  border-radius: 2px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  list-style: none;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  overflow: hidden;
  border: 1px solid rgba(197, 163, 104, 0.1);
}

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

.lang-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.lang-item a:hover {
  background-color: var(--bg-cream-dark);
}

.lang-item img {
  width: 20px;
  border-radius: 2px;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-dark-green);
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}

.slide.active .slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(17, 34, 27, 0.4) 0%, rgba(17, 34, 27, 0.8) 100%);
  z-index: 3;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 4;
  color: var(--text-light);
  width: 90%;
  max-width: 800px;
}

.hero h2 {
  font-size: 1.5rem;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.7s;
}

.hero-btn-group {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.9s;
}

.slide.active .hero-content h2,
.slide.active .hero-content h1,
.slide.active .hero-content p,
.slide.active .hero-content .hero-btn-group {
  opacity: 1;
  transform: translateY(0);
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  right: 40px;
  z-index: 5;
  writing-mode: vertical-rl;
  color: var(--text-light-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bounceVertical 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: var(--accent-gold);
  margin-top: 8px;
}

/* Brand Section */
.brand-intro {
  position: relative;
  overflow: hidden;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.brand-text blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  border-left: 3px solid var(--accent-gold);
  padding-left: 24px;
  margin: 32px 0;
  color: var(--olive-green);
}

.brand-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.brand-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 6s ease;
}

.brand-image-wrapper:hover img {
  transform: scale(1.05);
}

.brand-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 16px 28px;
  border-radius: var(--border-radius-md);
  color: var(--text-light);
}

.brand-badge h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--accent-gold-light);
}

.brand-badge p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Products Collection Grid */
.products-section {
  background-color: var(--bg-cream-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 163, 104, 0.08);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 163, 104, 0.25);
}

.product-img-holder {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
  aspect-ratio: 1;
}

.product-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-holder img {
  transform: scale(1.08);
}

.product-overlay-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 34, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.product-card:hover .product-overlay-action {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-details {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-details h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-details p.product-subtitle {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.product-footer {
  margin-top: auto;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--olive-green);
  font-weight: 500;
  margin-bottom: 12px;
}

/* Modal Popup Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 34, 27, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 163, 104, 0.2);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(17, 34, 27, 0.05);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--olive-green);
  color: var(--white);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  min-height: 450px;
}

.modal-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.modal-right-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-brand-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-title-text {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-desc-text {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 24px;
}

.modal-meta-section {
  border-top: 1px solid rgba(197, 163, 104, 0.2);
  padding-top: 20px;
  margin-bottom: 30px;
}

.modal-meta-item {
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.modal-meta-item strong {
  color: var(--olive-green);
  font-weight: 500;
}

/* SPA & Wellness Section */
.spa-section {
  background-color: var(--bg-dark-green);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.spa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://maryjane.es/home_files/holistic.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  pointer-events: none;
}

.spa-menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.spa-tab-btn {
  background: transparent;
  border: 1px solid rgba(197, 163, 104, 0.3);
  color: var(--text-light-muted);
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.spa-tab-btn:hover, .spa-tab-btn.active {
  background-color: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
}

.spa-content-pane {
  display: none;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.spa-content-pane.active {
  display: block;
}

.spa-tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spa-pane-text h3 {
  font-size: 2.2rem;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
}

.spa-pane-text h4 {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}

.spa-pane-text p {
  color: var(--text-light-muted);
  margin-bottom: 30px;
  font-size: 1rem;
}

.spa-pane-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.spa-pane-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

.spa-tab-grid:hover .spa-pane-img img {
  transform: scale(1.04);
}

/* Steps Sequence Section */
.steps-section {
  background-color: var(--bg-cream);
}

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

.step-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-cream-dark);
}

.step-img-holder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-card:hover .step-img-holder {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.step-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
}

/* History / Us section */
.about-us-section {
  position: relative;
  background-color: var(--bg-cream-dark);
}

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-text p {
  margin-bottom: 24px;
}

.about-love-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-love-img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 1.1;
}

.about-love-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

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

.about-love-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--olive-green);
}

/* Client logos section */
.partners-section {
  background-color: var(--white);
  padding: 80px 0;
}

.partners-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.partner-logo {
  opacity: 0.55;
  filter: grayscale(100%);
  transition: var(--transition-fast);
  max-height: 50px;
  display: flex;
  align-items: center;
}

.partner-logo img {
  max-height: 50px;
  width: auto;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Contact and maps section */
.contact-section {
  background-color: var(--bg-dark-green-soft);
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block h4 {
  font-size: 1.15rem;
  color: var(--accent-gold-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-block p, .contact-info-block a {
  color: var(--text-light-muted);
}

.map-wrapper {
  margin-top: 30px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrapper {
  padding: 40px;
  border-radius: var(--border-radius-lg);
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form option {
  background-color: var(--bg-dark-green);
  color: var(--white);
}

/* Footer styling */
footer.main-footer {
  background-color: var(--bg-dark-green);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0;
  color: var(--text-light-muted);
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
  display: inline-block;
}

.footer-logo img {
  height: 55px;
  width: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  list-style: none;
}

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

.social-icon:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.social-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.copyright-text {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.copyright-text a {
  color: var(--accent-gold);
}

.cookie-note {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 12px;
}

/* Keyframes animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
  .brand-grid, .about-split, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .brand-image-wrapper img {
    height: 380px;
  }
  
  .spa-tab-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .spa-pane-img {
    height: 300px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-content-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-left-img {
    height: 250px;
    min-height: 250px;
  }
  
  .modal-right-body {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-cream);
    flex-direction: column;
    padding: 40px 24px;
    gap: 30px;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.open {
    transform: translateX(0);
  }
  
  .lang-dropdown {
    margin-top: 15px;
  }
  
  header.main-header.scrolled .nav-menu {
    top: 65px;
    height: calc(100vh - 65px);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-form-wrapper {
    padding: 24px 16px;
  }
}
