/* common css */
:root {
  --white: #fff;
  --black: #000;
  --grey: #e5e5e5;

  --primary: #5000c0;
  --secondary: #1a1a1a;

  /* Overrides */
  --primary-color: var(--primary);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

figure,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}
a,
small {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  text-decoration: none;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
.main-wrp {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
.section-padding {
  padding: 60px 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background-color 0.3s ease-in-out;
}

#backToTopBtn:hover {
  opacity: 0.5 !important;
  border: 1px solid var(--primary);
}

#backToTopBtn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#backToTopBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  stroke-width: 2;
}
/* End Back Button */

/* buttons */
.btn {
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: var(--primary);
  box-shadow: 0 4px 15px rgba(80, 0, 192, 0.2);
}

.btn-primary:hover {
  background-color: #6000d0;
  box-shadow: 0 8px 25px rgba(80, 0, 192, 0.4);
}

.btn-dark {
  background-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.btn-dark:hover {
  background-color: #2a2a2a;
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4);
}

/* END buttons */

/* text */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 3.5rem;
  line-height: 1.4;
  font-weight: 700;
}
h2 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
}
p {
  font-size: 1rem;
}
/* END text */

/* header */
.header {
  padding: 2rem 0;
}
.nav-logo svg {
  max-width: 225px;
  width: 100%;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  height: 100%;
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  margin: -8px;
  border-radius: 12px;
  position: relative;
  width: fit-content;
}

.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-btn:hover::before {
  opacity: 1;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.nav-btn figure {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.nav-btn:hover figure {
  background: rgba(80, 0, 192, 0.15);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(80, 0, 192, 0.2);
}

.nav-btn figure svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.nav-btn:hover figure svg {
  transform: translate(-50%, -50%) rotate(20deg);
}
.nav-btn-wrp {
  display: flex;
  flex-direction: column;
}
.header {
  position: absolute;
  width: 100%;
  z-index: 99;
  color: var(--white);
  background: transparent;
}

.nav-item {
  color: var(--white);
  font-weight: 500;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  bottom: -4px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav-item:hover::after,
.nav-item.active::after {
  transform: scaleX(1);
}
.nav-item:hover {
  color: var(--third);
}
.nav-btn figure {
  color: var(--white);
}
.nav-btn-wrp small,
.nav-btn-wrp span {
  color: var(--white);
}
/* END header */

/* Mobile Menu */
.mobile-toggle-btn {
  background: none;
  border: none;
  color: var(--white);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background-color: #050505;
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(80, 0, 192, 0.25) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mobile-menu::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(80, 0, 192, 0.2) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.mobile-menu-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.mobile-close-btn {
  background: none;
  border: none;
  color: var(--white);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: 0.3s;
}

.mobile-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.mobile-menu-body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-height: 400px;
  background: radial-gradient(
    circle,
    rgba(80, 0, 192, 0.08) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  transform: translateX(10px);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  z-index: -1;
}

.mobile-contact-info {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  background-color: var(--primary);
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-btn:hover {
  background-color: #4000a0;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(80, 0, 192, 0.4);
}

.mobile-nav-btn:hover::before {
  left: 100%;
}

.mobile-nav-btn .icon svg {
  width: 24px;
  height: 24px;
}
/* END Header */

/* Hero Section */
.hero{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 200px 0 100px;
  z-index: 1;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;   
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  );
  z-index: 0;
  pointer-events: none;
}
.hero > .container{
  position: relative;
  z-index: 1;
}
.hero-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  color: var(--white);
  gap: 24px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 20px 6px 6px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-avatar-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--white);
  margin-left: -10px;
  z-index: 5;
  position: relative;
}

.hero-social-text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: var(--white);
}

.hero-search {
  background: var(--white);
  border-radius: 100px;
  padding: 8px 8px 8px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-search.search-offer{
    margin-top: -40px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    border: 1px solid #eee; 
    position: relative; 
    z-index: 10;
}

.hero-search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.hero-search-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  display: block;
}

.input-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.input-wrp .icon svg {
  width: 18px;
  height: 18px;
  stroke: #666;
}

.input-wrp input {
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  width: 100%;
  outline: none;
}

.hero-search-divider {
  width: 1px;
  height: 40px;
  background: var(--grey);
  margin-right: 20px;
}

/* Radius Slider */
.radius-wrp {
  gap: 8px;
}

.radius-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--primary) 0%, var(--grey) 0%);
  outline: none;
  cursor: pointer;
  margin: 0;
}

.radius-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(80, 0, 192, 0.3);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.radius-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(80, 0, 192, 0.4);
}

.radius-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(80, 0, 192, 0.3);
}

.radius-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: var(--grey);
}

.radius-slider::-moz-range-progress {
  height: 4px;
  border-radius: 2px;
  background: var(--primary);
}

.radius-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  min-width: 50px;
  text-align: right;
}
/* END Radius Slider */

/* END hero */

/* Subtitle style */
.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

.subtitle::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}
.filter-section{
  position: relative;
  z-index: 100  ;
}
/* Why Us Section */
.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-us .text-content {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.why-us .text-content p {
  color: #4a4a4a;
  line-height: 1.6;
}
.why-us .text-content p strong {
  color: var(--black);
  font-weight: 700;
}
.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-us-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.why-us-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #f0e6ff;
  border-radius: 50%;
  color: var(--primary);
}
.why-us-list .icon svg {
  width: 16px;
  height: 16px;
}
.why-us-img-wrp {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.why-us-img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* END Why us Section */

/* Offer Section */
.offer {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}
.watermark {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 15vw;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.offer-header h2{
    max-width: 400px;
}
.offer-watermark {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.02);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.offer-wrp {
  background-color: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.offer-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.offer-item .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.offer-item .icon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--primary);
}

.offer-item .icon svg {
  width: 100%;
  height: 100%;
}

.offer-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.offer-item p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}
/* END Offer Section */

/* Latest Accommodation Section */
.latest .section-header p {
  color: #666;
  font-size: 1rem;
}

.accommodation-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accommodation-card .card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-placeholder svg {
  color: #ccc;
  opacity: 0.5;
}

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

.location-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.location-badge svg {
  width: 14px;
  height: 14px;
}

.accommodation-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.accommodation-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.accommodation-card .card-meta {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.5;
}

.card-price-row {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.card-price-row .price-label {
  color: #666;
}

.card-price-row .price-val {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1rem;
}

.card-price-row .price-unit {
  color: #888;
  font-size: 0.75rem;
}

.btn-outline-dark {
  border: 1px solid #e5e5e5;
  color: var(--black);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  transition: left 0.3s ease;
  z-index: -1;
}


.btn-outline-dark:hover::before {
  left: 0;
}

.latest .btn-lg {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  background-color: #222;
  border: none;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.latest .btn-lg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.latest .btn-lg:hover {
  background-color: var(--secondary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.latest .btn-lg:hover::after {
  width: 300px;
  height: 300px;
}
/* END Latest Accommodation Section */

/* Process Section */

.process .section-header-wrp p {
  color: #666;
  margin-bottom: 0;
}

.process-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  z-index: 1;
  padding: 0 10px;
}

.process-count {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 0 10px #fff;
}

.process-count::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.process-count::after {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease 0.1s;
}

.process-item:hover .process-count {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-8px) rotate(360deg) scale(1.1);
  box-shadow:
    0 15px 40px rgba(80, 0, 192, 0.4),
    0 0 0 10px #fff,
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  border-color: var(--primary);
}

.process-item:hover .process-count::before {
  opacity: 0.4;
  transform: scale(1);
  animation: pulse 1.5s ease-out infinite;
}

.process-item:hover .process-count::after {
  opacity: 0.2;
  transform: scale(1);
  animation: pulse 1.5s ease-out infinite 0.3s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.process-item::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #e5e5e5;
  z-index: 1;
  transform: translateY(-50%);
}

.col-lg-3:last-child .process-item::after {
  display: none;
}

.process-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}

.process-item p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Reviews Section */
.reviews {
  background-color: #050505;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 1;
}

.section-header-wrp.light p {
  color: rgba(255, 255, 255, 0.6);
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--primary);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #7000ff);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 20px 60px rgba(80, 0, 192, 0.3),
    0 0 0 1px rgba(80, 0, 192, 0.5);
  border-color: transparent;
}

.review-card:hover::before {
  opacity: 1;
  animation: glow 2s ease-in-out infinite;
}

.review-card:hover::after {
  opacity: 1;
}

@keyframes glow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--white);
}

.review-info p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 0;
}

.review-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-style: italic;
}
/* END Reviews Section */

/* Contact Banner */
.contact-card {
  border-radius: 20px;
  overflow: hidden;
}
.contact-info {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--black);
}
.contact-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}
.contact-quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.contact-link .icon {
  width: 40px;
  height: 40px;
  border: 1px solid #f0f0f0;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  background: #f8f9fa;
}

.contact-link .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.contact-link:hover .icon {
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(80, 0, 192, 0.3);
}

.contact-link:hover .icon::before {
  transform: scale(1);
}

.contact-link .detail-text {
  display: flex;
  flex-direction: column;
}

.contact-link small {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 2px;
}

.contact-link strong {
  font-size: 1rem;
  font-weight: 700;
}

.contact-social-wrp{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: auto;
}
.contact-social-wrp small{
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
}
.contact-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
}

.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-btn:hover {
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(80, 0, 192, 0.3);
}

.social-btn:hover::before {
  transform: scale(1);
}
.contact-form-wrp {
  padding: 50px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(80, 0, 192, 0.08);
  box-shadow: 0 24px 48px -12px rgba(80, 0, 192, 0.15);
}
.booking-form label,
.contact-form label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
  color: #666;
}

.booking-form .form-control,
.contact-form .form-control {
  background-color: #f7f7f9;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.25s ease;
  width: 100%;
}

.booking-form .form-control:focus,
.contact-form .form-control:focus {
  background-color: var(--white);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(80, 0, 192, 0.1);
}

.booking-form .form-control::placeholder,
.contact-form .form-control::placeholder {
  color: #a5a5a5;
  font-weight: 500;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 18px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(80, 0, 192, 0.4);
  position: relative;
  overflow: hidden;
}

.booking-form button[type="submit"]::before,
.contact-form button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.booking-form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background-color: #400099;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 35px -5px rgba(80, 0, 192, 0.6);
}

.booking-form button[type="submit"]:hover::before,
.contact-form button[type="submit"]:hover::before {
  width: 100%;
  height: 400px;
}

.booking-form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 10px 20px -5px rgba(80, 0, 192, 0.5);
}

/* Custom Checkbox */
.booking-form .custom-checkbox,
.contact-form .custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  cursor: pointer;
  user-select: none;
}
.booking-form .custom-checkbox input,
.contact-form .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.booking-form .checkmark,
.contact-form .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #f7f7f9;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.booking-form .custom-checkbox:hover input ~ .checkmark,
.contact-form .custom-checkbox:hover input ~ .checkmark {
  background-color: #e9ecef;
}

.booking-form .custom-checkbox input:focus ~ .checkmark,
.contact-form .custom-checkbox input:focus ~ .checkmark {
  box-shadow: 0 0 0 4px rgba(80, 0, 192, 0.1);
}

.booking-form .custom-checkbox input:checked ~ .checkmark,
.contact-form .custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(80, 0, 192, 0.2);
}

.booking-form .checkmark:after,
.contact-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.booking-form .custom-checkbox input:checked ~ .checkmark:after,
.contact-form .custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.booking-form .custom-checkbox .checkmark:after,
.contact-form .custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-form .custom-checkbox span,
.contact-form .custom-checkbox span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  line-height: 1.4;
  padding-top: 1px;
  text-transform: none;
}
.booking-form .custom-checkbox span a,
.contact-form .custom-checkbox span a{
    font-weight: 700;
    color: var(--primary);
}
/* END Custom Checkbox */

/* END Contact Banner */

/* Footer */
.footer {
  background-color: #050505;
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo svg {
  height: auto;
  width: 250px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  opacity: 0.8;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-bottom {
  position: relative;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}
/* END footer */

/* hero sm */
.hero-sm{
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-sm::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6));
}

.hero-sm > *{
  position: relative;
  z-index: 1;
}
/* END hero sm */

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 0;
}
.breadcrumb a {
  color: var(--black);
  opacity: 0.6;
}
.breadcrumb a:hover {
  color: var(--primary);
  opacity: 1;
}
.breadcrumb span {
  color: var(--primary);
}
.breadcrumb .separator {
  color: #ccc;
}
.breadcrumb-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--white);
  text-align: center;
  align-items: center;
}
.breadcrumb-content p {
  max-width: 600px;
}
/* END Breadcrumb */

/* Map Section */
.map-content-wrp {
  padding-right: 20px;
}
.contact-list-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item-new {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.contact-item-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 0, 192, 0.03), rgba(112, 0, 255, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-item-new:hover {
  box-shadow: 0 12px 40px rgba(80, 0, 192, 0.15);
  border-color: rgba(80, 0, 192, 0.3);
  transform: translateY(-4px);
}

.contact-item-new:hover::before {
  opacity: 1;
}

.contact-item-new .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #f6faff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}

.contact-item-new .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.contact-item-new:hover .icon-box {
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px) rotate(360deg) scale(1.08);
  box-shadow: 0 10px 25px rgba(80, 0, 192, 0.3);
}

.contact-item-new:hover .icon-box::before {
  transform: scale(1);
}
.contact-item-new .icon-box svg {
  width: 24px;
  height: 24px;
}
.contact-item-new .text-box {
  display: flex;
  flex-direction: column;
}
.contact-item-new .label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item-new .value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
}
.map-container-new {
  border-radius: 24px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}
.map-container-new iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1);
  transition: 0.5s ease;
}
.map-container-new:hover iframe {
  filter: grayscale(0);
}
/* End Map Section */

/* Filter Section */
.filter-wrp {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
/* END Filter Section */

/* About Story */
.about-img-wrp {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.about-img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.years-experience {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-top-right-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.years-experience .number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.years-experience .text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}
.about-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-content .subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}
.about-features-list {
  margin-top: 2rem;
}
.about-features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.about-features-list li .icon {
  color: var(--primary);
}
/* END About Story */

/* Values Section */
.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 0, 192, 0.03), rgba(112, 0, 255, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(80, 0, 192, 0.12);
  border-color: rgba(80, 0, 192, 0.2);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(80, 0, 192, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover .icon-box {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 20px rgba(80, 0, 192, 0.3);
}

.value-card .icon-box svg {
  width: 32px;
  height: 32px;
  transition: transform 0.4s ease;
}

.value-card:hover .icon-box svg {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: var(--primary);
}

.value-card p {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
/* END Values Section */

/* Stats Section */
.stat-item {
  padding: 2rem;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
}
/* END Stats Section */

/* Flatpickr Theme Override */
.flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 8px; /* Match other dropdowns spacing */
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 600;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: var(--primary);
  border-color: var(--primary);
}
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before {
  display: none !important;
}

/* Autocomplete Suggestions */
.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 8px;
  padding: 8px 0;
}

.suggestions-list.active {
  display: block;
}

.suggestion-item {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f9f9f9;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.suggestion-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #f0f0f5;
  border-radius: 50%;
  color: #666;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.suggestion-item .icon svg {
  width: 16px;
  height: 16px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #f7f7f9;
  color: var(--primary);
}

.suggestion-item:hover .icon {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Guests Dropdown */
.guests-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 16px;
  z-index: 1000;
  display: none;
  margin-top: 8px;
}

.guests-dropdown.active {
  display: block;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.guest-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guest-row:first-child {
  padding-top: 0;
}

.guest-label {
  display: flex;
  flex-direction: column;
}

.guest-label .type {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
}

.guest-label .desc {
  font-size: 0.8rem;
  color: #888;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--secondary);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.counter-btn:hover:not(.disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.counter-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #eee;
}

.guest-counter .count {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
/* END Guests Dropdown */

/* Guest counter input */
.guest-counter input.count-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  -moz-appearance: textfield;
}
.guest-counter input.count-input::-webkit-outer-spin-button,
.guest-counter input.count-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* END Guest counter input */

/* error */
.error-section {
  padding: 180px 0 100px;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f8f9fa;
}

.error-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30vw;
  font-weight: 900;
  color: rgba(80, 0, 192, 0.03); 
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.error-content {
  position: relative;
  z-index: 2;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(80, 0, 192, 0.15);
}

.error-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.error-content p {
  font-size: 1.125rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.header-dark .nav-item {
  color: var(--secondary);
}
.header-dark .nav-item:hover {
  color: var(--primary);
}
.header-dark .nav-logo path {
  fill: var(--primary);
}

.error-page-header {
  background: #050505;
  position: relative !important;
}
/* END error */

/* thanks */
/* Thank You Page Styles */
.thank-you-section {
    padding: 180px 0 120px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(80, 0, 192, 0.03); /* Primary color low opacity */
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thank-you-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.thank-you-content p {
    font-size: 1.125rem;
    color: #555;
    max-width: 580px;
    margin-bottom: .75rem;
    line-height: 1.6;
}
.thank-you-content .btn{
    margin-top: 1rem;
}

/* Success Icon Animation */
.success-icon-wrp {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(80, 0, 192, 0.4);
}

.success-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(80, 0, 192, 0.2);
    z-index: 1;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Next Steps Box */
.next-steps-box {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 1rem;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.next-steps-box span {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.next-steps-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}
/* END thanks */

/* offer detail page */
.alert-response{
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  color: var(--white);
  background-color: var(--primary);
  font-weight: 600;
}
.detail-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.95rem;
  margin-top: 12px;
}

.detail-location svg {
  color: var(--primary);
}

.detail-gallery {
  margin-bottom: 40px;
}

.detail-main-slider {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.detail-main-slider .splide__slide {
  aspect-ratio: 16/10;
}

.detail-main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-main-slider .splide__arrow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.detail-main-slider:hover .splide__arrow {
  opacity: 1;
}

.detail-main-slider .splide__arrow:hover {
  background: var(--white);
}

.detail-main-slider .splide__arrow svg {
  fill: var(--primary);
  width: 20px;
  height: 20px;
}

.detail-main-slider .splide__arrow--prev {
  left: 20px;
}

.detail-main-slider .splide__arrow--next {
  right: 20px;
}

.detail-thumbnail-slider {
  margin-top: 16px;
}
.splide__track--nav>.splide__list>.splide__slide.is-active{
  border: none;
}
.splide__track--nav>.splide__list>.splide__slide{
  border: none;
}

.detail-thumbnail-slider .splide__slide {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.detail-thumbnail-slider .splide__slide:not(.is-active) img {
  filter: brightness(0.5);
  opacity: 0.7;
}

.detail-thumbnail-slider .splide__slide.is-active {
  border-color: var(--primary);
}

.detail-thumbnail-slider .splide__slide.is-active img {
  filter: blur(0);
  opacity: 1;
}

.detail-thumbnail-slider img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: all 0.3s ease;
}

.detail-description {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #eee;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-description h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.detail-description p {
  color: #555;
  line-height: 1.7;
}
.detail-description-wrp{
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.detail-description-wrp ul,
.detail-description-wrp ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-description-wrp ul li {
  position: relative;
  padding-left: 24px;
  color: #555;
  line-height: 1.7;
}

.detail-description-wrp ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/themes/solfory/assets/images/icons/check.svg") no-repeat center / contain;
}

.detail-description-wrp ol {
  counter-reset: item;
  padding-left: 0;
}

.detail-description-wrp ol li {
  position: relative;
  padding-left: 40px;
  color: #555;
  line-height: 1.7;
  counter-increment: item;
}

.detail-description-wrp ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, #6000d0 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(80, 0, 192, 0.2);
}

.detail-description-wrp hr {
  border: none;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary) 20%,
    var(--primary) 80%,
    transparent 100%
  );
  margin: 12px 0;
  opacity: 0.2;
  position: relative;
}

.detail-description-wrp hr::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(80, 0, 192, 0.1);
}

.detail-description-wrp strong {
  color: var(--secondary);
  font-weight: 700;
}

.detail-description-wrp em {
  font-style: italic;
  color: #666;
}

.detail-description-wrp a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.detail-description-wrp a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.detail-description-wrp a:hover {
  color: #6000d0;
}

.detail-description-wrp a:hover::after {
  transform: scaleX(1);
}

.detail-features {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.detail-features h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f0f1f3;
  transform: translateX(4px);
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item span {
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-sidebar {
  position: sticky;
  top: 2rem;
}

.price-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.price-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-per {
  font-size: 0.85rem;
  color: #888;
}

.price-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #e8f5e9;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2e7d32;
}

.price-badge svg {
  width: 14px;
  height: 14px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 0.875rem;
}

.info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 12px;
  margin-bottom: 0;
}

.contact-quick-card {
  background: linear-gradient(135deg, var(--primary) 0%, #7000ff 100%);
  padding: 28px;
  border-radius: 16px;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-quick-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-quick-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-options {
  display: flex;
  gap: 12px;
}

.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-btn:hover::after {
  transform: translateX(0);
}

.contact-btn:hover svg {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.info-card-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
}

.info-card-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.info-card-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text strong {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-text p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0;
}
/* END offer detail page */

/* Booking Response */
.booking-response {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(80, 0, 192, 0.05) 0%, rgba(80, 0, 192, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(80, 0, 192, 0.1);
}

.booking-response .success-icon-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

.booking-response .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #6000d0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(80, 0, 192, 0.3);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.booking-response .success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  stroke-width: 3;
}

.booking-response .success-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: ripple 1.5s ease-out infinite;
}

.booking-response h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.booking-response p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}
/* END Booking Response */

/* Pagination */
.pagination-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination-wrapper .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrapper .pagination li {
  list-style: none;
}

.pagination-wrapper .pagination a,
.pagination-wrapper .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.pagination-wrapper .pagination a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 0, 192, 0.2);
}

.pagination-wrapper .pagination .active span {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(80, 0, 192, 0.3);
}

.pagination-wrapper .pagination .disabled span {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-wrapper .pagination li:first-child a,
.pagination-wrapper .pagination li:last-child a {
  font-weight: 600;
}
/* END Pagination */

/* Custom Pagination for Offers */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination .page-item {
  list-style: none;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: var(--white);
  cursor: pointer;
}

.pagination .page-link:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 0, 192, 0.2);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(80, 0, 192, 0.3);
  pointer-events: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-weight: 600;
}

.pagination .page-link svg {
  width: 20px;
  height: 20px;
}
.page-item.page-link,
.page-item:last-child .page-link{
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
.page-item:first-child .page-link {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}
/* END Custom Pagination */

/* info content */
.info-content {
  background: var(--white, #ffffff);
  color: var(--black, #000000);
  padding: clamp(16px, 2.5vw, 28px);
  border: 1px solid var(--border, #CACACA);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  line-height: 1.65;
  overflow: hidden;
}

.info-content h2 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border, #CACACA);
  line-height: 1.2;
}

.info-content h3 {
  margin: 22px 0 10px;
  line-height: 1.25;
}

.info-content p {
  margin: 0 0 12px;
}

.info-content ul {
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-content li {
  position: relative;
  padding-left: 28px;
}

.info-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  background: url("/themes/solfory/assets/images/icons/check.svg") no-repeat center / contain;
}

.info-content a {
  color: var(--primary, #0b5ed7);
  text-decoration: none;
  text-underline-offset: 3px;
}

.info-content a:hover,
.info-content a:focus {
  text-decoration: underline;
}

.info-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 14px 0 18px;
  background: var(--white, #ffffff);
  border: 1px solid var(--border, #CACACA);
  border-radius: 14px;
  overflow: hidden;
}

.info-content thead th {
  background: var(--primary, #0b5ed7);
  color: var(--white, #ffffff);
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border, #CACACA);
}

.info-content tbody th,
.info-content tbody td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--border, #CACACA);
  background: var(--white, #ffffff);
}

.info-content tbody tr:nth-child(even) th,
.info-content tbody tr:nth-child(even) td {
  background: #fafafa;
}

.info-content tbody tr:last-child th,
.info-content tbody tr:last-child td {
  border-bottom: 0;
}

.info-content tbody th[scope="row"] {
  width: 34%;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

.info-content hr {
  border: 0;
  height: 1px;
  background: var(--border, #CACACA);
  margin: 18px 0;
}

.info-content small {
  display: block;
  color: rgba(0, 0, 0, 0.7);
}

.info-content em {
  color: rgba(0, 0, 0, 0.75);
}

.info-content strong {
  color: var(--black, #000000);
}

@media (max-width: 640px) {
  .info-content {
    padding: 16px;
    border-radius: 14px;
  }

  .info-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  .info-content thead,
  .info-content tbody,
  .info-content tr {
    width: max-content;
  }

  .info-content thead th,
  .info-content tbody th,
  .info-content tbody td {
    white-space: nowrap;
  }
}

/* END info content */

/* Sekcia Mestá v okolí */
.detail-nearby {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.detail-nearby h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Karta mesta */
.nearby-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa; /* Jemne šedá */
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nearby-item:hover {
    background-color: #fff;
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Ikonka */
.nearby-icon {
    color: #6c757d;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Obsah (názov a km) */
.nearby-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nearby-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.nearby-distance {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    white-space: nowrap;
}