/* VARIABLES & THEME (Azure Skies & Mediterranean Sunsets Light Theme) */
:root {
  --color-bg: #f7fcff;
  /* Very soft azure/white sand */
  --color-surface-bg: #ffffff;
  /* Crisp white for cards */
  --color-primary: #ff7e67;
  --color-primary-rgb: 255, 126, 103;
  /* Sunset coral */
  --color-primary-dark: #e66a55;
  --color-accent: #00b4d8;
  --color-accent-light: #a9f1ff;
  /* Turquoise Sea Water */
  --color-text: #1e293b;
  /* Slate dark blue */
  --color-text-muted: #64748b;
  --color-muted: #64748b;
  /* Lighter slate */

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
  --border-radius: 16px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  /* Frosty light glass */
  --glass-border: rgba(0, 0, 0, 0.05);
  /* Soft dark border for separation */
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.hide {
  display: none !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  /* Increased for premium breathability */
  letter-spacing: 0.015em;
  /* Subtle legibility boost */
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  /* Tighter modern kerning */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.gray-bg {
  background-color: var(--color-surface-bg);
}

.section-title-wrap {
  margin-bottom: 4rem;
}

.section-title-wrap.center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  letter-spacing: -1px;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--color-primary);
}

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

.text-white {
  color: #fff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.15rem 2.5rem;
  border-radius: 60px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 126, 103, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 103, 0.4);
}

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

.btn-outline:hover {
  background-color: rgba(255, 126, 103, 0.08);
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(255, 126, 103, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(255, 126, 103, 0.6);
}

/* GLASSMORPHISM UTILS */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 41, 59, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.blur-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-text);
}

.logo-bold {
  font-weight: 800;
  color: var(--color-primary);
}

.header-estimate {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.2rem;
  min-width: 0;
  padding: 0.55rem 0.95rem 0.55rem 1rem;
  border: 1px solid rgba(var(--color-primary-rgb), 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 252, 255, 0.84) 100%);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.header-estimate-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.header-estimate-value {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.15rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
}

#header-estimate-price-value {
  display: inline-block;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.header-estimate-currency {
  font-size: 0.95rem;
  color: var(--color-primary);
  padding-bottom: 0.1rem;
}

.header-estimate.is-empty #header-estimate-price-value {
  color: var(--color-text-muted);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--color-text);
  border-radius: 999px;
  min-width: 3.5rem;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover {
  border-color: rgba(var(--color-primary-rgb), 0.25);
  color: var(--color-primary);
  transform: translateY(-1px);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(247, 252, 255, 0) 0%, rgba(247, 252, 255, 0.2) 40%, rgba(247, 252, 255, 0.9) 85%, rgba(247, 252, 255, 1) 100%),
    url('images/hero_bg.avif') center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}

.hero-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  /* Keep legible over sunset */
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
  /* Lifts the transparent text off the vibrant photo */
}

.hero-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 600;
  /* Bolder outline to read against bright sky */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  /* Makes text pop */
}

.info-item i {
  color: var(--color-primary);
  font-size: 1.4rem;
}

/* CONCEPT SECTION */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 126, 103, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}



/* LOCATION SECTION */
.location-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.location-title {
  color: var(--color-accent);
  font-size: 3.5rem;
  line-height: 1.2;
}

.location-collage {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.collage-col {
  display: flex;
  flex-direction: column;
}

.collage-col.left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.collage-col.center {
  width: 46%;
  margin: 0 -3%;
  z-index: 1;
}

.collage-col.right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 3;
}

.collage-img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  /* Lighter shadow for airy feel */
  transition: var(--transition);
}

.collage-col.left .img-single {
  height: 450px;
  margin-top: 80px;
  margin-right: 15px;
  /* Pulls it slightly off center */
}

.collage-col.center .img-main {
  height: 650px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  /* Center piece gets deepest shadow */
}

.collage-col.right .img-top {
  height: 280px;
  margin-left: -15px;
  /* Overlaps slightly with Center image */
  margin-top: -20px;
}

.collage-col.right .img-bottom {
  height: 380px;
  margin-left: 30px;
  /* Pushed out wide */
}

.collage-img:hover {
  transform: scale(1.04);
  z-index: 10;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* PHILOSOPHY SECTION */
.philosophy-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.philosophy-content {
  flex: 1;
}

.philosophy-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.philosophy-list {
  margin-bottom: 2.5rem;
}

.philosophy-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text);
}

.list-dot {
  font-size: 9px;
  margin-top: 7px;
  color: var(--color-accent) !important;
}

.outro-highlight {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-primary);
}

.philosophy-visual {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-blob {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: blobBounce 8s infinite alternate;
}

@keyframes blobBounce {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(20px, -20px);
  }
}

.floating-img {
  position: absolute;
  border-radius: var(--border-radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --tx: 0px;
  --ty: 0px;
  --rot: 0deg;
  transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1);
}

.floating-img:hover {
  transform: translate(var(--tx), var(--ty)) rotate(0deg) scale(1.15) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 126, 103, 0.5);
}

.img-1 {
  width: 200px;
  height: 280px;
  background-image: url('images/pool.jpg');
  --tx: -90px;
  --ty: -60px;
  --rot: -12deg;
  z-index: 2;
}

.img-2 {
  width: 220px;
  height: 240px;
  background-image: url('images/stage.jpg');
  --tx: 80px;
  --ty: -100px;
  --rot: 8deg;
  z-index: 3;
}

.img-3 {
  width: 240px;
  height: 180px;
  background-image: url('images/exp_couple_sunset.jpg');
  --tx: -70px;
  --ty: 100px;
  --rot: 6deg;
  z-index: 4;
}

.img-4 {
  width: 190px;
  height: 260px;
  background-image: url('images/zouk_temple.avif');
  --tx: 100px;
  --ty: 70px;
  --rot: -8deg;
  z-index: 5;
}

.custom-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
}

.custom-list i {
  font-size: 1.5rem;
  margin-top: 2px;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* SCHEDULE (TIMELINE) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--glass-border);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 31px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--color-bg);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 126, 103, 0.5);
  z-index: 2;
}

.time-badge {
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.timeline-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* PRICING & INCLUDED SECTION */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.inc-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inc-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.inc-card:hover {
  transform: translateY(-5px);
}

.inc-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.inc-card:hover .inc-img {
  filter: brightness(1);
  transform: scale(1.05);
}

.inc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  margin: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* Center Text Block Styles */
.inc-center {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.inc-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.inc-subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.inc-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}

.inc-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.inc-list li i {
  font-size: 10px;
}

.inc-all-in-one {
  background: rgba(var(--color-primary-rgb), 0.05);
  padding: 1.5rem;
  border-radius: calc(var(--border-radius) / 2);
  margin-bottom: 2rem;
}

.inc-all-in-one p {
  font-size: 1rem;
  line-height: 1.5;
}

.inc-price-tag {
  margin-top: auto;
}

.inc-price-tag .price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inc-price-tag .price-notice {
  font-size: 0.9rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .inc-col.inc-center {
    order: -1;
  }

  .inc-col {
    gap: 1rem;
  }

  .inc-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .inc-img {
    height: initial;
  }
}

/* INCLUDED */
.pricing-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.pricing-header {
  background: rgba(0, 0, 0, 0.02);
  padding: 2.5rem;
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}

.pricing-body {
  padding: 2.5rem;
}

.pricing-footer {
  background: rgba(255, 126, 103, 0.05);
  padding: 2.5rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.price-notice {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* FAMILY SECTION REDESIGN */
.family-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.family-text-col {
  padding-right: 2rem;
}

.family-paragraph {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.family-highlight {
  background: rgba(0, 180, 216, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.family-highlight i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.family-image-col {
  position: relative;
  height: 500px;
  display: flex;
}

.fam-img-wrapper {
  position: absolute;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.fam-img-wrapper:hover {
  transform: translateY(-5px);
  z-index: 10 !important;
}

.fam-img-wrapper img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.fam-img-1 {
  width: 55%;
  height: 380px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.fam-img-1 img {
  height: 380px;
  object-position: 50% 50%;
}

.fam-img-1:hover {
  transform: translateY(calc(-50% - 10px));
}

.fam-img-2 {
  width: 45%;
  height: 240px;
  top: 20px;
  right: 0;
  z-index: 1;
}
.fam-img-2 img {
  height: 240px;
  object-position: 50% 80%;
}

.fam-img-3 {
  width: 50%;
  height: 220px;
  bottom: 20px;
  right: 5%;
  z-index: 3;
}
.fam-img-3 img {
  height: 220px;
  object-position: 50% 50%;
}

@media (max-width: 992px) {
  .family-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .family-text-col {
    padding-right: 0;
    text-align: center;
  }

  .family-image-col {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .family-image-col {
    height: 350px;
  }

  .fam-img-1 {
    height: 280px;
  }

  .fam-img-2 {
    height: 180px;
  }

  .fam-img-3 {
    height: 160px;
  }
}

/* EXTEND VACATION SECTION */
.extend-vacation {
  background-color: var(--color-bg);
  padding: 6rem 0;
}

.extend-content {
  max-width: 800px;
  margin: 0 auto;
}

.extend-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-primary);
  /* Teal-like accent from the theme */
}

.extend-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.extend-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  opacity: 0.8;
}

.extend-divider::before,
.extend-divider::after {
  content: '';
  height: 1px;
  background: var(--color-primary);
  opacity: 0.3;
  flex-grow: 1;
  max-width: 35%;
}

.extend-divider::before {
  margin-right: 1.5rem;
}

.extend-divider::after {
  margin-left: 1.5rem;
}

.extend-divider i {
  font-size: 2.5rem;
  color: var(--color-primary);
}

/* CALCULATOR FORM */
.calc-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.02);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(100, 116, 139, 0.2);
  color: var(--color-text);
  padding: 1.15rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Checkboxes (Days) */
.days-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.day-check {
  position: relative;
  cursor: pointer;
}

.day-check input {
  display: none;
}

.day-check span {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1.5px solid rgba(100, 116, 139, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text-muted);
}

.day-check input:checked+span {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0090ad 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

/* Toggle Switch */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.toggle-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-slider {
  flex: 0 0 auto;
  width: 48px;
  height: 26px;
  background: rgba(100, 116, 139, 0.15);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 116, 139, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.toggle-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text);
}

.toggle-wrap input:checked+.toggle-slider {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0090ad 100%);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.toggle-wrap input:focus-visible+.toggle-slider {
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-wrap input:checked+.toggle-slider::before {
  transform: translateX(22px);
  background: #fff;
}

.extra-dates.hide {
  display: none;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.date-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-label.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.radio-label input[type="radio"] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}

/* Counters */
.counters-group {
  background: rgba(0, 0, 0, 0.02);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.counters-group.hide {
  display: none;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.counter-row:last-child {
  border-bottom: none;
}

.stepper {
  display: flex;
  align-items: center;
  background: var(--color-surface-bg);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.step-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.step-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.stepper input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-weight: 600;
}

.stepper input:focus {
  outline: none;
}

/* Disable arrows in number input */
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Calc Actions */
.calc-actions {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.calc-actions-row {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
}

.calc-result-box {
  display: flex;
  flex-direction: column;
}

.calc-result-box span:first-child {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.total-amount {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  margin-top: 10px;
}

#total-price,
#estimate-price-value {
  font-size: 5.5rem;
  /* Significantly larger digits */
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text);
  position: relative;
  z-index: 2;
  line-height: 0.9;
}

.euro-sign {
  font-size: 3.5rem;
  /* Smaller euro sign */
  color: var(--color-primary);
  z-index: 0;
  line-height: 1;
  opacity: 0.9;
  padding-bottom: 5px;
}

.btns-wrap {
  display: flex;
  gap: 1rem;
}

.calc-footer {
  text-align: center;
  margin-top: 1rem;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Countdown Timer styling */
.countdown-container {
  border: 2px solid var(--color-primary);
  background-color: rgb(from var(--color-primary) r g b / 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.countdown-text {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
}

.countdown-timer {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0.5rem 0;
  font-family: monospace, sans-serif;
  letter-spacing: 1px;
}

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

/* UTILS */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ANIMATIONS (REVEAL ON SCROLL) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
.footer {
  padding-bottom: 2rem;
  padding-top: 4rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.socials-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 1.5rem;
  color: var(--color-accent);
  background: rgba(0, 180, 216, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--color-primary);
}

.social-link:hover i {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 126, 103, 0.3);
}

.calc-actions-row button {
  align-self: end;
}


/* RESPONSIVE */
@media screen and (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-flex {
    flex-direction: column;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-dot {
    left: 11px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0.95rem 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-estimate {
    min-height: 2.8rem;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
  }

  .header-estimate-label {
    display: none;
  }

  #header-estimate-price-value {
    font-size: 1.15rem;
  }

  .header-estimate-currency {
    font-size: 0.82rem;
  }

  .lang-toggle {
    min-width: 3rem;
    padding: 0.4rem 0.8rem;
  }

  /* Base Container Adjustments to stop overflow */
  .container {
    width: 100%;
    padding: 0 1rem;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  /* Hero Fixes */
  .hero-title {
    font-size: 3rem;
    letter-spacing: 0;
    line-height: 1.1;
    word-wrap: break-word;
  }

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

  /* Stats Fixes */
  .stats-grid {
    grid-template-columns: 1fr;
    /* Force 1 column on mobile to prevent overflow */
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 2.5rem;
    /* Slightly smaller numbers */
  }

  /* Location Collage & Family Collage Mobile Refactor */
  .location-collage,
  .family-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    height: auto !important;
  }

  /* Force Family Images Out of Absolute Positioning */
  .fam-img-wrapper {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 350px !important;
    transform: none !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
  }

  .collage-col {
    width: 100% !important;
    margin: 0 !important;
  }

  .collage-col.right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .collage-col.left .img-single,
  .collage-col.center .img-main,
  .collage-col.right .img-top,
  .collage-col.right .img-bottom {
    width: 100% !important;
    height: auto !important;
    max-height: 350px;
    margin: 0 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
  }

  /* Concept & General Fixes */
  .section-title {
    font-size: 1.8rem;
  }

  .btns-wrap {
    flex-direction: column;
    width: 100%;
  }

  .btns-wrap .btn {
    width: 100%;
  }

  .calc-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .calc-actions-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .date-inputs {
    grid-template-columns: 1fr;
  }

  /* Philosophy Visual Fix for Mobile Overlap */
  .philosophy-flex {
    flex-direction: column;
    width: 100%;
  }

  .philosophy-content {
    max-width: 100%;
  }

  .philosophy-visual {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
  }

  .philosophy-visual .circle-blob {
    display: none;
    /* Hide the background blob on mobile to clean up space */
  }

  .philosophy-visual .floating-img {
    position: relative;
    transform: none !important;
    margin: 0;
    width: calc(50% - 0.5rem) !important;
    height: 220px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border-width: 2px !important;
    border-radius: var(--border-radius);
  }

  .philosophy-visual .floating-img:hover {
    transform: scale(1.02) !important;
  }
}

[hidden] {
  display: none !important;
}

html [lang] {
  display: none;
}

html:lang(en) [lang="en"],
html:lang(ru) [lang="ru"] {
  display: revert;
}

.registration-form {
  max-width: 860px;
  margin: 0 auto;
}

.registration-shell {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.password-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.password-input-wrap {
  position: relative;
}

.password-input-wrap .text-input {
  padding-right: 4.5rem;
}

.password-input-wrap .text-input:disabled {
  background: rgba(241, 245, 249, 0.9);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

.password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3.4rem;
  border: none;
  border-left: 1px solid rgba(100, 116, 139, 0.16);
  border-radius: 0 12px 12px 0;
  background: transparent;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.password-toggle i {
  font-size: 1.5rem;
}

.password-toggle:hover {
  background: rgba(255, 126, 103, 0.08);
  color: var(--color-primary);
}

.password-toggle:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.field-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text);
}

.field-label.minor {
  font-size: 0.95rem;
}

.field-caption,
.small-note,
.feedback-note,
.estimate-output,
.submit-response,
.member-empty-note {
  color: var(--color-text-muted);
}

.required-mark {
  color: var(--color-primary);
}

.text-input:disabled {
  opacity: 0.4;
}

.text-input,
.text-area,
.counter-control input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(100, 116, 139, 0.2);
  color: var(--color-text);
  padding: 1.15rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.text-input:focus,
.text-area:focus,
.counter-control input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-error {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(255, 126, 103, 0.12) !important;
}

.text-area {
  resize: vertical;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.8rem;
}

.day-toggle {
  position: relative;
  cursor: pointer;
}

.day-toggle input,
.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.day-toggle>.day-label,
.choice-pill>span {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1.5px solid rgba(100, 116, 139, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text-muted);
}

.day-toggle input:checked+.day-label,
.day-toggle.mandatory>.day-label,
.choice-pill input:checked+span {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0090ad 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.day-toggle input:disabled+.day-label {
  opacity: 1;
}

.day-toggle.is-checkout input:checked+.day-label,
.day-toggle.is-checkout.mandatory>.day-label {
  background: linear-gradient(135deg, #dff6fb 0%, #c4edf5 100%);
  color: #0d6477;
  border-color: rgba(0, 180, 216, 0.32);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.12);
}

.stay-note {
  margin-top: 0.9rem;
  margin-bottom: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(100, 116, 139, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.stay-note-checkout {
  color: var(--color-text);
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.18);
}

.stay-note-warning {
  color: var(--color-text);
  background: rgba(255, 183, 77, 0.12);
  border-color: rgba(255, 183, 77, 0.28);
}

.toggle-wrap-compact {
  margin-top: -0.15rem;
}

.policy-toggle {
  align-items: flex-start;
  line-height: 1.55;
}

.policy-toggle .toggle-slider {
  margin-top: 0.22rem;
}

.policy-toggle .toggle-label {
  font-size: 1rem;
  line-height: 1.55;
}

.policy-toggle a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.policy-toggle a:hover {
  color: var(--color-primary-dark);
}

.policy-toggle.input-error {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 126, 103, 0.35);
  border-radius: 12px;
  background: rgba(255, 126, 103, 0.06);
}

.conditional-panel {
  background: rgba(0, 0, 0, 0.02);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.together-panel,
.together-auto-panel,
.room-builder-panel,
.room-card-list,
.room-card-body,
.room-card-toggle-stack,
.room-third-bed-options,
.room-inline-toggle-list {
  display: flex;
  flex-direction: column;
}

.together-panel,
.together-auto-panel,
.room-builder-panel,
.room-card-list,
.room-card-body {
  gap: 1rem;
}

.together-note {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(100, 116, 139, 0.14);
}

.together-note .field-caption {
  margin: 0;
}

.room-builder-caption {
  margin: 0;
}

.room-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(100, 116, 139, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.room-card-header,
.room-card-header-copy,
.room-inline-toggle-list {
  display: flex;
  gap: 0.75rem;
}

.room-card-header {
  align-items: flex-start;
  justify-content: space-between;
}

.room-card-header-copy {
  flex-direction: column;
}

.room-card-index {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.room-card-title {
  font-size: 1.15rem;
}

.room-delete-btn {
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.1rem 0;
}

.room-card:first-child .room-delete-btn {
  display: none;
}

.room-delete-btn:hover {
  color: var(--color-primary-dark);
}

.room-primary-grid,
.room-optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.room-person-field,
.room-inline-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.room-inline-toggle-list {
  flex-wrap: wrap;
}
.room-third-bed-panel .room-inline-toggle-list {
  margin-top:.7em;
  flex-direction: initial;
}

.room-person-toggle,
.room-inline-toggle {
  width: fit-content;
}

.toggle-wrap.is-disabled,
.room-person-toggle.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.room-third-bed-panel,
.room-under-three-panel {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(247, 250, 252, 0.95);
  border: 1px solid rgba(100, 116, 139, 0.14);
}

.room-warning {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 126, 103, 0.08);
  border: 1px solid rgba(255, 126, 103, 0.18);
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.room-add-btn {
  align-self: flex-start;
}

.solo-choice-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solo-option-group {
  flex-direction: column;
  gap: 0.85rem;
}

.solo-option-group .radio-label {
  align-items: flex-start;
}

.inline-fields,
.choice-pills,
.counter-grid,
.member-detail-fields {
  display: grid;
  gap: 1rem;
}

.member-detail-fields-with-age {
  grid-template-columns: minmax(0, 1.8fr) minmax(120px, 0.8fr);
  align-items: end;
}

.inline-fields,
.counter-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-pills {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solo-gender-pills {
  max-width: 220px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-group.input-error {
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(255, 126, 103, 0.05);
}

.counter-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.member-age-field {
  min-width: 0;
}

@media (max-width: 640px) {
  .member-detail-fields-with-age {
    grid-template-columns: 1fr;
  }
}

.counter-control {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(100, 116, 139, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.counter-control:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.counter-btn {
  width: 40px;
  align-self: stretch;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.counter-btn[data-action="minus"] {
  border-right: 1px solid rgba(100, 116, 139, 0.16);
}

.counter-btn[data-action="plus"] {
  border-left: 1px solid rgba(100, 116, 139, 0.16);
}

.counter-btn:hover {
  background: rgba(255, 126, 103, 0.08);
  color: var(--color-primary);
}

.counter-control input {
  text-align: center;
  padding: 1.15rem 0.5rem;
  border: none;
  background: transparent;
  box-shadow: none;
  min-width: 0;
  border-radius: 0;
}

.counter-control input:focus {
  border: none;
  box-shadow: none;
}

.counter-control input::-webkit-outer-spin-button,
.counter-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.counter-control input[type=number] {
  -moz-appearance: textfield;
}

.member-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.member-detail-row {
  padding: 0;
}

.form-actions {
  display: flex;
  justify-content: center;
}

.registration-submit-gate {
  width: 100%;
}

.registration-countdown {
  margin-bottom: 2rem;
}

.registration-countdown-label {
  margin-bottom: 0;
}

.registration-countdown-value {
  font-size: 2.4rem;
  font-family: monospace, sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0.5rem 0;
  letter-spacing: 1px;
}

.feedback-note {
  font-weight: 600;
}

.feedback-note.is-error {
  color: var(--color-primary-dark);
}

.feedback-note.is-success {
  color: var(--color-accent);
}

.estimate-output {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.estimate-shared-note {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.estimate-auto-note {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 32rem;
}

.submit-response {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 1.25rem;
}

.submit-response-card h4 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.submit-response-card ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.submit-response-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.submit-response-warning {
  margin-top: 0.75rem;
  color: var(--color-primary-dark);
}

.footer-bottom {
  margin-top: 3rem;
}

.border-top {
  border-top: 1px solid var(--glass-border);
}

.pt-4 {
  padding-top: 1.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.fw-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .days-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .day-toggle > .day-label {
    border-radius: 12px;
    box-shadow: none;
  }

  .day-toggle {
    margin: 0;
  }

  .inline-fields,
  .choice-pills,
  .counter-grid,
  .password-row,
  .room-primary-grid,
  .room-optional-grid {
    grid-template-columns: 1fr;
  }

  .solo-gender-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-card-header {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .header-actions {
    max-width: 65%;
  }

  .header-estimate {
    min-width: 0;
    max-width: 100%;
  }

  #header-estimate-price-value {
    max-width: 5.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
