/* ============================================
   Boutique Hotel Premium — Dark Theme
   ============================================ */

:root {
  --bg: #0f1115;
  --bg-elevated: #161a20;
  --gold: #c9a962;
  --gold-dim: #a68b4a;
  --text: #f0f0f0;
  --text-muted: #9ca3af;
  --border: rgba(201, 169, 98, 0.25);
  --modal-bg: rgba(22, 26, 32, 0.92);
  --transition: 250ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
  min-height: 100vh;
  animation: pageFadeIn 0.6s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --------------------------------------------
   HERO — Full screen, background image, overlay, vignette
   -------------------------------------------- */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.5rem;
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.25)
    ),
    url("../images/main-page-background/main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 1.25rem;
  max-width: 640px;
  text-align: center;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

/* Subtitle & intro: distinct colour + shadow for readability on pool/sunset (mobile & desktop) */
.hero-inner #welcome-subtitle,
.hero-inner #welcome-intro {
  color: #e8e4dc;
  text-shadow: 0 0 2px rgba(0, 0, 0, 1), 0 1px 4px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-inner #welcome-intro {
  margin-top: 0.75rem;
}

.hero-inner #welcome-digital-host {
  margin-top: 0.25rem;
  font-weight: 600;
}

.hero-intro-short {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 28em;
  line-height: 1.5;
  color: #e8e4dc;
  text-shadow: 0 0 2px rgba(0, 0, 0, 1), 0 1px 4px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240, 240, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chevronBounce 1.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.hero-chevron svg {
  width: 28px;
  height: 28px;
}

@keyframes chevronBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* --------------------------------------------
   LANGUAGE SWITCHER
   -------------------------------------------- */
.lang-switch {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1002;
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 16px;
}

.lang-switch img {
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.lang-switch button.active img {
  border: none;
  outline: none;
  box-shadow: none;
}

.lang-switch button {
  padding: 0.5rem;
  background: #e8e4dc;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lang-switch button:hover {
  border-color: var(--gold-dim);
}

.lang-switch button.active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--gold);
}

.lang-switch button svg {
  display: block;
}

/* --------------------------------------------
   MAIN GRID — Premium cards with line icons
   -------------------------------------------- */
.main-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1.5rem 1.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .main-grid {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.main-grid button {
  flex: 1 1 200px;
  min-width: 180px;
  min-height: 92px;
  padding: 1.5rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  transform-origin: center center;
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.main-grid button.card-entrance {
  animation: cardEntrance 0.7s ease-out forwards;
}

.main-grid button.card-entrance:nth-child(1) { animation-delay: 0s; }
.main-grid button.card-entrance:nth-child(2) { animation-delay: 0.12s; }
.main-grid button.card-entrance:nth-child(3) { animation-delay: 0.24s; }
.main-grid button.card-entrance:nth-child(4) { animation-delay: 0.36s; }
.main-grid button.card-entrance:nth-child(5) { animation-delay: 0.48s; }
.main-grid button.card-entrance:nth-child(6) { animation-delay: 0.6s; }
.main-grid button.card-entrance:nth-child(7) { animation-delay: 0.72s; }
.main-grid button.card-entrance:nth-child(8) { animation-delay: 0.84s; }

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

.main-grid button::before {
  content: '';
  width: 24px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  transform: translateY(0);
  transition: transform 250ms ease, opacity 250ms ease;
}

.main-grid button[data-type="wifi"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.288 15.038a5.25 5.25 0 017.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12 18.75h.008v.008H12v-.008z'/%3E%3C/svg%3E");
}

.main-grid button[data-type="essentials"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25'/%3E%3C/svg%3E");
}

.main-grid button[data-type="devices"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 17.25v1.007a3 3 0 01-2.25 2.903H6A2.25 2.25 0 013.75 18v-1.5M9 17.25V9m0 0l2.25 2.25M9 15l2.25-2.25M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.main-grid button[data-type="security"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285z'/%3E%3C/svg%3E");
}

.main-grid button[data-type="amenities"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.48 3.499a.562.562 0 011.04 0l2.125 5.111a.563.563 0 00.475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 00-.182.557l1.285 5.385a.562.562 0 01-.84.61l-4.725-2.885a.563.563 0 00-.586 0L6.982 20.54a.562.562 0 01-.84-.61l1.285-5.386a.562.562 0 00-.182-.557l-4.204-3.602a.563.563 0 01.321-.988l5.518-.442a.563.563 0 00.475-.345L11.48 3.5z'/%3E%3C/svg%3E");
}

.main-grid button[data-type="checkout"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 9V5.25A2.25 2.25 0 0013.5 3h-6a2.25 2.25 0 00-2.25 2.25v3.75M15.75 9l-3-3m0 0l-3 3m3-3v12M9 21v-6a2.25 2.25 0 012.25-2.25h6A2.25 2.25 0 0121 15v6'/%3E%3C/svg%3E");
}

.main-grid button[data-type="arrival"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 5.25a3 3 0 013 3m3 0a6 6 0 01-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v-2.25H2.25v-1.5c0-1.06.863-1.93 1.929-1.93l5.179-.339c.264-.043.524-.134.718-.27l2.22-1.47a3 3 0 013 3z'/%3E%3C/svg%3E");
}

.main-grid button[data-type="contact"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a962' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.712 1.315a2.25 2.25 0 01-1.67 1.11 12.04 12.04 0 01-6.516-6.517 2.25 2.25 0 011.11-1.67l1.315-.712c.362-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z'/%3E%3C/svg%3E");
}

.main-grid button:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 169, 98, 0.3),
    0 0 24px rgba(201, 169, 98, 0.12);
}

.main-grid button:hover::before {
  transform: translateY(-2px);
  opacity: 1;
}

.main-grid button:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.25);
}

/* --------------------------------------------
   MODAL — Glass style, blur, gold accent
   -------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  z-index: 20;
  animation: modalBackdropIn 0.25s ease;
}

@keyframes modalBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: var(--modal-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 340px;
  position: relative;
  padding: 2.5rem 1.75rem 1.75rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content * {
  text-align: center !important;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content .close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  font-size: 1.25rem;
  line-height: 1;
}

.modal-content .close:hover {
  color: var(--gold);
}

.modal-content .close:focus {
  outline: none;
  color: var(--gold);
}

/* Modal body content — scroll when long so full screen shows all */
#modal-body {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.5;
  width: 100%;
  max-height: 68vh;
  overflow-y: auto;
}

/* Wider modal for Local tips (3 columns on desktop) */
.modal-content:has(.local-sections-wrap) {
  max-width: 720px;
}

.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content .wifi-modal-header,
.modal-content .essentials-modal-header,
.modal-content .devices-modal-header,
.modal-content .rules-modal-header {
  text-align: center;
}

.modal-content .wifi-field,
.modal-content .wifi-password-block,
.modal-content input,
.modal-content textarea {
  margin-left: auto;
  margin-right: auto;
}

.modal-content button:not(.close) {
  display: block;
  margin: 1rem auto 0 auto;
}

.modal-content .wifi-password-row {
  display: flex;
  justify-content: center;
}

.modal-content input {
  text-align: center;
}

.modal-content .copy-password-btn {
  margin-left: auto;
  margin-right: auto;
}

/* WiFi block in modal — product-level premium */
.wifi-modal-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.wifi-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 1.5rem;
}

.modal-content .wifi-info {
  text-align: center;
}

.wifi-field {
  margin-bottom: 1.5rem;
}

.wifi-field:last-child {
  margin-bottom: 0;
}

.wifi-field .wifi-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  text-transform: none;
  letter-spacing: 0.08em;
}

.wifi-value.wifi-network-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}

.wifi-password-block {
  font-family: ui-monospace, 'SF Mono', Monaco, monospace;
  font-size: 0.9375rem;
  color: var(--text);
  word-break: break-all;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.wifi-password-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.copy-password-btn {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  white-space: nowrap;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, transform 200ms ease;
}

.copy-password-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.12);
  color: var(--text);
}

.copy-password-btn:active {
  transform: scale(0.98);
}

.copy-feedback {
  margin-top: 0.625rem;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Essentials block in modal — premium app list */
.essentials-modal-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.essentials-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 1.5rem;
}

.essentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.essentials-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
  box-sizing: border-box;
}

.essentials-row:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 169, 98, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.essentials-row:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.2);
}

.essentials-row-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.essentials-row-label {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.essentials-row:hover .essentials-row-label {
  color: var(--gold);
}

.essentials-row-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 250ms ease, transform 250ms ease;
}

.essentials-row:hover .essentials-row-arrow {
  color: var(--gold);
  transform: translateX(2px);
}

/* Rules (Κανόνες) block in modal */
.rules-modal-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rules-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: border-color 250ms ease, background 250ms ease;
}

.rules-row-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.rules-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rules-row-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.rules-row-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.modal-content .rules-list,
.modal-content .rules-row-text,
.modal-content .rules-row-title,
.modal-content .rules-row-desc {
  text-align: left !important;
}

/* Local tips — section titles */
.local-section {
  margin-bottom: 1.5rem;
  min-width: 0; /* grid child να μπορεί να συρρικνώνεται */
  width: 100%;
}

.local-section:last-child {
  margin-bottom: 0;
}

.local-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  text-transform: none; /* Μόνο το 1ο γράμμα κεφαλαίο (από τις μεταφράσεις) */
}

.local-section .essentials-list {
  margin-bottom: 0;
}

/* Local tips: 3 sections side by side on desktop, stack on mobile */
.local-sections-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 600px) {
  .local-sections-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* ίδιο πλάτος και στις 3 στήλες */
    gap: 1rem;
  }
  .local-section {
    margin-bottom: 0;
  }
}

/* Devices block in modal — same premium style as Essentials, centered */
.devices-modal-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.devices-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 1.5rem;
}

/* Contact modal (Επικοινωνία) */
.contact-modal-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.contact-modal-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #25d366;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.contact-whatsapp-btn:hover {
  background: #20bd5a;
  color: #fff;
}
.contact-whatsapp-btn:active {
  transform: scale(0.98);
}

.devices-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.devices-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.devices-row:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 169, 98, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.devices-row-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.devices-row-icon .devices-row-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  color: var(--gold);
}

.devices-row-label {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.devices-row:hover .devices-row-label {
  color: var(--gold);
}

.devices-row--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* --------------------------------------------
   MOBILE — below 768px (desktop unchanged)
   -------------------------------------------- */
@media (max-width: 767px) {
  .hero {
    min-height: 65vh;
    padding-top: 1.75rem;
  }

  .hero-inner {
    padding: 0 1.25rem 1rem;
  }

  .hero h1 {
    margin: 0 0 0.35rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-chevron {
    bottom: 1rem;
  }

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

  .lang-switch {
    top: 11px;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 6px;
  }

  .lang-switch button {
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #e8e4dc;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  }

  .lang-switch button.active {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(201, 169, 98, 0.5);
  }

  .lang-switch button svg {
    width: 22px;
    height: auto;
    max-height: 16px;
    display: block;
  }

  .main-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    padding: 1.25rem 1.25rem 2.5rem;
    max-width: none;
  }

  .main-grid button {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 1rem 1.25rem;
    gap: 0.625rem;
  }

  .main-grid button::before {
    width: 22px;
    height: 26px;
  }

  .modal {
    padding: 1rem;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5rem;
  }

  .modal-content {
    width: 100%;
    max-width: none;
    border-radius: 14px;
    padding: 2rem 1.5rem 1.5rem;
    margin-top: 0;
  }

  .modal-content .close {
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    width: 24px;
    height: 24px;
    font-size: 1.125rem;
  }
}

.hidden {
  display: none !important;
}

.lang-switch img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.lang-switch button {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GLOBAL language switch fix – all pages */
.lang-switch {
  display: flex !important;
  gap: 10px;
  align-items: center;
}

.lang-switch button {
  width: auto !important;
  height: auto !important;
  padding: 6px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.lang-switch img {
  width: 32px !important;
  height: 22px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  display: block !important;
}

/* Washing page – align language switch like hero */

.top-lang-bar {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 30px auto 0 auto;
}

.top-lang-bar .lang-switch {
  background: rgba(60, 50, 40, 0.85);
  padding: 8px 14px;
  border-radius: 20px;
}

@media (max-width: 768px) {

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    margin-top: 10px;
  }

}

.thermo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.thermo-image {
  width: 320px;
  max-width: 90%;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
}

.section-image {
  width: 320px;
  max-width: 90%;
  display: block;
  margin: 40px auto;
  border-radius: 14px;
}

.appliance-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.appliance-images img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.appliance-images {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 60px !important;
    margin: 40px 0 !important;
}

.appliance-img {
    max-width: 420px !important;
    width: auto !important;
    height: auto !important;
    display: block;
}

.panel-img {
    max-width: 550px !important;
    width: 100%;
    height: auto;
}

.icon-img {
    max-width: 220px !important;
    width: 100%;
    height: auto;
}

.wm-phone {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.wm-phone:hover {
  opacity: 0.8;
}
