/* ======================================================================
   1. CUSTOM FONTS & BASE STYLES
   ====================================================================== */
@font-face {
  font-family: 'TihonFont';
  src: url('Fonts/TihonFont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* ======================================================================
   2. BACKGROUND SLIDESHOW
   ====================================================================== */
.background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
}

.background-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.background-slideshow img.active {
  opacity: 1;
}

/* ======================================================================
   3. NAVIGATION BAR
   ====================================================================== */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 12vw, 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  padding: 0 clamp(10px, 3vw, 20px);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  gap: clamp(10px, 2vw, 20px);
  position: relative;
}

.navbar-content > * {
  max-width: 100%;
  overflow: hidden;
}

.logo-burger-container {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 15px);
  z-index: 11;
  flex-shrink: 0;
  min-width: max-content;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: clamp(35px, 6vw, 70px);
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  transition: transform 0.3s ease;
  z-index: 1001;
  position: relative;
}

.nav-toggle:hover {
  transform: scale(1.1);
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.center-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'TihonFont', Bold;
  font-size: clamp(26px, 8vw, 80px); /* Adaptive global size */
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  letter-spacing: clamp(0.3px, 0.15vw, 1px);
  font-weight: bolder;
  opacity: 1;
  user-select: none;
  white-space: nowrap;
  transition: text-shadow 0.3s ease;
  text-align: center;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 clamp(3px, 1vw, 10px);
  pointer-events: none;
  flex-shrink: 1;
  min-width: 0;
}

.center-text:hover {
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.brand {
  flex-shrink: 1;
  min-width: 0;
}

.phone-btn { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: clamp(6px, 1.2vw, 10px) clamp(10px, 1.8vw, 16px); 
  border-radius: 8px; 
  background-color: white; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
  color: #5D4037;
  font-weight: bolder; 
  text-decoration: none; 
  font-size: clamp(11px, 1.8vw, 16px); 
  transition: all 0.3s ease; 
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
  z-index: 1000;
  line-height: 1;
} 

.phone-btn:hover { 
  background-color: #5D4037;
  color: white; 
  transform: translateY(-2px);
}

.phone-btn .label-call {
  display: none !important; /* Hidden on desktop */
}

/* ======================================================================
   3b. SUB-NAVIGATION BAR (THIN BAR)
   ====================================================================== */
.sub-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 48px;
  background-color: #4E342E !important; /* Rich solid brown background */
  border-bottom: 1px solid #5D4037 !important; /* Slightly lighter brown border line */
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
  z-index: 1000; /* Float above other content */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-navbar-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(24px, 5vw, 36px); /* Even wider spacing between items for comfortable touch scrolling */
  width: 100%;
  max-width: 1300px;
  height: 100%;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none; /* Hide default scrollbar on Firefox */
  -webkit-overflow-scrolling: touch;
}

.sub-navbar-content::-webkit-scrollbar {
  display: none; /* Hide default scrollbar on Webkit/Blink */
}

.sub-nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: clamp(16px, 2.2vw, 18.5px);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.sub-nav-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.sub-nav-link.booking-highlight {
  background: rgba(255, 143, 0, 0.18);
  border: 1px solid #FF8F00;
  color: #FFB300 !important;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  text-shadow: none !important;
  box-shadow: 0 2px 8px rgba(255, 143, 0, 0.2);
  transition: all 0.3s ease;
}

.sub-nav-link.booking-highlight:hover {
  background: linear-gradient(135deg, #FF8F00, #FFB300);
  color: #ffffff !important;
  border-color: #FF8F00;
  box-shadow: 0 4px 12px rgba(255, 143, 0, 0.4);
  transform: translateY(-1px);
}

@media (min-width: 769px) {
  .sub-navbar-content {
    justify-content: center; /* Center-align navigation items on tablet and desktop */
  }
}

/* Prevent sticky sub-navbar from covering content titles on anchor scrolls */
.content-block,
.sauna-section {
  scroll-margin-top: 58px; /* 48px sub-navbar height + 10px spacing */
}

/* ======================================================================
   4. CONTENT BLOCK (Welcome / Video)
   ====================================================================== */
.content-block {
  display: flex;
  width: 90%;             
  max-width: 1400px;      
  height: auto;
  min-height: 400px;
  margin: 20px auto;      
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  align-items: stretch;
  animation: blockFadeIn 1s ease forwards;
  flex-direction: column;
}

.content-block.hero-block {
  min-height: auto;
}

@media (min-width: 1024px) {
  .content-block {
    flex-direction: row;
    min-height: 500px;
    height: auto;
  }
  .content-block.hero-block {
    min-height: auto;
  }
}

.text-container {
  width: 100%;
  padding: clamp(20px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  max-height: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(93, 64, 55, 0.6) transparent;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  text-align: justify;
  line-height: 1.35;
  letter-spacing: 0.3px;
  font-family: "Arial Rounded MT Bold", "Arial", sans-serif;
  font-weight: 700;
  color: #3E2723;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  position: relative;
}

@media (min-width: 1024px) {
  .text-container {
    width: 50%;
    border-radius: 10px 0 0 10px;
  }
}

.text-container::-webkit-scrollbar {
  width: 6px;
}

.text-container::-webkit-scrollbar-track { 
  background: transparent; 
}

.text-container::-webkit-scrollbar-thumb {
  background-color: rgba(93, 64, 55, 0.6);
  border-radius: 3px;
}

.text-container h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(24px, 4vw, 36px);
  color: #4E342E;
  letter-spacing: 0.5px;
  font-weight: 800;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.25;
  margin-bottom: 15px;
  text-align: left;
}

.text-container h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(28px, 5vw, 42px);
  color: #4E342E;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-container h2 span {
  display: block;
}

.text-container p {
  font-size: clamp(14px, 2.5vw, 18px);
  margin-bottom: clamp(12px, 3vw, 18px);
  color: #3E2723;
  text-indent: clamp(20px, 4vw, 30px);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.12);
}

.hero-subtitle {
  font-size: clamp(14px, 2.2vw, 17px);
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(93, 64, 55, 0.1);
  padding-bottom: 12px;
  text-indent: 0 !important;
  line-height: 1.4;
}

.hero-buttons {
  margin-top: 20px;
  text-indent: 0 !important;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  padding: 12px 28px;
  background: linear-gradient(135deg, #5D4037, #3E2723);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(93, 64, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4E342E, #2A1B18);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}



/* ======================================================================
   4c. WHY US - SECONDARY BLOCK
   ====================================================================== */
.why-us-block {
  display: block !important; /* Standard block layout to ensure perfect centering */
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.why-us-content {
  padding: clamp(20px, 4vw, 50px);
  width: 100%;
}

.why-us-content h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #4E342E;
  font-weight: 800;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.25;
  margin-bottom: clamp(20px, 4vw, 35px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(15px, 2.5vw, 24px);
}

.why-us-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(93, 64, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.18);
  border-color: #5D4037;
}

.why-us-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #5D4037, #3E2723);
  color: white;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(93, 64, 55, 0.3);
}

.why-us-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: #5D4037;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.why-us-text p {
  font-size: 13.5px;
  font-weight: 550;
  color: #3E2723;
  margin: 0;
  line-height: 1.45;
  text-align: left;
  text-indent: 0 !important;
}

/* ======================================================================
   4d. REVIEWS BLOCK
   ====================================================================== */
.reviews-block {
  display: block !important; /* Standard block layout to ensure perfect centering */
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.reviews-content {
  padding: clamp(20px, 4vw, 50px);
  width: 100%;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 2px solid rgba(93, 64, 55, 0.1);
  padding-bottom: 20px;
  margin-bottom: clamp(20px, 4vw, 35px);
}

.reviews-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #4E342E;
  font-weight: 800;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 4px;
}

.rating-stars {
  color: #FFB300;
  font-size: 22px;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #3E2723;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(15px, 2.5vw, 24px);
}

.review-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(93, 64, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.18);
  border-color: #5D4037;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-sauna-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #5D4037;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.review-sauna-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author h4 {
  font-size: 16px;
  font-weight: 700;
  color: #4E342E;
  margin: 0 0 2px 0;
}

.author-location {
  font-size: 13px;
  color: #8D6E63;
  font-weight: 600;
}

.review-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-stars {
  color: #FFB300;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-body p {
  font-size: 14px;
  font-weight: 550;
  color: #3E2723;
  line-height: 1.5;
  margin: 0 0 15px 0;
  text-indent: 0 !important;
  text-align: left;
}

.review-badge {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.google-badge-icon {
  display: inline-block;
  vertical-align: middle;
}

/* Mobile responsive adjustments for header */
@media (max-width: 600px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .google-rating {
    align-items: flex-start;
    text-align: left;
  }
}

/* ======================================================================
   4e. HOW WE WORK BLOCK
   ====================================================================== */
.how-we-work-block {
  display: block !important; /* Standard block layout to ensure perfect centering */
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.how-we-work-content {
  padding: clamp(20px, 4vw, 50px);
  width: 100%;
}

.how-we-work-content h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #4E342E;
  font-weight: 800;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.25;
  margin-bottom: clamp(30px, 5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
}


.step-card {
  position: relative;
  margin-left: 55px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(93, 64, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.18);
  border-color: #5D4037;
}

.step-badge {
  position: absolute;
  left: -53px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #5D4037, #3E2723);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFF8E1;
  box-shadow: 0 2px 6px rgba(93, 64, 55, 0.4);
  z-index: 2;
}

.step-card h3 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #5D4037;
  margin: 0 0 8px 0;
  line-height: 1.3;
  text-align: left;
}

.step-card p {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 550;
  color: #3E2723;
  margin: 0;
  line-height: 1.45;
  text-align: left;
  text-indent: 0 !important;
}

@media (min-width: 1024px) {
  .steps-timeline {
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    padding-top: 25px;
  }


  .step-card {
    margin-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 18px;
    min-height: 220px;
  }

  .step-badge {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 20px;
    margin-top: -49px;
    width: 48px;
    height: 48px;
    font-size: 20px;
    border: 4px solid #FFF8E1;
  }

  .step-card h3 {
    text-align: center;
    margin-bottom: 10px;
  }

  .step-card p {
    text-align: center;
  }
}

/* ======================================================================
   4f. FAQ BLOCK
   ====================================================================== */
.faq-block {
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.faq-left {
  padding: clamp(15px, 2.5vw, 30px) clamp(20px, 4vw, 50px);
  width: 100%;
}

.faq-left h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #4E342E;
  font-weight: 800;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.25;
  margin-bottom: clamp(12px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(93, 64, 55, 0.15);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 11px 0;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 700;
  color: #4E342E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: #5D4037;
}

.faq-toggle-icon {
  font-size: 20px;
  font-weight: bold;
  color: #5D4037;
  transition: transform 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 0 8px 0;
  font-size: clamp(13.5px, 1.8vw, 15px);
  font-weight: 550;
  color: #3E2723;
  line-height: 1.55;
  margin: 0;
  text-indent: 0 !important;
  text-align: left;
}

/* Rotates the + by 45 deg to form a clean close x when item is active */
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  color: #5D4037;
}

.faq-right {
  width: 100%;
  padding: 30px clamp(20px, 4vw, 50px) 50px clamp(20px, 4vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.faq-big-letters {
  font-size: clamp(100px, 20vw, 180px);
  font-weight: 900;
  color: #5D4037;
  background: linear-gradient(135deg, #5D4037, #8D6E63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 20px rgba(93, 64, 55, 0.15);
  letter-spacing: -2px;
  user-select: none;
  animation: faqPulse 6s ease-in-out infinite alternate;
}

@keyframes faqPulse {
  0% { transform: scale(1); filter: drop-shadow(0 4px 10px rgba(93, 64, 55, 0.15)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 8px 25px rgba(93, 64, 55, 0.3)); }
}

@media (min-width: 1024px) {
  .faq-block {
    flex-direction: row;
    align-items: stretch;
  }

  .faq-left {
    width: 60%;
    border-right: 1px solid rgba(93, 64, 55, 0.1);
  }

  .faq-right {
    width: 40%;
    padding: 0;
  }

  .faq-big-letters {
    font-size: clamp(140px, 12vw, 220px);
  }
}

/* ======================================================================
   4g. AREAS WE SERVE BLOCK
   ====================================================================== */
.areas-serve-block {
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.areas-left {
  padding: clamp(20px, 4vw, 50px);
  width: 100%;
}

.areas-left h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #4E342E;
  font-weight: 800;
  border-left: 6px solid #5D4037;
  padding-left: 15px;
  line-height: 1.25;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.areas-desc {
  font-size: clamp(13.5px, 2vw, 15px);
  color: #3E2723;
  font-weight: 550;
  line-height: 1.5;
  margin-bottom: 25px;
  text-indent: 0 !important;
  text-align: left;
}

.areas-buttons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-btn {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(93, 64, 55, 0.18);
  border-radius: 30px;
  padding: 10px 18px;
  color: #4E342E;
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 14.5px);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.area-btn:hover {
  background: rgba(93, 64, 55, 0.08);
  border-color: #5D4037;
  transform: translateY(-2px);
}

.area-btn.active {
  background: linear-gradient(135deg, #5D4037, #3E2723);
  border-color: #3E2723;
  color: white;
  box-shadow: 0 4px 10px rgba(93, 64, 55, 0.35);
  transform: translateY(-2px);
}

.areas-right {
  width: 100%;
  height: 320px;
  overflow: hidden;
  box-sizing: border-box;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
  .areas-serve-block {
    flex-direction: row;
    align-items: stretch;
  }

  .areas-left {
    width: 50%;
    border-right: 1px solid rgba(93, 64, 55, 0.1);
  }

  .areas-right {
    width: 50%;
    height: auto;
  }

  .map-wrapper {
    border-radius: 0 15px 15px 0;
  }
}

.text-container ul {
  margin: clamp(15px, 4vw, 25px) 0;
  padding-left: clamp(15px, 4vw, 25px);
  list-style: none;
}

.text-container ul li {
  margin-bottom: clamp(8px, 2vw, 12px);
  font-size: clamp(14px, 2.5vw, 17px);
  color: #3E2723;
  position: relative;
  padding-left: clamp(20px, 4vw, 28px);
  line-height: 1.3;
}

.text-container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #5D4037;
  font-weight: bold;
  font-size: clamp(14px, 2.5vw, 18px);
}

.text-container strong {
  color: #4E342E;
  font-weight: 600;
}

.image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.image-container video,
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .image-container {
    width: 50%;
    height: auto;
    position: relative;
  }
  .image-container video,
  .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ======================================================================
   5. BOOKING FORM SECTION
   ====================================================================== */
.sauna-section {
  width: 90%;
  max-width: 1400px;
  margin: 20px auto;
  padding: 0;
  display: flex;
  justify-content: center;
  animation: blockFadeIn 1s ease forwards;
}

.sauna-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  padding: clamp(20px, 4vw, 50px);
  display: flex;
  gap: 50px;
  flex-direction: row;
}

.sauna-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sauna-title {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  color: #4E342E;
  margin-bottom: 20px;
  font-weight: 700;
}

.sauna-desc {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #3E2723;
  line-height: 1.55;
  font-weight: 600;
}

.sauna-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sauna-form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sauna-input,
.sauna-textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid #5D4037;
  background: rgba(255,255,255,0.85);
  font-size: 16px;
  font-family: "Arial", sans-serif;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.sauna-textarea {
  min-height: 140px;
  resize: none !important;
}

.phone-input-container {
  width: 100%;
}

/* intl-tel-input integration overrides */
.iti {
  display: block !important;
  width: 100%;
}
.iti__country-list {
  background-color: rgba(255, 255, 255, 0.98) !important;
  border: 2px solid #5D4037 !important;
  border-radius: 12px !important;
  color: #3E2723 !important;
  font-family: Arial, sans-serif !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
  z-index: 1000 !important;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.iti__country-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.iti__country {
  padding: 10px 14px !important;
  outline: none !important;
}
.iti__country.iti__highlight {
  background-color: rgba(93, 64, 55, 0.1) !important;
}
.iti__country-name {
  color: #3E2723 !important;
  font-weight: 600 !important;
}
.iti__dial-code {
  color: #8D6E63 !important;
}
@media (max-width: 500px) {
  .iti__country-list {
    width: 280px !important;
    max-width: calc(100vw - 40px) !important;
    font-size: 14px !important;
  }
  .iti__country {
    padding: 8px 10px !important;
  }
}

.sauna-input:focus,
.sauna-textarea:focus {
  border-color: #4E342E;
  box-shadow: 0 0 8px rgba(93,64,55,0.5);
  outline: none;
}

.sauna-submit-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #5D4037, #3E2723);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(93, 64, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 10px;
  font-family: inherit;
}

.sauna-submit-btn:hover {
  background: linear-gradient(135deg, #4E342E, #2A1B18);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.5);
}

.sauna-submit-btn:active {
  transform: translateY(-1px);
}

.sauna-submit-btn:disabled {
  background: #BCAAA4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ======================================================================
   6. SERVICES SECTION
   ====================================================================== */
.services-block {
  display: flex;
  flex-direction: column; 
  width: 90%;
  max-width: 1400px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: blockFadeIn 1s ease forwards;
  text-align: center;
  padding: clamp(15px, 3vw, 30px);
  height: auto;
}

.services-block .section-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  color: #4E342E;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.services-block .section-header p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #3E2723;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(15px, 3vw, 20px);
  padding: 10px 0;
  align-items: stretch;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: clamp(8px, 1.5vw, 12px);
  padding: clamp(12px, 2.5vw, 20px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border: 1px solid rgba(93, 64, 55, 0.1);
  position: relative;
  overflow: hidden;
  animation: cardAppear 0.6s ease forwards;
}

.service-card h3,
.service-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5D4037, #4E342E);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5D4037, #4E342E);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: rgba(93, 64, 55, 0.3);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.services-container .service-card .card-image-container {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  display: block !important;
  margin: 0 auto clamp(12px, 2vw, 16px) !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35) !important;
}

.services-container .service-card .card-image-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  transform: none !important;
  filter: none !important;
  border-radius: 10px !important;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: clamp(16px, 3vw, 20px);
  color: #5D4037;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  text-align: center;
  line-height: 1.3;
}

.service-card p {
  font-size: clamp(13px, 2.2vw, 15px);
  color: #3E2723;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  text-align: center;
  flex-grow: 1;
  margin: 0;
}

/* ======================================================================
   7. SHOWCASE GALLERY
   ====================================================================== */
.gallery-block.content-block {
  width: 90%;
  max-width: 1400px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  animation: blockFadeIn 1s ease forwards;
  display: flex;
  flex-direction: column;
  height: clamp(300px, 50vw, 500px);
  padding: 0;
}

.gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: scrollGallery 200s linear infinite;
  will-change: transform;
}

.gallery-item {
  position: relative;
  height: 100%;
  width: auto;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}

.gallery-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: white;
  padding: 12px 15px;
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.gallery-item:hover .gallery-caption {
  background: rgba(93, 64, 55, 0.85);
}

.gallery:hover .gallery-track {
  animation-play-state: paused !important;
}

/* ======================================================================
   8. FOOTER
   ====================================================================== */
.site-footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  color: #fff;
  z-index: 10;
  position: relative;
}

.site-footer .footer-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 28px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(15px, 3vw, 24px);
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
}

.footer-col a {
  display: inline-block;
  color: #e9f2f8;
  text-decoration: none;
  margin: 4px 0;
  transition: color .25s ease, text-shadow .25s ease;
  font-size: clamp(14px, 2.5vw, 16px);
}

.footer-col a:hover {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.footer-logo {
  height: clamp(35px, 6vw, 48px);
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-title {
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  font-size: clamp(16px, 3vw, 18px);
}

.footer-tagline {
  color: #e9f2f8;
  opacity: .9;
  font-size: clamp(12px, 2vw, 14px);
  margin-top: 4px;
}

.footer-address {
  margin-top: 6px;
  color: #e9f2f8;
  opacity: .95;
  font-size: clamp(12px, 2vw, 14px);
}

.social-row {
  display: flex;
  gap: clamp(12px, 2.5vw, 18px);
  margin-top: 8px;
  align-items: center;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, filter .3s ease;
}

.social-row a:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

.social-icon-full {
  width: clamp(35px, 6vw, 44px);
  height: clamp(35px, 6vw, 44px);
  object-fit: contain;
  display: block;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(8px, 2vw, 12px) 0 clamp(12px, 2.5vw, 16px);
  color: #dfeaf1;
  font-size: clamp(12px, 2vw, 14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

/* Footer layout specific tweaks */
.site-footer .footer-col a[href^="tel"],
.site-footer .footer-col a[href^="mailto"] {
  display: block !important;
  margin: 4px 0;
  line-height: 1.4;
}

.site-footer .footer-col a[href^="tel"] {
  font-weight: 700;
  color: #ffffff;
}

.site-footer .footer-col a[href^="mailto"] {
  color: #e0edf7;
  font-weight: 500;
}

/* ======================================================================
   9. OFFCANVAS SIDE MENU
   ====================================================================== */
.offcanvas-backdrop {
  position: fixed; 
  inset: 0;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1001; /* Layer above sticky sub-navbar (1000) */
}

.offcanvas {
  position: fixed;
  top: 0; 
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 1002; /* Layer above backdrop (1001) */
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -8px 0 24px rgba(0,0,0,0.25);
  color: #fff;
}

.offcanvas.is-open { 
  transform: translateX(0); 
}

.offcanvas-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offcanvas-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.offcanvas-title {
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis;
  font-size: 18px;
}

.offcanvas-close {
  justify-self: end;
  width: 40px; 
  height: 40px;
  background: transparent; 
  border: 0; 
  color: #fff;
  font-size: 26px; 
  line-height: 1; 
  cursor: pointer;
}

.offcanvas-body {
  display: grid; 
  gap: 12px;
  padding: 20px;
}

.offcanvas-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.offcanvas-link:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.offcanvas-link:active { 
  transform: translateY(0); 
}

.offcanvas-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.offcanvas-backdrop[hidden] { 
  display: none !important; 
}

.off-viber {
  background: rgba(136, 79, 161, 0.2) !important;
  border-color: rgba(136, 79, 161, 0.4) !important;
}

.off-messenger {
  background: rgba(0, 132, 255, 0.2) !important;
  border-color: rgba(0, 132, 255, 0.4) !important;
}

.off-whatsapp {
  background: rgba(37, 211, 102, 0.2) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
}

.off-viber:hover { background: rgba(136, 79, 161, 0.3) !important; }
.off-messenger:hover { background: rgba(0, 132, 255, 0.3) !important; }
.off-whatsapp:hover { background: rgba(37, 211, 102, 0.3) !important; }

.offcanvas-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 10px 0;
}

.offcanvas-nav-item {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.offcanvas-nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.offcanvas-nav-item.offcanvas-booking-btn {
  background: rgba(255, 143, 0, 0.18) !important;
  border: 1px solid #FF8F00 !important;
  color: #FFB300 !important;
  text-align: center;
  font-weight: 750;
  margin-top: 15px;
  letter-spacing: 1px;
  text-shadow: none !important;
}

.offcanvas-nav-item.offcanvas-booking-btn:hover {
  background: linear-gradient(135deg, #FF8F00, #FFB300) !important;
  color: #ffffff !important;
  border-color: #FF8F00 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 143, 0, 0.3);
}

/* ======================================================================
   10. ANIMATIONS
   ====================================================================== */
@keyframes fadeIn {
  to { 
    opacity: 1; 
    transform: translate(-50%, -50%); 
  }
}

@keyframes blockFadeIn {
  0% { 
    opacity: 0; 
    transform: translateY(50px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes scrollGallery {
  from { 
    transform: translateX(0); 
  }
  to { 
    transform: translateX(-50%); 
  }
}

@keyframes cardAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================================================
   11. RESPONSIVE RESPONSIVENESS & BREAKPOINTS (OPTIMIZED RESPONSIVE GRID)
   ====================================================================== */

/* --- High Viewports & Desktop Layouts --- */
@media (min-width: 1400px) {
  .services-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  .service-card {
    padding: 25px 20px;
  }
  .service-card .card-image-container {
    height: 200px;
  }
}

@media (min-width: 769px) {
  .site-footer .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .phone-btn .label-call {
    display: none !important;
  }
}

/* --- Tablets & Medium viewports (769px to 1024px) --- */
@media (max-width: 1024px) {
  .content-block {
    flex-direction: column;
    height: auto;
  }
  
  .text-container, .image-container, .form-container {
    width: 100%;
  }
  
  .text-container { 
    padding: 22px; 
    max-height: none; 
  }
  
  .image-container { 
    height: 240px; 
  }

  /* Services layout on tablet */
  .services-block {
    width: 90% !important;
    max-width: 1400px !important;
    margin: 20px auto !important;
    box-sizing: border-box;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
  }

  .services-block * {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 16px !important;
  }

  .service-card {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .service-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }

  .service-card h3 {
    font-size: 18px;
    margin: 10px 0 6px;
    color: #5D4037 !important;
  }
  
  .service-card p {
    font-size: 15px;
    padding: 0 8px 14px;
    color: #3E2723 !important;
  }

  .service-card .card-image-container {
    height: 180px;
  }

  /* Booking form container dynamic layout */
  .sauna-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  /* Gallery as Carousel on tablet and below */
  .gallery-block.content-block {
    height: 300px !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: relative;
    overflow: hidden !important;
    border-radius: 15px !important;
  }

  .gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
  }

  .gallery-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    animation: none !important;
    transition: transform 0.4s ease !important;
    will-change: transform;
    position: relative;
  }

  .gallery-track .gallery-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    display: block !important;
    position: relative !important;
  }

  .gallery-track .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    filter: none !important;
    transform: none !important;
    display: block !important;
  }

  .gal-dots {
    display: none !important;
  }

  .gal-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .gal-dots button.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
  }

  .gal-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
  }

  .gal-ctrl:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .gal-prev { left: 15px; }
  .gal-next { right: 15px; }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .center-text {
    font-size: clamp(18px, 2.2vw, 28px);
    max-width: 40%;
  }
  .phone-btn {
    padding: 7px 12px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .navbar-content {
    gap: 12px;
  }
  .center-text {
    font-size: clamp(16px, 2vw, 22px);
    max-width: 35%;
  }
  .phone-btn {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 110px;
  }
  .logo img {
    max-height: 40px;
  }
}

/* --- Footer stack rules on mobile-ish devices --- */
@media (max-width: 900px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding: 0 15px;
  }

  .footer-col h4 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
  }

  .footer-col a {
    display: block;
    color: #e9f2f8;
    text-decoration: none;
    margin: 6px 0;
    transition: color .25s ease;
    font-size: 15px;
    text-align: center;
  }

  .footer-col a:hover {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }

  .footer-logo { 
    height: 45px;
    margin-bottom: 12px;
  }

  .footer-title {
    font-weight: 800;
    color: #fff;
    font-size: 17px;
    margin-bottom: 4px;
  }

  .footer-tagline {
    color: #e9f2f8;
    opacity: .9;
    font-size: 14px;
    margin-top: 4px;
  }

  .footer-address {
    margin-top: 8px;
    color: #e9f2f8;
    opacity: .95;
    font-size: 14px;
  }

  .social-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
  }

  .social-icon-full {
    width: 35px;
    height: 35px;
  }
}

/* --- Mobile viewports (<= 768px) --- */
@media (max-width: 768px) {
  /* Dynamic Header symmetric fix */
  .navbar { 
    height: 80px !important; 
    padding: 0 12px;
  }
  
  .navbar-content { 
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    height: 80px !important;
    padding: 0 16px !important;
  }

  .logo-burger-container {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    justify-self: start;
    z-index: 1000 !important;
  }

  .logo img { 
    max-height: 40px; 
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    gap: 6px !important;
    z-index: 1001 !important; 
    position: relative !important;
  }

  .nav-toggle span {
    width: 30px !important;
    height: 3px !important;
    background: #fff !important;
    border-radius: 2px !important;
    position: static !important; /* Overriding absolute mobile presets */
  }

  /* Centered logo-text on mobile navbar */
  .center-text {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    flex: 1 1 auto !important;
    text-align: center !important;
    font-size: clamp(22px, 6vw, 28px) !important;
    letter-spacing: .5px !important;
    max-width: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 6px !important;
  }

  .brand {
    justify-self: center;
    text-align: center;
    font-size: clamp(16px, 5vw, 22px);
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateX(6px);
  }

  /* Phone button becomes just phone icon on mobile */
  .phone-btn {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important; 
    flex-shrink: 0;
  }

  .phone-btn img.label-call {
    display: block !important;
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
  }

  .phone-btn .label-full { 
    display: none !important; 
  }

  /* Content block: Text on TOP, video on BOTTOM - FULL VISIBLE, NO INNER SCROLLBARS */
  .content-block:not(.gallery-block):first-of-type {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    border-radius: 15px;
  }

  .content-block:not(.gallery-block):first-of-type .text-container {
    overflow: visible !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 24px 20px !important;
    background: rgba(255,255,255,0.6);
    border-radius: 15px 15px 0 0;
    box-sizing: border-box;
  }

  .content-block:not(.gallery-block):first-of-type .text-container ul {
    padding-left: 10px !important;
    margin-left: 0 !important;
  }
  
  .content-block:not(.gallery-block):first-of-type .text-container ul li {
    padding-left: 22px !important;
    text-indent: 0 !important;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .content-block:not(.gallery-block):first-of-type .text-container ul li::before {
    left: 0 !important;
    color: #5D4037 !important; 
  }

  .content-block:not(.gallery-block):first-of-type .image-container {
    height: 250px !important;
    width: 100%;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    position: relative !important;
  }
  
  .content-block:not(.gallery-block):first-of-type .image-container video,
  .content-block:not(.gallery-block):first-of-type .image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: static !important;
  }

  .image-container {
    height: 300px !important; 
    min-height: 250px !important;
  }
  
  .image-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important; 
  }

  /* Booking / Reservation Form on Mobile */
  .sauna-section {
    width: 90% !important;
    max-width: 1400px !important;
    margin: 20px auto !important;
    padding: 14px !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.50) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
    box-sizing: border-box;
    background-color: transparent !important;
  }

  .sauna-section .sauna-left,
  .sauna-section .sauna-right {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .sauna-section .sauna-left {
    margin-bottom: 12px !important;
  }

  .sauna-section .sauna-left .sauna-title {
    font-size: 28px !important;
    color: #4E342E !important;
    margin-bottom: 8px !important;
    text-align: left;
    border-left: 6px solid #5D4037 !important;
    padding-left: 12px;
    text-shadow: none !important;
  }

  .sauna-section .sauna-left .sauna-desc {
    font-size: 15px !important;
    color: #3E2723 !important;
    text-align: justify;
    line-height: 1.4;
    text-shadow: none !important;
  }

  .sauna-section .sauna-form .sauna-input,
  .sauna-section .sauna-form .sauna-textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(93, 64, 55, 0.7) !important;
    color: #3E2723;
  }

  .sauna-section .sauna-form .sauna-input:focus,
  .sauna-section .sauna-form .sauna-textarea:focus {
    border-color: #4E342E !important;
    box-shadow: 0 0 8px rgba(93, 64, 55, 0.5) !important;
  }

  .sauna-section .sauna-form .sauna-textarea {
    min-height: 120px;
    resize: vertical;
  }

  .sauna-submit-btn {
    padding: 14px 20px !important;
    font-size: 16px !important;
  }


  /* Services mobile styles override */
  .services-block {
    width: 92%;
    margin: clamp(12px, 2.5vw, 20px) auto;
    padding: clamp(12px, 2.5vw, 20px);
  }
  
  .services-container {
    grid-template-columns: 1fr;
    gap: clamp(10px, 2vw, 15px);
  }
  
  .service-card {
    padding: clamp(10px, 2vw, 16px);
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
  
  .service-card .card-image-container {
    height: clamp(100px, 20vw, 150px);
  }
  
  .service-card h3 {
    font-size: clamp(15px, 2.8vw, 18px);
    color: #362525 !important; 
  }
  
  .service-card p {
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.4;
    color: #361c1c !important; 
  }

  /* Booking form controls on mobile */
  .sauna-form .sauna-input,
  .sauna-form .sauna-textarea,
  .sauna-form .platform-btn {
    font-size: 16px;
    padding: 12px 14px;
  }

  .sauna-form .sauna-input,
  .sauna-form .sauna-textarea {
    margin-bottom: 10px;
  }
}

/* --- Mobile viewport extra rules --- */
@media (max-width: 768px) and (min-width: 481px) {
  .logo-burger-container {
    gap: 8px;
  }
  .logo img {
    max-height: 32px;
  }
}

/* --- Small viewports (<= 480px) --- */
@media (max-width: 480px) {
  .services-block {
    width: 90%;
    padding: clamp(10px, 2vw, 15px);
    border-radius: 12px;
  }
  
  .services-block .section-header h2 {
    font-size: clamp(20px, 4vw, 24px);
    color: #4E342E !important; 
    margin-bottom: clamp(6px, 1.2vw, 8px);
  }
  
  .services-block .section-header p {
    font-size: clamp(12px, 2.2vw, 14px);
    color: #3E2723 !important; 
    line-height: 1.3;
  }
  
  .services-container {
    gap: clamp(8px, 1.5vw, 12px);
  }
  
  .service-card {
    padding: clamp(8px, 1.8vw, 14px);
    border-radius: 10px;
  }
  
  .service-card .card-image-container {
    height: 160px;
    margin-bottom: clamp(8px, 1.8vw, 12px);
    border-radius: 6px;
    aspect-ratio: 1 / 1 !important;
  }
  
  .service-card h3 {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #513731 !important; 
    margin-bottom: clamp(6px, 1.2vw, 8px);
  }
  
  .service-card p {
    font-size: clamp(11px, 1.8vw, 13px);
    color: #453431 !important; 
    line-height: 1.3;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .site-footer .footer-content {
    width: 98%;
    padding: 15px 0;
    gap: 15px;
  }
  
  .footer-col {
    padding: 0 10px;
  }
  
  .footer-logo {
    height: 35px;
  }
  
  .footer-title {
    font-size: 15px;
  }
  
  .footer-tagline,
  .footer-address,
  .footer-col a {
    font-size: 13px;
  }
  
  .social-icon-full {
    width: 30px;
    height: 30px;
  }

  .navbar {
    height: 70px;
  }
  
  .navbar-content {
    width: 98%;
    padding: 0 5px;
    gap: 5px;
  }
  
  .logo-burger-container {
    gap: 5px;
  }
  
  .logo img {
    max-height: 30px;
  }
  
  .nav-toggle {
    width: 40px;
    height: 40px;
    z-index: 1001; 
  }
  
  .nav-toggle span {
    width: 24px;
    height: 3px;
  }
  
  .center-text {
    font-size: 14px;
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
  }
  
  .phone-btn {
    padding: 5px 8px;
    font-size: 11px;
    min-width: auto;
    z-index: 1000; 
  }
  
  .phone-btn img.label-call {
    width: 35px;
    height: 35px;
  }
}

/* --- Extra Small viewports (<= 360px) --- */
@media (max-width: 360px) {
  .center-text {
    font-size: 12px;
    max-width: 45%;
  }
  
  .logo img {
    max-height: 25px;
  }
  
  .nav-toggle {
    width: 35px;
    height: 35px;
    z-index: 1001; 
  }
  
  .nav-toggle span {
    width: 20px;
    height: 2px;
  }
  
  .phone-btn {
    padding: 4px 6px;
    font-size: 10px;
  }
  
  .phone-btn img.label-call {
    width: 30px;
    height: 30px;
  }
}

/* --- Extremely Small viewports (<= 320px) --- */
@media (max-width: 320px) {
  .navbar-content {
    justify-content: space-between;
  }
  
  .center-text {
    display: none;
  }
  
  .logo-burger-container {
    flex: 1;
    justify-content: flex-start;
  }
  
  .phone-btn {
    flex: 0 0 auto;
  }
}

/* --- Grid adaptive layout for footer on mobile --- */
@media (max-width: 767px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  
  .footer-col {
    align-items: center;
    margin-bottom: 20px;
  }
  
  .footer-col:last-child {
    margin-bottom: 0;
  }
  
  .footer-col h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-col a {
    text-align: center;
    font-size: 15px;
  }
}

/* ======================================================================
   9. FLOATING ACTION BUTTONS
   ====================================================================== */
html {
  scroll-behavior: smooth !important;
}

.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 995;
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1); /* Butter-smooth sliding transition */
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 750;
  color: #ffffff !important;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.to-top-btn {
  background: linear-gradient(135deg, #5D4037, #3E2723) !important; /* Rich copper-chocolate wood brown gradient */
  width: 44px !important;
  height: 0 !important; /* Collapsed by default */
  opacity: 0 !important;
  pointer-events: none !important;
  border-radius: 50% !important; /* Perfect circle */
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  align-self: center; /* Center horizontally above the buttons */
  color: #ffffff !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; /* Smooth accordion scaling */
}

.to-top-btn.visible {
  height: 44px !important; /* Expand to full size */
  opacity: 1 !important;
  pointer-events: auto !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  margin-bottom: 8px !important; /* Spacing below the circle when visible */
}

.to-top-btn:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 22px rgba(93, 64, 55, 0.6) !important; /* Warm brown theme glow */
}



/* Individual Gradient Colors */
.estimate-btn {
  background: linear-gradient(135deg, #E65100, #F57C00); /* Dark Orange to Light Orange */
}
.estimate-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(245, 124, 0, 0.5);
}

.quote-btn {
  background: linear-gradient(135deg, #FF8F00, #FFB300); /* Dark Amber to Light Amber */
}
.quote-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(255, 143, 0, 0.5);
}

.call-btn {
  background: linear-gradient(135deg, #2E7D32, #4CAF50); /* Dark Green to Light Green */
}
.call-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(76, 175, 80, 0.5);
}

.consult-btn {
  background: linear-gradient(135deg, #1565C0, #1E88E5); /* Dark Blue to Royal Blue */
}
.consult-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(30, 136, 229, 0.5);
}

/* Responsive Mobile Layout - Bottom-Right Floating Stack */
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 15px;
    left: auto;
    width: auto;
    gap: 8px;
  }

  .float-btn {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  
  .float-btn:hover {
    transform: none;
  }

  body {
    padding-bottom: 0 !important;
  }
}

/* ======================================================================
   11b. BOOKING FORM STATUS MESSAGES
   ====================================================================== */
.form-status-message {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: left;
  box-sizing: border-box;
  animation: fadeIn 0.4s ease forwards;
}

.form-status-message.success {
  display: block;
  background: rgba(46, 125, 50, 0.12) !important;
  border: 1.5px solid #4CAF50 !important;
  color: #2E7D32 !important; /* Dark green for light background */
}

.form-status-message.error {
  display: block;
  background: rgba(198, 40, 40, 0.12) !important;
  border: 1.5px solid #EF5350 !important;
  color: #C62828 !important; /* Dark red for light background */
}

.form-status-message.info {
  display: block;
  background: rgba(230, 81, 0, 0.12) !important;
  border: 1.5px solid #FF8F00 !important;
  color: #E65100 !important; /* Dark orange for light background */
}

/* High contrast adjustments for mobile dark overlay */
@media (max-width: 768px) {
  .form-status-message.success {
    color: #A5D6A7 !important; /* Bright light green */
  }
  .form-status-message.error {
    color: #EF9A9A !important; /* Bright light red */
  }
  .form-status-message.info {
    color: #FFE0B2 !important; /* Bright light orange */
  }
}

/* Booking submit button status states (sending and success green states) */
.sauna-submit-btn.sending {
  background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4) !important;
  cursor: not-allowed !important;
  opacity: 0.95;
}

.sauna-submit-btn.sent-success {
  background: linear-gradient(135deg, #1B5E20, #2E7D32) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4) !important;
  cursor: default !important;
}

/* ======================================================================
   12. RESPONSIVE DESIGN BREAKPOINTS AUDIT
   (Conform Ghidului de Dimensiuni și Layout)
   ====================================================================== */

/* --- 1. Monitoare Mari / Ultrawide (1920px+) --- */
@media (min-width: 1920px) {
  .content-block,
  .sauna-section {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* --- 2. Desktop Standard (1280px – 1440px) --- */
@media (min-width: 1280px) and (max-width: 1919px) {
  .content-block,
  .sauna-section {
    max-width: 1200px !important; /* Centralized container */
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* --- 3. Tabletă (Landscape) / Laptop Mic (1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .content-block,
  .sauna-section {
    width: 92% !important;
    max-width: 1000px !important;
  }
  .services-container {
    grid-template-columns: repeat(3, 1fr) !important; /* 3 Columns */
  }
}

/* --- 4. Tabletă (Portrait) (481px - 768px) --- */
@media (min-width: 481px) and (max-width: 768px) {
  .content-block,
  .sauna-section {
    width: 94% !important;
    max-width: 720px !important;
    padding: 25px !important; /* Spacious spacing */
  }
  .why-choose-grid,
  .reviews-grid,
  .services-container {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 Columns */
    gap: 20px !important;
  }
  .how-we-work-content,
  .why-choose-content,
  .why-us-content,
  .reviews-content,
  .services-block {
    padding: 25px !important;
  }
}

/* --- 5. Mobil Mic / Mediu (<= 480px) --- */
@media (max-width: 480px) {
  /* Layout on a single column */
  .why-us-grid,
  .reviews-grid,
  .services-container,
  .sauna-container,
  .areas-serve-block,
  .faq-block,
  .content-block {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
  
  .areas-left, .areas-right, .faq-left, .faq-right {
    width: 100% !important;
  }

  .map-wrapper {
    height: 280px !important;
    border-radius: 0 0 15px 15px !important;
  }

  /* Set highly readable body text (min. 16px) */
  p, 
  li, 
  .why-us-text p, 
  .review-body p, 
  .step-card p, 
  .faq-answer p, 
  .areas-desc, 
  .service-card p,
  .sauna-form .sauna-input,
  .sauna-form .sauna-textarea,
  .sauna-form .sauna-label,
  .sauna-form .sauna-select,
  .sauna-submit-btn {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  /* Make buttons large and easy to click with the thumb (min tap area 48px) */
  .btn,
  .sauna-submit-btn,
  .area-btn,
  .offcanvas-link,
  .offcanvas-nav-item,
  .float-btn {
    font-size: 16px !important;
    padding: 14px 24px !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  
  /* Reset margins for mobile compactness */
  .content-block {
    width: 95% !important;
    margin: 15px auto !important;
  }
  
  .why-us-content,
  .reviews-content,
  .how-we-work-content,
  .faq-left,
  .areas-left,
  .services-block {
    padding: 20px !important;
  }
}

/* --- Redesign of Why Choose Us block on mobile (<= 768px) --- */
@media (max-width: 768px) {
  .why-us-block {
    background: rgba(30, 18, 16, 0.82) !important; /* Rich dark warm wood tint */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
  }

  .why-us-content h2 {
    color: #FFB300 !important; /* Glowing warm gold title */
    border-left: 6px solid #FF8F00 !important; /* Gold border indicator */
    text-shadow: 0 2px 10px rgba(255, 179, 0, 0.2) !important;
  }

  .why-us-grid {
    display: flex !important;
    flex-direction: column !important; /* Stack vertically (unul sub altul) on mobile only */
    gap: 15px !important;
    width: 100% !important;
  }

  .why-us-card {
    cursor: pointer !important; /* Tap targets cursor */
    background: rgba(255, 255, 255, 0.05) !important; /* Translucent glass cards */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 16px 18px !important; /* Elegant compact padding */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: row !important; /* Ensure horizontal badge + text flow */
    align-items: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .why-us-badge {
    background: linear-gradient(135deg, #FF8F00, #E65100) !important; /* Glowing gold/copper badge */
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 12px rgba(255, 143, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
  }

  .why-us-text h3 {
    color: #FFE0B2 !important; /* Cream card title */
    font-size: 17px !important;
    font-weight: 750 !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.3px !important;
  }

  /* Collapse description on mobile by default */
  .why-us-text p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease !important;
  }

  /* Expand description on hover/tap on mobile */
  .why-us-card:hover .why-us-text p,
  .why-us-card.active .why-us-text p {
    max-height: 120px !important;
    opacity: 1 !important;
    margin-top: 8px !important;
  }

  /* --- Sticky Bottom Action Tab-Bar on Mobile (<= 768px) --- */
  body {
    padding-bottom: 58px !important; /* Prevent footer copyright overlap */
  }

  .floating-actions {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    flex-direction: row !important; /* Horizontal layout */
    background: rgba(46, 28, 26, 0.96) !important; /* Premium dark warm wood theme */
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 8px 12px !important;
    gap: 8px !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 1000 !important;
    border-radius: 0 !important; /* Flatten corners */
    height: 58px !important;
    box-sizing: border-box !important;
  }

  /* Exclude Back to Top button from horizontal flex bar layout */
  .floating-actions .to-top-btn {
    position: fixed !important;
    right: 15px !important;
    left: auto !important;
    z-index: 1001 !important;
    align-self: auto !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  }

  /* Equal width compact buttons side-by-side */
  .floating-actions .float-btn:not(.to-top-btn) {
    flex: 1 1 0% !important;
    padding: 0 2px !important; /* Maximizes horizontal space for larger text */
    min-height: auto !important;
    height: 42px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Replace long text with short labels on mobile */
  .estimate-btn {
    font-size: 0 !important;
  }
  .estimate-btn::before {
    content: "Estimate" !important;
    font-size: clamp(12.5px, 3.2vw, 14.5px) !important;
    font-weight: 750 !important;
  }

  .quote-btn {
    font-size: 0 !important;
  }
  .quote-btn::before {
    content: "Quote" !important;
    font-size: clamp(12.5px, 3.2vw, 14.5px) !important;
    font-weight: 750 !important;
  }

  .call-btn {
    font-size: 0 !important;
  }
  .call-btn::before {
    content: "📞 Call" !important;
    font-size: clamp(12.5px, 3.2vw, 14.5px) !important;
    font-weight: 750 !important;
  }

  .consult-btn {
    font-size: 0 !important;
  }
  .consult-btn::before {
    content: "Consult" !important;
    font-size: clamp(12.5px, 3.2vw, 14.5px) !important;
    font-weight: 750 !important;
  }
}
