/* 1. GLOBAL DEFINITIONS, TYPOGRAPHY & RESET */
:root {
  /* Fonts */
  --font-sans: "Geist", sans-serif;
  --font-serif: "Playfair Display", serif;

  /* Colors */
  --color-dark: #1a1a1a;
  --color-green: #52634c;
  --color-green-hover: #43523e;
  --color-green-arrow-bg: rgba(255, 255, 255, 0.22);
  --color-white: #ffffff;
  --color-bg-light: #ffffff;

  /* Fluid typography */
  --fs-body: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  --fs-h1: clamp(2.8rem, 5vw + 1.5rem, 6.5rem);
  --fs-h2: clamp(2rem, 1.6rem + 2vw, 3.8rem);
  --fs-h3: clamp(1.4rem, 1.2rem + 0.75vw, 2.25rem);
  --fs-freestyle: clamp(2.75rem, 2.2rem + 2.75vw, 6rem);
  --fs-nav: clamp(0.9rem, 0.85rem + 0.2vw, 1.05rem);

  /* Global section spacing */
  --section-spacing-desktop: 140px;
  --section-spacing-mobile: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-dark);
  background-color: var(--color-bg-light);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.3;
}

p,
li,
label,
input,
textarea {
  font-size: var(--fs-body);
  font-weight: 300;
}

.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-green) !important;
}

.section-container {
  width: 100%;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 2.5rem !important;
  box-sizing: border-box;
}

.hamburger-btn {
  display: none !important;
}

/* HIDE MOBILE ELEMENTS ON DESKTOP */
.mobile-menu-header,
.mobile-menu-bottom,
.overlay-footer-zone,
.banner-mobile-tags-box {
  display: none !important;
}

/* 2. BUTTON STYLES */

/* 2A. BENTO PILL (Glass Effect) */
.bento-pill {
  flex: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 24px !important;
  background: rgba(30, 30, 30, 0.6) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 100px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
}

.bento-pill:hover {
  background: var(--color-dark) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 4px 15px rgba(82, 99, 76, 0.3) !important;
}

/* 2B. BENTO PILL WITH ARROW */
.bento-pill-arrow {
  justify-content: space-between !important;
  padding: 6px 6px 6px 20px !important;
  gap: 12px !important;
}

.bento-pill-arrow::after {
  content: "" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.25) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 16px 16px !important;
  flex-shrink: 0 !important;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease !important;
}

.bento-pill-arrow:hover::after {
  background-color: rgba(255, 255, 255, 0.32) !important;
  transform: scale(1.04) !important;
}

/* 2C. GREEN ARROW BUTTON */
.btn-solar-olive,
.btn-footer-reserve,
.btn-olive {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background-color: var(--color-green) !important;
  color: #ffffff !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 6px 6px 6px 24px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  width: fit-content !important;
  max-width: fit-content !important;
  align-self: flex-start !important;
  box-sizing: border-box !important;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(82, 99, 76, 0.25) !important;
  border: none !important;
  cursor: pointer !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

.btn-solar-olive::after,
.btn-footer-reserve::after,
.btn-olive::after {
  content: "" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background-color: var(--color-green-arrow-bg) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 18px 18px !important;
  flex-shrink: 0 !important;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease !important;
}

.btn-solar-olive .btn-arrow-circle {
  display: none !important;
}

.btn-solar-olive:hover,
.btn-footer-reserve:hover,
.btn-olive:hover {
  background-color: var(--color-green-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(82, 99, 76, 0.35) !important;
}

.btn-solar-olive:hover::after,
.btn-footer-reserve:hover::after,
.btn-olive:hover::after {
  background-color: rgba(255, 255, 255, 0.35) !important;
  transform: scale(1.05) !important;
}

/* 2D. DARK OVAL BUTTON */
.btn-dark-oval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  width: fit-content;
  margin-top: 10px;
}

.btn-dark-oval:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* 3. HEADER & NAVIGATION (DESKTOP) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  max-width: none !important;
  z-index: 9999 !important;

  background:
    radial-gradient(
      ellipse 80% 50% at 50% -20%,
      rgba(255, 255, 255, 0.45),
      transparent 70%
    ),
    radial-gradient(circle at 10% 20%, rgba(82, 99, 76, 0.22), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(82, 99, 76, 0.18), transparent 50%),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(82, 99, 76, 0.08) 100%
    ) !important;

  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;

  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  pointer-events: none;
}
.main-header.header-light-theme .nav-links a {
  color: #000000 !important;
}

.main-header.header-light-theme .header-logo {
  filter: brightness(0) !important;
}

.main-header.header-light-theme .hamburger-line {
  background-color: #000000 !important;
}
.main-header.is-scrolled,
.main-header.header-light-theme {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.nav-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 16px 2.5rem !important;
  box-sizing: border-box !important;
  pointer-events: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.main-header.is-scrolled .header-logo,
.main-header.header-light-theme .header-logo {
  filter: brightness(0) !important;
}

.nav-menu-wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none !important;
  gap: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links .menu-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

.nav-links .status-cube {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  background-color: transparent !important;
  border-radius: 1px !important;
  transition: background-color 0.3s ease !important;
  flex-shrink: 0 !important;
}

.nav-item.is-active .status-cube {
  background-color: var(--color-green) !important;
}

.btn-contact-item .status-cube {
  display: none !important;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: var(--fs-nav);
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    color 0.3s ease;
}

.main-header.is-scrolled .nav-links a,
.main-header.header-light-theme .nav-links a {
  color: #000000 !important;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* 4. HERO SECTION (AKER ARCHITECTURAL STYLE) */
.aker-layout {
  height: 100vh !important;
  min-height: 750px !important;
  display: flex !important;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #000;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.aker-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 2;
}

.aker-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100%;
  padding: 0 2.5rem 2.5rem 2.5rem;
  z-index: 10;
  position: relative;
  box-sizing: border-box;
}

.aker-left-zone {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  align-self: flex-end !important;
  height: 232px !important;
  width: 100% !important;
  max-width: 40% !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.aker-top-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.aker-tag-pill {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.aker-tag-location {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.aker-architecture-text {
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85) !important;
  letter-spacing: -0.01em;
  margin: 0;
  text-align: left;
}

.aker-architecture-text .highlight-bold {
  font-weight: 700 !important;
  color: #ffffff !important;
}

.aker-right-bento {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 460px !important;
  min-width: 460px !important;
  height: 232px !important;
  flex-shrink: 0 !important;
  margin-left: auto;
  align-self: flex-end;
}

.bento-box {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.bento-box:hover {
  background: rgba(40, 40, 40, 0.75);
  transform: translateY(-2px);
}

.bento-wide {
  display: flex;
  height: 180px;
  padding: 8px;
  gap: 16px;
}

.bento-wide-img {
  width: 45%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.bento-wide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-wide-content {
  width: 55%;
  padding: 12px 12px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento-top-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}

.bento-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bento-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin: 0;
}

.bento-pills-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

/* 5. APARTMENTS LISTING */
.apartments-section {
  width: 100%;
  padding-top: var(--section-spacing-desktop);
  padding-bottom: var(--section-spacing-desktop);
  background-color: #f7f7f7;
  box-sizing: border-box;
}

.section-title {
  width: 70%;
}

.apartments-section .section-title {
  margin-bottom: 50px;
}

.apt-list-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.apt-list-card {
  display: grid;
  grid-template-columns: 350px 1fr 380px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  padding: 24px;
  gap: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.apt-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.apt-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.apt-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apt-card-image .apt-badge {
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: var(--color-dark);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.apt-badge svg {
  width: 14px !important;
  height: 14px !important;
  fill: #ffb800 !important;
  display: inline-block !important;
  vertical-align: middle;
}

.apt-badge .badge-emoji {
  font-size: 0.95rem;
  line-height: 1;
}

.apt-card-info {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  justify-content: space-between;
}

.apt-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.apt-card-info h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 4px 0;
}

.apt-location-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 24px 0;
}

.apt-basic-info {
  margin-top: auto;
}

.apt-basic-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 16px 0;
}

.apt-basic-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.is-blurred {
  filter: blur(5px) !important;
  opacity: 0.5 !important;
  user-select: none !important;
  pointer-events: none !important;
  display: inline-block;
}
.apt-basic-info ul.is-blurred li span:last-child {
  filter: blur(4px);
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}
.apt-basic-info li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 4px;
}

.apt-basic-info li span:last-child {
  font-weight: 500;
  color: var(--color-dark);
}

.apt-card-features {
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  border-radius: 12px;
  padding: 24px;
  justify-content: space-between;
}

.apt-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.apt-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.apt-feat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-dark);
}

.apt-feat-content h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 4px 0;
}

.apt-feat-content p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.btn-black-block {
  display: block;
  width: 100%;
  background-color: #000000;
  color: #ffffff !important;
  text-align: center;
  padding: 16px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.btn-black-block:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

.btn-preparing {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  position: relative !important;
  user-select: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.3s ease,
    transform 0.1s ease !important;
}

.btn-preparing:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.btn-preparing:active {
  transform: scale(0.97) !important;
}

.floating-pop {
  position: fixed;
  pointer-events: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 99999;
  white-space: nowrap;
  animation: floatAndFade 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.apt-animated-placeholder {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #d8e0d5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.ambient-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(50, 95, 45, 0.95) 0%,
    rgba(82, 99, 76, 0.75) 35%,
    rgba(216, 224, 213, 0) 70%
  );
  filter: blur(35px);
  animation: blurMeshMove1 7s infinite alternate ease-in-out;
  pointer-events: none;
}

.apt-animated-placeholder::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  bottom: -20%;
  right: -20%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(240, 245, 238, 0.5) 45%,
    transparent 70%
  );
  filter: blur(40px);
  animation: blurMeshMove2 9s infinite alternate ease-in-out;
  pointer-events: none;
}

.radial-blur-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  -webkit-mask-image: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.9) 75%
  );
  mask-image: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.9) 75%
  );

  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(216, 224, 213, 0.65) 85%
  );
}

@keyframes blurMeshMove1 {
  0% {
    transform: translate(-15%, -10%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(15%, 15%) scale(1.2) rotate(30deg);
  }
  100% {
    transform: translate(-5%, 20%) scale(1.05) rotate(-15deg);
  }
}

@keyframes blurMeshMove2 {
  0% {
    transform: translate(10%, 15%) scale(1.1);
  }
  50% {
    transform: translate(-15%, -10%) scale(0.85);
  }
  100% {
    transform: translate(8%, -15%) scale(1.2);
  }
}

@keyframes floatAndFade {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) scale(0.6) rotate(0deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x-offset)), -60px) scale(1.1)
      rotate(var(--rotation));
  }
}

/* 6. ABOUT US INTRO */
.about-intro {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 300px !important;
  padding-bottom: 300px !important;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.about-intro .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.about-intro .subheading {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem !important;
  text-align: center;
}

.headline-box {
  position: relative;
  display: inline-block;
  text-align: center;
}

.main-headline {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.2;
  color: var(--color-dark);
  font-weight: 400;
  white-space: normal !important;
  width: 100%;
}

.img-decor-left {
  position: absolute;
  top: -75px;
  left: -50px;
  width: clamp(150px, 12vw, 210px);
  height: auto;
  z-index: 1;
}

.img-decor-right {
  position: absolute;
  bottom: -75px;
  right: -80px;
  width: clamp(170px, 15vw, 250px);
  height: auto;
  z-index: 1;
}

/* 7. SOLAR STYLE LAYOUT (ABOUT US / BENEFITS) */
.solar-layout-section {
  position: relative !important;
  background-color: #ffffff !important;
  padding-top: 40px !important;
  padding-bottom: var(--section-spacing-desktop) !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  clear: both !important;
}

.solar-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 70px !important;
  align-items: start !important;
  position: relative !important;
}

.solar-left-images {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  width: 100% !important;
}

.solar-img-box {
  width: 100% !important;
  height: 440px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
}

.solar-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.solar-img-box:hover img {
  transform: scale(1.04) !important;
}

.solar-right-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: calc(50vh - 280px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  will-change: transform;
}

.solar-headline-box h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem) !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}

.solar-reveal-text span {
  color: #cccccc !important;
  transition: color 0.35s ease !important;
  display: inline-block !important;
  margin-right: 5px !important;
}

.solar-reveal-text span.highlight-serif {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

.solar-reveal-text span.is-active {
  color: #1a1a1a !important;
}

.solar-cta-row {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
}

.solar-cards-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  margin-top: 6px !important;
}

.solar-card {
  background-color: #f7f7f5 !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 18px !important;
  padding: 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

.solar-card:hover {
  transform: translateY(-3px) !important;
  background-color: #f0f0ec !important;
}

.solar-card-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background-color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.solar-card-icon svg {
  width: 18px !important;
  height: 18px !important;
  color: #1a1a1a !important;
}

.solar-card h3 {
  font-family: var(--font-sans) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
}

.solar-card p {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  color: #666666 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* 8. REVIEWS SECTION (AIRBNB SLIDER) */
.reviews-section {
  padding-top: var(--section-spacing-desktop) !important;
  padding-bottom: var(--section-spacing-desktop) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-white);
}

.reviews-header {
  margin-bottom: 16px !important;
  text-align: left;
}

.reviews-header .subheading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.reviews-slider-wrapper {
  width: 100%;
  position: relative;
}

.reviews-slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-slider-wrapper.has-scrolled-left::before {
  opacity: 1;
}

.reviews-slider-wrapper.is-at-end::after {
  opacity: 0;
}

.reviews-slider {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding-top: 10px !important;
  padding-bottom: 20px !important;
  padding-left: 4px !important;
  padding-right: 20px !important;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  will-change: scroll-position;
}

.reviews-slider::-webkit-scrollbar {
  display: none !important;
}

.reviews-slider.is-dragging {
  cursor: grabbing !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

.solar-review-card {
  flex: 0 0 320px !important;
  width: 320px !important;
  background-color: #f7f7f5 !important;
  border-radius: 18px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  scroll-snap-align: start;
  box-sizing: border-box !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;

  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;

  opacity: 0;
  transform: translateY(20px);
}

.solar-review-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solar-review-card:hover {
  background-color: #f0f0ec !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
}

.solar-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.solar-review-user {
  display: flex;
  flex-direction: column;
}

.solar-review-name {
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.solar-review-date {
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
  color: #888888 !important;
}

.solar-review-stars {
  color: #ffb800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 2px !important;
  margin-bottom: 10px !important;
}

.solar-review-text {
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  color: #444444 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  pointer-events: none;
}

/* 9. HERO BANNER & GODILAND MAP SECTION */
.hero-banner-section {
  width: 100%;
  min-height: auto !important;
  background-color: var(--color-white);
  padding-top: 40px;
  padding-bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible !important;
}

.banner-container {
  width: 100%;
  padding: 0 2.5rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.banner-image-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 25%,
    rgba(255, 255, 255, 0.5) 55%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.banner-image-wrapper img {
  width: 100%;
  height: 130%;
  position: absolute;
  top: -15%;
  left: 0;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* MAP SECTION */
.godiland-map-section {
  width: 100%;
  padding-top: 40px !important;
  padding-bottom: var(--section-spacing-desktop) !important;
  box-sizing: border-box;
  position: relative;
  margin-top: -30px;
  z-index: 5;
}

.map-header-block {
  text-align: left;
  margin-bottom: 40px;
}

.map-header-block .subheading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.map-header-block {
  width: 100% !important;
  margin: 0 !important;
}

.map-grid-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 50px !important;
}

.map-sidebar-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.map-side-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.55;
  margin: 0;
}

.map-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.map-zoom-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  text-align: left;
  gap: 12px !important;
}

.map-zoom-btn .badge-sub {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 400;
  margin-left: 8px !important;
}

.map-zoom-btn:hover {
  background: #f7f7f5;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.map-zoom-btn.active {
  background: var(--color-dark);
  color: #ffffff;
  border-color: var(--color-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.map-zoom-btn.active .badge-sub {
  color: rgba(255, 255, 255, 0.6);
}

.map-frame-wrapper {
  width: 100%;
  min-height: 500px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.custom-leaflet-map {
  width: 100% !important;
  height: 100% !important;
  min-height: 500px !important;
}

.apple-live-location {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.apple-live-wave {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 200, 100, 0.65) 0%,
    rgba(30, 200, 100, 0.25) 70%,
    transparent 100%
  );
  border: 3px solid rgba(30, 200, 100, 0.95);
  box-shadow: 0 0 24px rgba(30, 200, 100, 0.6);
  animation: strongPulse 2.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.apple-live-wave-2 {
  animation-delay: 1.25s;
}

@keyframes strongPulse {
  0% {
    transform: scale(0.1);
    opacity: 1;
    border-width: 3px;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
    border-width: 1px;
  }
}

/* 10. CONTACT SECTION */
.contact-section {
  width: 100%;
  background-color: var(--color-white);
  padding-top: var(--section-spacing-desktop) !important;
  padding-bottom: var(--section-spacing-desktop) !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 100%;
  padding: 0 2.5rem;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: stretch;
  box-sizing: border-box;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}

.contact-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  color: #666;
}
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem) !important;
  font-weight: 400;
  line-height: 1.2 !important;
  color: var(--color-green);
  margin: 0 0 40px 0 !important;
}

.manager-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: end;
  width: 100%;
  margin-top: auto;
}

.manager-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #e5e5e3;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.manager-image .manager-png {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

.manager-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
}

.manager-name {
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--color-dark);
}

.manager-role {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  margin: 0 0 auto 0;
}

.manager-phone-box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
}

.phone-number {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-dark);
  text-decoration: none;
  margin-bottom: 25px;
}

.manager-info .btn-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 12px 32px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  width: fit-content !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.manager-info .btn-contact:hover {
  background-color: #222222 !important;
  transform: translateY(-2px) !important;
}

.contact-right {
  background-color: #f7f7f5;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 60px;
  border-radius: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  font-size: var(--fs-body);
  color: #000;
  outline: none;
}

.form-group.msg-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.msg-group textarea {
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 35px 0 10px 0;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: var(--fs-body);
  color: #000;
  transition: all 0.25s ease;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -15px;
  font-size: 0.85rem;
  color: #666;
}

.form-submit-row {
  margin-top: 15px;
}

.btn-submit {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 8px 30px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background-color: #000;
  color: #fff;
}

/* 11. FOOTER */
.main-footer {
  width: 100%;
  background-color: #e5e5e3;
  padding: 80px 0 40px 0;
  box-sizing: border-box;
}

.footer-container {
  width: 100%;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 2.5rem !important;
  box-sizing: border-box;
}

.footer-top-row {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-svg {
  height: 22px;
  width: auto;
  display: block;
}

.footer-middle-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
  width: 100%;
}

.footer-cta-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
  align-items: flex-start !important;
}

.footer-cta-text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: min(5vw, 80px);
  text-align: left;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-main-link {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-main-link:hover {
  opacity: 0.6;
}

.footer-sub-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.footer-sub-links a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: #777775;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-sub-links a:hover {
  color: var(--color-dark);
}

.footer-bottom-row {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-credits {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0;
}

.footer-credits a {
  color: var(--color-dark) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

/* 12. SERVICES PAGE (DESKTOP) */
.services-hero-section {
  padding-top: 180px !important;
  padding-bottom: var(--section-spacing-desktop);
  background-color: var(--color-white);
}

.services-hero-section h1 {
  font-size: var(--fs-h1);
  margin-bottom: 60px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
}

.service-intro-card {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  box-sizing: border-box;
}

.service-intro-card:first-child {
  padding-left: 0;
}
.service-intro-card:last-child {
  padding-right: 0;
}
.service-intro-card:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.service-intro-card .service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 20px;
}

.service-intro-card h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.service-desc-desktop {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-more-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 5px 5px 5px 20px !important;
  gap: 12px !important;
  background: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: var(--color-dark) !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin-top: auto !important;
  margin-bottom: 24px !important;
  width: fit-content !important;
  transition: all 0.3s ease !important;
}

.service-more-link:hover {
  background-color: #f7f7f5 !important;
  transform: translateY(-2px) !important;
}

.service-more-link .service-arrow-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background-color: rgba(0, 0, 0, 0.04) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cpolyline points='19 12 12 19 5 12'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 15px 15px !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease !important;
}

.service-arrow-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-more-link:hover .service-arrow-icon {
  background-color: rgba(0, 0, 0, 0.08) !important;
  transform: scale(1.05) !important;
}
.service-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-intro-card:hover .service-thumb img {
  transform: scale(1.04);
}

.services-mid-headline {
  padding-top: var(--section-spacing-desktop) !important;
  padding-bottom: 80px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  max-width: 920px !important;
  margin: 0 auto !important;
}

.services-mid-headline .subheading {
  display: block !important;
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #888888 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 20px !important;
}

.services-mid-headline .mid-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 3.2vw, 3.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  color: var(--color-dark) !important;
  margin: 0 0 24px 0 !important;
}

.services-mid-headline .mid-desc {
  font-family: var(--font-sans) !important;
  font-size: clamp(1rem, 1.2vw, 1.15rem) !important;
  color: #666666 !important;
  line-height: 1.6 !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  font-weight: 300 !important;
}

.services-stack-section {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--section-spacing-desktop);
}

.service-stack-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 0 60px;
  position: sticky;
  top: 80px;
  background-color: var(--color-white);
  padding-top: 60px;
  padding-bottom: 80px;
}

.service-stack-row:nth-child(1) {
  z-index: 1;
}
.service-stack-row:nth-child(2) {
  z-index: 2;
}
.service-stack-row:nth-child(3) {
  z-index: 3;
}

.service-stack-img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.service-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-stack-row h2 {
  grid-column: 2;
  grid-row: 1;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 30px;
}

.service-stack-content {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-stack-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 13. APARTMENT DETAILS PAGE (DESKTOP) */
.apt-hero-section {
  padding-top: 100px;
  padding-bottom: var(--section-spacing-desktop);
}

.apt-hero-image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 0 2.5rem;
  box-sizing: border-box;
  margin-top: 0;
}

.apt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.apt-info-bar {
  display: grid;
  grid-template-columns: 1.5fr 0.2fr 1fr;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.apt-info-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.apt-main-title {
  font-size: var(--fs-h2);
  text-align: left;
  margin: 0 0 20px 0;
  line-height: 1.1;
  color: var(--color-dark);
}

.apt-location {
  display: flex;
  gap: 15px;
  font-family: var(--font-sans);
}

.loc-label {
  font-weight: 300;
  color: #666;
}
.loc-value {
  font-weight: 500;
  color: var(--color-dark);
}

.apt-info-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.apt-stats-row {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-dark);
}

.stat-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.2;
  margin-top: 5px;
}

.apt-desc-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* ROOMS SECTION */
.apt-rooms-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: var(--section-spacing-desktop);
}

.room-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  position: sticky;
  top: 12vh;
  background-color: var(--color-white);
  padding-top: 40px;
  padding-bottom: 80px;
  margin-top: 20px;
  min-height: 85vh;
  box-sizing: border-box;
  align-items: center;
}

.room-row:nth-child(1) {
  z-index: 1;
}
.room-row:nth-child(2) {
  z-index: 2;
}
.room-row:nth-child(3) {
  z-index: 3;
}
.room-row:nth-child(4) {
  z-index: 4;
}
.room-row:nth-child(5) {
  z-index: 5;
}

.room-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 12px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.room-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 550px !important;
  box-sizing: border-box !important;
}

.room-text h2 {
  font-size: var(--fs-h2);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.room-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 12px;
}

.room-grid-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  margin-top: auto !important;
  width: 100% !important;
}

.room-grid-thumbs img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  cursor: zoom-in !important;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease !important;
}

.room-grid-thumbs img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* LIGHTBOX OVERLAY */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100000;
}

.next-apt-teaser {
  padding-top: 40px;
  padding-bottom: var(--section-spacing-desktop);
}

.next-apt-banner {
  position: relative !important;
  width: 100% !important;
  height: 380px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  padding: 40px !important;
  box-sizing: border-box !important;
}

.next-apt-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.next-apt-bg.is-blurred-bg {
  filter: blur(10px) !important;
  transform: scale(1.15) !important;
  opacity: 0.6 !important;
}
.next-apt-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.next-apt-content {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  width: 100% !important;
}

.next-title-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.next-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
}

.next-title {
  font-size: var(--fs-h2) !important;
  line-height: 1;
  margin: 0;
  color: #ffffff !important;
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* FAQ */
.faq-section {
  padding-top: var(--section-spacing-desktop) !important;
  padding-bottom: var(--section-spacing-desktop) !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.faq-left .subheading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 15px;
}

.faq-left .section-title {
  font-size: var(--fs-h2);
  margin-bottom: 24px;
}

.faq-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.faq-desc a {
  color: var(--color-dark);
  font-weight: 500;
}

.accordion-container {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.accordion-icon {
  width: 22px;
  height: 22px;
  position: relative;
  background-color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  border-radius: 2px;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.accordion-icon::before {
  width: 10px;
  height: 2px;
}
.accordion-icon::after {
  width: 2px;
  height: 10px;
}

.accordion-item.is-active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

.accordion-item.is-active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  padding-bottom: 24px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* BOOKING OVERLAY */
.booking-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s ease;
  padding: 2rem;
  box-sizing: border-box;
}

.booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-overlay-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.booking-overlay-close svg {
  width: 24px;
  height: 24px;
}

.booking-overlay-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.booking-overlay-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 12px;
}

.booking-overlay-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 48px;
}

.booking-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.booking-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.booking-overlay.is-open .booking-card {
  opacity: 1;
  transform: translateY(0);
}

.booking-overlay.is-open .booking-card:nth-child(1) {
  transition-delay: 0.1s;
}
.booking-overlay.is-open .booking-card:nth-child(2) {
  transition-delay: 0.2s;
}
.booking-overlay.is-open .booking-card:nth-child(3) {
  transition-delay: 0.3s;
}

.booking-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-6px) !important;
}

.booking-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.booking-card-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

/* 14. RESPONSIVENESS: TABLETS (993PX TO 1240PX) */
@media (min-width: 993px) and (max-width: 1240px) {
  .apt-list-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .apt-card-image {
    width: 100% !important;
    height: 260px !important;
  }

  .apt-card-info,
  .apt-card-features {
    width: 100% !important;
    padding: 0 !important;
  }

  .apt-info-bar {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* 15. RESPONSIVENESS: MOBILE & TABLET (BELOW 992PX) */
@media (max-width: 992px) {
  /* GLOBAL PADDINGS AND SECTION SPACING */
  .section-container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* VŠECHNY HLAVNÍ H1 NADPISY NA MOBILU SEJNO MĚŘÍTKO */
  h1,
  .services-hero-section h1 {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
    margin-bottom: 24px !important;
    line-height: 1.15 !important;
  }

  .section-title,
  h2 {
    width: 100% !important;
    font-size: clamp(1.3rem, 5.8vw, 1.7rem) !important;
    line-height: 1.25 !important;
    word-break: normal !important;
  }

  .nav-container {
    padding: 14px 1.25rem !important;
  }

  .about-intro {
    overflow: hidden !important;
  }

  .img-decor-left,
  .img-decor-right {
    display: none !important;
  }

  .main-headline {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 5.5vw, 1.65rem) !important;
    line-height: 1.3 !important;
    color: var(--color-dark);
    font-weight: 400;
    white-space: normal !important;
    word-break: normal !important;
    hyphens: auto;
    width: 100% !important;
    padding: 10px 0 !important;
  }

  /* NAVIGATION & MOBILE OVERLAY MENU */
  .hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100001 !important;
    position: relative !important;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  .main-header.is-scrolled .hamburger-line,
  .main-header.header-light-theme .hamburger-line {
    background-color: #000000;
  }

  .hamburger-btn.is-active .line-1 {
    transform: translateY(7px) rotate(45deg);
    background-color: #1a1a1a !important;
  }

  .hamburger-btn.is-active .line-2 {
    opacity: 0;
  }

  .hamburger-btn.is-active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #1a1a1a !important;
  }

  .nav-menu-wrapper {
    position: fixed !important;
    inset: 0;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 16px 1.25rem 4.5rem 1.25rem !important;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0% at calc(100% - 30px) 25px);
    transition:
      clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1),
      opacity 0.4s ease,
      visibility 0.6s;
    z-index: 99999 !important;
    box-sizing: border-box !important;
  }

  .nav-menu-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: circle(150% at calc(100% - 30px) 25px);
  }

  .mobile-menu-header {
    display: flex !important;
    width: 100% !important;
    margin-bottom: 3.5rem !important;
    align-items: center !important;
    height: 24px !important;
  }

  .mobile-overlay-logo {
    height: 24px !important;
    width: auto !important;
    filter: brightness(0) !important;
    display: block !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links .menu-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .nav-links .status-cube {
    display: none !important;
    width: 7px !important;
    height: 7px !important;
    min-width: 7px !important;
    background-color: transparent !important;
    border-radius: 1px !important;
  }

  .nav-item.is-active .status-cube {
    display: block !important;
    background-color: var(--color-green) !important;
  }

  .nav-links a {
    font-family: var(--font-sans) !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    letter-spacing: -0.01em !important;
  }

  .nav-item.is-active a {
    color: var(--color-green) !important;
  }

  .mobile-menu-bottom {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
    margin-top: auto !important;
  }

  .mobile-menu-divider {
    width: 100% !important;
    height: 1px !important;
    background-color: rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 0.25rem !important;
  }

  .mobile-info-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .mobile-info-label {
    font-family: var(--font-sans) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
  }

  .mobile-info-main {
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
    color: #555555 !important;
    text-decoration: none !important;
  }

  .mobile-info-sub {
    font-family: var(--font-sans) !important;
    font-size: 0.85rem !important;
    color: #777777 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

  /* HERO & BENTO SECTION (MOBILE) */
  .aker-layout {
    height: auto !important;
    min-height: 100svh !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .aker-top-tags {
    margin-bottom: 16px !important;
  }

  .aker-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding: 110px 1.25rem 40px 1.25rem !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .aker-left-zone {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 24px !important;
    order: 1 !important;
  }

  .aker-right-bento {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin-left: 0 !important;
    order: 2 !important;
  }

  .bento-wide {
    flex-direction: column !important;
    height: auto !important;
  }

  .bento-wide-img {
    width: 100% !important;
    height: 160px !important;
    border-radius: 10px !important;
  }

  .bento-wide-content {
    width: 100% !important;
    padding: 12px !important;
  }

  /* APARTMENTS LISTING (MOBILE) */
  .apartments-section {
    padding-top: var(--section-spacing-mobile) !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .apt-list-card {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .apt-card-image {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
  }

  .apt-card-info,
  .apt-card-features {
    width: 100% !important;
    padding: 0 !important;
  }

  .apt-card-features {
    background-color: transparent !important;
  }

  /* ABOUT US / BENEFITS HORIZONTAL SCROLL (MOBILE) */
  .about-intro {
    padding-top: var(--section-spacing-mobile) !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .solar-layout-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .solar-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .solar-right-sticky {
    position: relative !important;
    top: 0 !important;
    padding: 0 1.25rem !important;
    order: 1 !important;
  }

  .solar-headline-box h2 {
    font-size: clamp(1.15rem, 4.2vw, 1.35rem) !important;
    line-height: 1.35 !important;
  }

  .solar-left-images {
    order: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    padding: 0 1.25rem 10px 1.25rem !important;
    gap: 14px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .solar-left-images::-webkit-scrollbar {
    display: none !important;
  }

  .solar-img-box {
    flex: 0 0 260px !important;
    width: 260px !important;
    height: 300px !important;
    border-radius: 16px !important;
  }

  .solar-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* HERO BANNER & MAP (MOBILE) - POSUNUTÍ MAPOVÉ SEKCIE VYŠŠIE */
  .hero-banner-section {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .banner-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .banner-image-wrapper {
    width: 100% !important;
    height: 240px !important;
  }

  .godiland-map-section {
    padding-top: 0 !important;
    padding-bottom: var(--section-spacing-mobile) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    margin-top: -80px !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .godiland-map-section .section-container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .map-grid-split {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .map-buttons-vertical {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .map-zoom-btn {
    width: auto !important;
    padding: 10px 18px !important;
    gap: 10px !important;
  }

  .map-frame-wrapper,
  .custom-leaflet-map {
    height: 320px !important;
    min-height: 320px !important;
    border-radius: 16px !important;
  }

  /* REVIEWS SECTION (MOBILE) */
  .reviews-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .reviews-slider-wrapper::before {
    display: none !important;
  }

  /* CONTACT SECTION (MOBILE - PŘESNĚ PODLE NÁKRESU) */
  .contact-section {
    padding-top: var(--section-spacing-mobile) !important;
    padding-bottom: var(--section-spacing-mobile) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .manager-profile {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    margin-top: 24px !important;
  }

  .manager-profile {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .manager-image {
    width: 110px !important;
    height: 110px !important;
    border-radius: 12px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .manager-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    height: auto !important;
  }

  .manager-name {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .manager-role {
    font-size: 0.85rem !important;
    color: #666666 !important;
    margin: 0 !important;
  }

  .manager-phone-box {
    grid-column: 1 / -1 !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .phone-label {
    font-size: 0.85rem !important;
    color: #666666 !important;
    margin-bottom: 2px !important;
  }

  .phone-number {
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: var(--color-dark) !important;
    margin-bottom: 0 !important;
  }

  .manager-info .btn-contact {
    position: absolute !important;
    left: -9999px !important;
  }

  .manager-profile::after {
    content: "Kontaktovať" !important;
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    font-family: var(--font-sans) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    padding: 12px 28px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    width: fit-content !important;
    margin-top: 4px !important;
    cursor: pointer !important;
  }

  .contact-right {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }

  /* FOOTER & OVERLAY (MOBILE) */
  .main-footer {
    padding: 50px 0 30px 0 !important;
  }

  .footer-middle-row {
    flex-direction: column !important;
    gap: 36px !important;
    padding-bottom: 40px !important;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 20px !important;
    width: 100% !important;
  }

  .footer-bottom-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 24px !important;
    text-align: left !important;
  }

  .footer-copy,
  .footer-credits {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .booking-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .booking-card {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 18px 24px !important;
  }

  /* SERVICES PAGE (MOBILE) */
  .services-hero-section {
    padding-top: 90px !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .services-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .service-intro-card {
    padding: 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding-bottom: 32px !important;
  }

  .service-intro-card:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .service-thumb {
    height: 200px !important;
  }

  .services-mid-headline {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
  }
  .services-mid-headline .mid-headline {
    font-size: clamp(1.3rem, 5.8vw, 1.7rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
    word-break: normal !important;
  }

  .services-mid-headline .mid-desc {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  .services-stack-section {
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .service-stack-row {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    top: 0 !important;
    padding-top: 30px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .service-stack-row:last-child {
    border-bottom: none !important;
  }

  .service-stack-row h2 {
    order: 1 !important;
    margin-bottom: 16px !important;
  }

  .service-stack-img {
    order: 2 !important;
    height: 260px !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
  }

  .service-stack-content {
    order: 3 !important;
  }

  /* APARTMENT PAGES 1 & 2 (MOBILE) */
  .apt-hero-section {
    padding-top: 80px !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .apt-hero-image {
    height: 260px !important;
    min-height: 260px !important;
    padding: 0 1.25rem !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  .apt-info-bar {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }

  .apt-info-left {
    min-height: auto !important;
  }

  .apt-stats-row {
    gap: 30px !important;
  }

  .stat-number {
    font-size: 2.8rem !important;
  }

  .apt-rooms-section {
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .room-row {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    top: 0 !important;
    min-height: auto !important;
    padding-top: 20px !important;
    padding-bottom: 50px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .room-row:last-child {
    border-bottom: none !important;
  }

  .room-image {
    height: 280px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }

  .room-content {
    height: auto !important;
  }

  .room-text h2 {
    margin-bottom: 12px !important;
  }

  .room-grid-thumbs {
    margin-top: 20px !important;
    gap: 8px !important;
  }

  .next-apt-teaser {
    padding-top: 20px !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .next-apt-banner {
    height: 300px !important;
    padding: 24px !important;
  }

  .next-apt-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .faq-section {
    padding-top: var(--section-spacing-mobile) !important;
    padding-bottom: var(--section-spacing-mobile) !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  h1,
  h2,
  h3,
  .main-headline {
    hyphens: manual !important;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    word-break: normal !important;
  }
}

/* 16. PAGE LOADER (Načítacia obrazovka s logom) */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-light);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrapper {
  position: relative;
  width: 140px;
}

.loader-logo-base {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.15;
}

.loader-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(100% 0 0 0);
  animation: fillLogoUp 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fillLogoUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* 17. SCROLL REVEAL ANIMÁCIE (Objavovanie pri scrolle) */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.15s;
}
.delay-200 {
  transition-delay: 0.3s;
}
.delay-300 {
  transition-delay: 0.45s;
}
.delay-400 {
  transition-delay: 0.6s;
}

/* 18. PAGE TRANSITIONS (Animácia prechodu podstránok) */
main {
  opacity: 0;
}

main.page-entered {
  animation: pageEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

main.page-exiting {
  animation: pageExit 0.4s ease forwards;
}

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

@keyframes pageExit {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

/* 19. OCHRANA PROTI SPAMU (HONEYPOT) */
.bot-trap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* 20. LANGUAGE SWITCHER (Prepínač jazykov) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 48px;
}

.lang-switcher a {
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: var(--color-dark) !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease !important;
  opacity: 0.4;
}

.main-header:not(.is-scrolled):not(.header-light-theme) .lang-switcher a {
  color: #ffffff !important;
}

.lang-switcher a.is-active {
  opacity: 1;
  font-weight: 600 !important;
}

.lang-switcher a:hover {
  opacity: 1;
}

.lang-separator {
  font-size: 0.9rem;
  color: var(--color-dark);
  opacity: 0.2;
}

.main-header:not(.is-scrolled):not(.header-light-theme) .lang-separator {
  color: #ffffff;
}

@media (max-width: 992px) {
  .lang-switcher {
    margin-left: 0 !important;
    margin-top: 32px !important;
    margin-bottom: 20px !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .nav-menu-wrapper .lang-switcher a,
  .main-header .nav-menu-wrapper .lang-switcher a,
  .main-header:not(.is-scrolled):not(.header-light-theme)
    .nav-menu-wrapper
    .lang-switcher
    a {
    color: #1a1a1a !important;
  }

  .nav-menu-wrapper .lang-separator,
  .main-header .nav-menu-wrapper .lang-switcher .lang-separator,
  .main-header:not(.is-scrolled):not(.header-light-theme)
    .nav-menu-wrapper
    .lang-switcher
    .lang-separator {
    color: #1a1a1a !important;
    opacity: 0.3 !important;
  }
}
