:root {
  /* Viewport settings */
  --viewport-min: 320px;
  --viewport-max: 1440px;
  
  /* Base settings */
  --font-size-base: 1rem;
  --line-height-base: 1.4;
  
  /* Fluid scaling formula parts */
  --fluid-min: 0.5rem;  /* Minimum scaling value */
  --fluid-max: 2.5rem;  /* Maximum scaling value */
  
  /* Type scale with clamp */
  --h1: clamp(2rem, var(--fluid-min) + 2.5vw, 3.2rem);  /* Changed from 3.6rem to 3.2rem */
  --h2: clamp(1.8rem, var(--fluid-min) + 2vw, 2.8rem);  /* Adjusted proportionally */
  --h3: clamp(1.5rem, var(--fluid-min) + 1.5vw, 2.2rem);  /* Adjusted proportionally */
  --h4: clamp(1.25rem, var(--fluid-min) + 0.75vw, 1.7rem);  /* Adjusted proportionally */
  --h5: clamp(1.125rem, var(--fluid-min) + 0.4vw, 1.4rem);  /* Adjusted proportionally */
  --h6: clamp(1rem, var(--fluid-min) + 0.25vw, 1.2rem);  /* Adjusted proportionally */
  --p: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --small: clamp(0.875rem, var(--fluid-min) + 0.1vw, 0.925rem);
}

html {
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  hyphens: auto;
}

/* general css */
img.responsive {
	width: 100%;
	height: auto;
}

.my-blog-content {
	
}

.my-blog-content p {
	margin-bottom: 0!important;
}

.my-blog-content h1, h2, h3, h4, h5, h6 {
	margin-top: 0.6rem!important;
	margin-bottom: 0.6rem!important;
	padding-top: 0!important;
	padding-bottom: 0!important;
	line-height: 1.2!important;
}

.my-blog-content img {
	margin-top: 0.4rem!important;
	margin-bottom: 0.4rem!important;
}

/* home page css */
.benefit-grid article:nth-child(1) {
  background-color: #0b3954!important;
}

.benefit-grid article:nth-child(2) {
  background-color: #87ceeb!important;
}

.benefit-grid article:nth-child(3) {
  background-color: #b8860b!important;
}

.benefit-grid article:nth-child(4) {
  background-color: #87ceeb!important;
}

.benefit-grid article:nth-child(5) {
  background-color: #b8860b!important;
}

.benefit-grid article:nth-child(6) {
  background-color: #0b3954!important;
}

/* Animation base */
.my-animation .fly-in-left,
.my-animation .fly-in-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* Specific animations */
.my-animation .fly-in-left {
  animation-name: flyInLeft;
  animation-delay: 0.3s;
}

.my-animation .fly-in-right {
  animation-name: flyInRight;
  animation-delay: 0.6s;
}

/* Keyframes */
@keyframes flyInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes flyInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* nearby grid layout */
.nearby-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nearby-content-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nearby-image-wrapper {
  width: 100%;
  height: 100%;
}

.nearby-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustment with breakpoint at 1024px */
@media (max-width: 1024px) {
  .nearby-grid-container {
    grid-template-columns: 1fr; /* Stack columns */
    grid-template-rows: auto auto; /* Define rows */
    grid-template-areas: 
      "image"
      "content"; /* Define order */
  }
  
  .nearby-image-wrapper {
    grid-area: image; /* Assign to image area */
  }
  
  .nearby-content-wrapper {
    grid-area: content; /* Assign to content area */
  }
}

.nearby-content-wrapper my-main-button, /* Or whatever class your button has */
.nearby-hotel-website-button { /* If you have a specific class for this button */
  display: inline-block; /* Makes the button only as wide as its content */
  width: auto; /* Ensures the button doesn't take full width */
  align-self: flex-start; /* If the content-wrapper is using flex, this aligns button to the start */
  max-width: fit-content; /* Alternative approach to limit width */
}

/* faq css */

.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item:not(:last-child) {
  margin-bottom: 0.4rem;
}

.accordion-header {
  background-color: var(--color-beige);
  /*border-radius: 25px;*/
  padding: 8px 20px; /* smaller vertical padding */
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  font-size: var(--p)!important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 36px; /* ensuring minimum clickable area */
  color: var(--color-prussian-blue);
}

.accordion-icon {
  font-size: 1.6rem; /* bigger arrow */
  transition: transform 0.3s ease;
  line-height: 1; /* important to avoid vertical misalignment */
  color: var(--color-prussian-blue);
}

.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 20px;
  background: none; /* ← REMOVE background */
}

.accordion-body p {
  margin: 15px 0;
  font-size: var(--small)!important;
  font-weight: 400;
}

.my-service-accordion button {
	background-color: #EFE9D4!important;
	border-radius: 50px;
}

/* Gravity Forms CSS */
form#gform_1 label, .gfield_label {
    display: none !important;
}

#gform_1 #input_1_1 {
    display: flex !important
;
    align-items: center !important;
    justify-content: center !important;
}

#gform_1 #input_1_1 span {
    width: 100% !important;
    padding: 0.3rem !important;
}

#gform_1 #field_1_5 legend.gfield_label {
    display: unset !important;
    font-weight: 600;
}

#gform_1 #field_1_5 label {
    display: unset !important;
    font-weight: 400;
    font-size: 95%;
}

#gform_1 #field_1_5 {
    padding: 0.3rem !important;
}

#gform_1 #gform_fields_1 fieldset {
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0.4rem !important;
}

#gform_1 #field_1_3 {
    padding: 0.3rem !important;
}

#gform_1 #field_1_4 {
    padding: 0.3rem !important;
}

#gform_1 #field_1_6 {
    padding: 0.3rem !important;
}

#gform_1 #field_1_7 {
    padding: 0.3rem !important;
}

#gform_1 input[type=submit]:not(.w-btn) {
    margin: 0.3rem !important;
}