@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #f2f2f0;
  overflow: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}



/* Navigation bar */
header {
  background: #ffbe33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 65px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Search Wrapper */
.search-wrapper {
  position: relative;
  height: 40px;
  z-index: 2000;
}

.search-input {
  width: 0;
  padding: 8px 50px 8px 15px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  opacity: 0;
  background: #f2f2f0;
  outline: none;
  transition: width 0.35s ease, opacity 0.35s ease;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.search-wrapper.active .search-input {
  width: 240px;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  right: 10px;
}

.search-icon {
  position: absolute;
  top: 7px;
  right: 20px;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.search-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Search Panel */
.search-panel {
  position: absolute;
  top: 63px;
  right: 10px;
  width: 420px;
  min-height: 120px;
  background: #dfe1e0;
  border: none;
  display: none;
  z-index: 99999;
}

.search-panel.show {
  display: block;
}

.search-panel-inner {
  display: grid;
  gap: 0;
  background: #dfe1e0;
}

.search-column {
  padding: 20px 20px 20px; 
  min-height: 180px;
  background: #dfe1e0;
}

.search-column + .search-column {
  border-left: 1px solid rgba(74, 66, 64, 0.12);
}

.search-column-title {
  font-family: 'Vend Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4a4240;

  margin-top: 0;          
  margin-bottom: 5px;     

  padding-bottom: 0;
}

.search-list + .search-column-title {
  margin-top: 20px;
}

.search-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #dfe1e0;
	margin-bottom: 15px;
}

.search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  font-size: 15px;
  color: #4a4240;
 font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  cursor: pointer;
  border-bottom: 1px solid rgba(74, 66, 64, 0.08);
  background: transparent;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover,
.search-item.active {
  color: #ffbe33;
}

.search-item-text {
  flex: 1;
  line-height: 1.35;
}

.search-item-type {
  font-size: 11px;
  color: #7d7470;
  white-space: nowrap;
}

.search-empty {
  font-size: 14px;
  color: #7d7470;
  padding-top: 4px;
}

/* Hamburger */
header .menu {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  top: -2px;
}

header .menu span {
  display: block;
  height: 5px;
  width: 100%;
  background: #4A4240;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
}

header .menu span:nth-child(1) { top: 0; }
header .menu span:nth-child(2) { top: 50%; transform: translateY(-50%); }
header .menu span:nth-child(3) { bottom: 0; }

header .menu.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

header .menu.active span:nth-child(2) {
  opacity: 0;
}

header .menu.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: calc(100% + 24px);
  right: -20px;             
  display: none;
  flex-direction: column;
  width: 220px;
  background: #dfe1e0;
  z-index: 999;
  padding: 30px 15px 20px 0;       
  overflow: visible;
  box-sizing: border-box;
}

.dropdown.show {
  display: flex;
}

/* Dropdown Menu */
.dropdown > a,
.dropdown-group summary {
  display: block;
  margin: 0;  
  padding: 5px 20px 5px 0; 
  line-height: 1.2;
  white-space: nowrap;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #4a4240;
  text-align: right;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
}

.dropdown > a + a,
.dropdown > a + .dropdown-group,
.dropdown-group + .dropdown-group,
.dropdown-group + a {
  margin-top: 15px;  
}

.dropdown > a:hover,
.dropdown-group summary:hover,
.dropdown-group[open] summary,
.dropdown > a.active,
.dropdown-group summary.active,
.panel-card:hover span {
  color: #ffbe33;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.dropdown-group summary::-webkit-details-marker {
  display: none;
}

.dropdown-group {
  position: static;
  margin: 0;
  padding: 0;
  background: #dfe1e0;
}

.image-column {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;              
  width: 500px;
  background: #dfe1e0;
  padding: 30px 28px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 15px 40px;
  align-content: start;
  justify-content: start;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.dropdown-group[open] .image-column {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.panel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.panel-card img {
  width: 122px;
  height: 122px;
  display: block;
  object-fit: cover;
}

.panel-card span {
  margin-top: 6px;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #4a4240;
  text-align: center;
  max-width: 130px;
  white-space: normal;
  word-break: break-word;
}

.panel-card:hover span {
  color: #ffbe33;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Footer */
.footer {
  background: #ffbe33;
  padding: 60px 80px 20px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 30% 30% 40%;
  gap: 40px;
  align-items: stretch;
  background: transparent;
}

.footer-left {
  justify-self: start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding-left: 120px;
}

.footer-middle a {
  text-decoration: none;
  color: #4a4240;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 23px;
}

.footer-middle a:hover {
  text-decoration: underline;
text-underline-offset: 3px;
	text-decoration-thickness: 3px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 60px;
}

.footer-right h4 {
  color: #4a4240;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  line-height: 1.8;
  font-size: 23px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.footer-right p {
  font-size: 14px;
  line-height: 1.8;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  color: #4a4240;
}

.info-block {
  margin-bottom: 20px;
}

.contact-row {
  display: flex;
  gap: 40px;
}

.quote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #4a4240;
  width: 332px;
  height: 170px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  gap: 0;
margin-top:180px;
}

.quote-btn .btn-main {
  font-size: 40px;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  color: #f2f2f0;
  margin-bottom: 2px;
  transition: color 0.3s;
}

.quote-btn:hover .btn-main {
  color: #ffbe33;
}

.quote-btn .btn-inner-box {
  background: #8b887e;
  padding: 10px 14px 10px 30px;
  display: flex;
  align-items: center;
  width: 283px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.quote-btn .btn-inner-box:hover {
  background: #f2f2f0;
  transform: translateY(-2px);
}

.quote-btn .btn-inner-box .arrow-icon {
  width: 58px;
  height: auto;
  margin-left: auto;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 18px;
  text-align: center;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #4a4240;
  border-top: 2px solid rgba(74, 66, 64, 0.35);
  background: transparent;
}

/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 80px;
  right: 17px;
  width: 55px;
  height: 55px;
  border: none;
  background: transparent;  
  cursor: pointer;
  display: none;
  z-index: 9999;
  padding: 0;
}

#backToTop img {
  position: absolute;
  width: 55px;
  height: 55px;
  top: 0;
  left: 0;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

#backToTop .default {
  opacity: 1;
}

#backToTop .hover {
  opacity: 0;
}

#backToTop:hover .default {
  opacity: 0;
}

#backToTop:hover .hover {
  opacity: 1;
}

#backToTop:hover {
  transform: translateY(-2px);
}

/* =========================
   SHARED FORM STYLES
   (for contact form + quote popup)
========================= */

.field-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Vend Sans', sans-serif;
  color: #4a4240;
}

input,
select,
textarea {
  width: 100%;
  border: none;
  background: #dfe1e0;
  color: #4a4240;
  font: inherit;
  padding: 12px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
}

input,
select {
  height: 46px;
}

textarea {
  height: 118px;
  resize: none;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 6px;
}

.actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
}

button {
  border: none;
  background: #ffbe33;
  color: #4a4240;
  font: inherit;
  font-weight: 700;
  padding: 12px 34px;
  cursor: pointer;
  display: block;
  margin: 10px auto;
  transition: background 0.2s ease, color 0.2s ease;
}

button:hover {
  background: #4a4240;
  color: #f2f2f0;
}

input::placeholder,
textarea::placeholder {
  color: #4a4240;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: #dfe1e0;
}

/* =========================
   QUOTE POPUP DROPDOWN FIX
========================= */

.quote-form-panel,
.quote-form-panel form,
.quote-form-panel .row,
.quote-form-panel .field-group {
  overflow: visible;
}

.quote-form-panel .custom-service-select,
.quote-form-panel .custom-time-select {
  position: relative;
  z-index: 10;
}

.quote-form-panel .custom-service-select.open,
.quote-form-panel .custom-time-select.open {
  z-index: 40000;
}

.quote-form-panel .custom-service-options,
.quote-form-panel .custom-time-options {
  z-index: 40001;
}

.quote-booking-calendar,
.quote-date-wrap .flatpickr-calendar {
  z-index: 40002 !important;
}
/* ===== SERVICE CUSTOM DROPDOWN ===== */
.custom-service-select {
  position: relative;
  width: 100%;
  background: #dfe1e0;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  box-sizing: border-box;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-service-select::after {
  content: "▼";
  position: absolute;
  right: 12px;
  font-size: 0.75rem;
  color: #4a4240;
  pointer-events: none;
}

.custom-service-select:hover,
.custom-service-select.active {
  background: #8B887E;
  color: #f2f2f0;
}

.custom-service-selected {
  width: 100%;
  padding-right: 24px;
  box-sizing: border-box;
  line-height: 46px;
}

.custom-service-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #dfe1e0;
  color: #4a4240;
  display: none;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid rgba(74, 66, 64, 0.08);
}

.custom-service-select.open .custom-service-options {
  display: block;
}

.custom-service-options li {
  padding: 12px 16px;
  color: #4a4240;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  cursor: pointer;
}

.custom-service-options li:hover,
.custom-service-options li.active {
  background: #ffbe33;
  color: #4a4240;
}

/* ===== CUSTOM TIME DROPDOWN ===== */
.custom-time-select {
  position: relative;
  width: 100%;
  background: #dfe1e0;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  box-sizing: border-box;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-time-select::after {
  content: "▼";
  position: absolute;
  right: 12px;
  font-size: 0.75rem;
  color: #4a4240;
  pointer-events: none;
}

.custom-time-select:hover,
.custom-time-select.active {
  background: #8B887E;
  color: #f2f2f0;
}

.custom-time-selected {
  width: 100%;
  padding-right: 24px;
  box-sizing: border-box;
  line-height: 46px;
}

.custom-time-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #dfe1e0;
  display: none;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid rgba(74, 66, 64, 0.08);
  scrollbar-width: thin;
  scrollbar-color: #8b887e #dfe1e0;
}

.custom-time-options::-webkit-scrollbar {
  width: 10px;
}

.custom-time-options::-webkit-scrollbar-track {
  background: #dfe1e0;
}

.custom-time-options::-webkit-scrollbar-thumb {
  background: #8b887e;
  border-radius: 999px;
  border: 2px solid #dfe1e0;
}

.custom-time-options::-webkit-scrollbar-thumb:hover {
  background: #4a4240;
}

.custom-time-select.open .custom-time-options {
  display: block;
}

.custom-time-options li {
  padding: 12px 16px;
  color: #4a4240;
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  cursor: pointer;
}

.custom-time-options li:hover,
.custom-time-options li.active {
  background: #ffbe33;
  color: #4a4240;
}

.custom-time-options li.disabled {
  color: #8b887e;
  background: #dfe1e0;
  cursor: not-allowed;
  pointer-events: none;
}
/* =========================
   QUOTE MODAL CALENDAR
========================= */
.quote-date-wrap {
  position: relative;
  width: 100%;
}

.quote-booking-calendar,
.quote-date-wrap .flatpickr-calendar {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;

  width: 100% !important;        
  max-width: 100% !important;
  min-width: 100% !important;

  margin: 0 !important;
  background: #f2f2f0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  box-sizing: border-box !important;
  overflow: hidden !important;
  z-index: 30000 !important;

  font-family: 'Funnel Sans', sans-serif !important;
}

.quote-booking-calendar .flatpickr-innerContainer,
.quote-booking-calendar .flatpickr-rContainer,
.quote-booking-calendar .flatpickr-days,
.quote-booking-calendar .dayContainer,
.quote-booking-calendar .flatpickr-months,
.quote-booking-calendar .flatpickr-weekdays,
.quote-booking-calendar .flatpickr-weekdaycontainer {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.quote-booking-calendar .flatpickr-current-month {
  font-size: 12px !important;
  font-weight: 700 !important;
}

.quote-booking-calendar .flatpickr-weekday {
  font-size: 10px !important;
}

.quote-booking-calendar .dayContainer {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 2px !important;
  padding: 6px !important;
}

.quote-booking-calendar .flatpickr-day {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  font-size: 11px !important;
  border-radius: 50% !important;
  margin: 0 !important;
}

.quote-date-wrap .flatpickr-calendar {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  top: calc(100% + 6px) !important;
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20000;
}

.quote-modal.show {
  display: block;
}

.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 66, 64, 0.35);
}

.quote-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(550px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  transform: translate(-50%, -50%);
  background: #f2f2f0;
  padding: 36px 42px 30px 42px;  
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  z-index: 20001;
  box-shadow: 0 18px 45px rgba(74, 66, 64, 0.18);

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #8b887e #f2f2f0;
}

/* Chrome / Edge / Safari */
.quote-modal-panel::-webkit-scrollbar {
  width: 10px;
}

.quote-modal-panel::-webkit-scrollbar-track {
  background: #f2f2f0;
}

.quote-modal-panel::-webkit-scrollbar-thumb {
  background: #8b887e;
  border-radius: 999px;
  border: 2px solid #f2f2f0;
}

.quote-modal-panel::-webkit-scrollbar-thumb:hover {
  background: #4a4240;
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #4a4240;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.quote-modal-close:hover {
  background: transparent;
  color: #8B887E;
}

.quote-form-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.quote-form-title {
  font-size: 30px;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  margin: 0 0 34px 0;
  line-height: 1;
  color: #4a4240;
  text-align: center;
}

.quote-form-panel form {
  width: 100%;
  max-width: 500px;   
  margin: 0 auto;     
  padding-bottom: 0;
}

.quote-form-panel label {
  display: block;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #4a4240;
  margin-bottom: 8px;
}

.quote-form-panel input,
.quote-form-panel textarea,
.quote-form-panel .custom-service-selected,
.quote-form-panel .custom-service-options li,
.quote-form-panel .custom-time-selected,
.quote-form-panel .custom-time-options li {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  color: #4a4240;
}

.quote-form-panel input::placeholder,
.quote-form-panel textarea::placeholder {
  font-family: 'Funnel Sans', sans-serif;
  font-weight: 400;
  color: #4a4240;
}

.quote-form-panel .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-bottom: 6px;
}

.quote-form-panel .actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

.quote-form-panel .actions button {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto;
}

.quote-btn {
  cursor: pointer;
}

@media (max-width: 768px) {
  .quote-modal-panel {
    width: min(520px, calc(100vw - 48px));
    max-height: calc(100vh - 32px);
    padding: 24px 18px 20px 18px;
  }

  .quote-modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .quote-form-title {
    font-size: 1.7rem;
    margin: 0 0 24px 0;
    line-height: 1;
    text-align: center;
  }

  .quote-form-panel form {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-bottom: 0;
  }

  .quote-form-panel label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .quote-form-panel input,
  .quote-form-panel textarea,
  .quote-form-panel .custom-service-selected,
  .quote-form-panel .custom-service-options li,
  .quote-form-panel .custom-time-selected,
  .quote-form-panel .custom-time-options li {
    font-size: 0.95rem;
  }

  .quote-form-panel .row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 10px;
  }

  .quote-form-panel .actions {
    margin-top: 14px;
    justify-content: center;
  }

  .quote-form-panel .actions button {
    font-size: 0.95rem;
    padding: 10px 24px;
    margin: 0 auto;
  }

  .quote-modal-panel::-webkit-scrollbar {
    width: 8px;
  }
}