/* Font Faces */
@font-face {
  font-family: 'Albra';
  src: url('https://static1.squarespace.com/static/618712634cc9d14bd80427f3/t/618726ad2ae7d330b43cb5f8/1636247213169/BumbumType+-+Albra+Light.otf');
}

@font-face {
  font-family: 'Albra-Italic';
  src: url('https://static1.squarespace.com/static/618712634cc9d14bd80427f3/t/618726b6bf654a24c669edb5/1636247222114/BumbumType+-+Albra+Light+Italic.otf');
}

/* Scroll Animation Base Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.animate-in {
  opacity: 1;
}

/* Slide In From Left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Slide In From Right */
.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Bounce In Animation */
.bounce-in {
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Rotate In Animation */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-in.animate-in {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Stagger Animation Delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Hover Animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .fade-in,
  .slide-in-left,
  .slide-in-right,
  .scale-in,
  .bounce-in,
  .rotate-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .pulse {
    animation: none;
  }
}

/* CSS Variables */
:root {
  --white-hsl: 0,0%,100%;
  --black-hsl: 0,0%,0%;
  --safeDarkAccent-hsl: 0,0%,0%;
  --safeInverseDarkAccent-hsl: 0,0%,100%;
  --accent-hsl: 76.36363636,24.44444444%,64.70588235%;
  --lightAccent-hsl: 204,31.91489362%,90.78431373%;
  --darkAccent-hsl: 180,5.52147239%,31.96078431%;
  
  --base-font-size: 15px;
  --heading-font-font-family: "adobe-caslon-pro";
  --heading-font-font-style: normal;
  --heading-font-font-weight: 400;
  --heading-font-text-transform: none;
  --heading-font-letter-spacing: 0em;
  --heading-font-line-height: 1.5em;
  --body-font-font-family: "Work Sans";
  --body-font-font-style: normal;
  --body-font-font-weight: 400;
  --body-font-text-transform: none;
  --body-font-letter-spacing: .01em;
  --body-font-line-height: 1.6em;
  
  --heading-1-size: 2.9rem;
  --heading-1-size-value: 2.9;
  --heading-3-size: 1.9rem;
  --heading-3-size-value: 1.9;
  --large-text-size: 1.3rem;
  --large-text-size-value: 1.3;
  --normal-text-size: 1rem;
  --normal-text-size-value: 1;
  
  --paragraphLargeColor: hsla(var(--black-hsl),1);
  --headingExtraLargeColor: hsla(var(--black-hsl),1);
  --headingMediumColor: hsla(var(--black-hsl),1);
  --siteBackgroundColor: hsla(var(--white-hsl),1);
  --secondaryButtonBackgroundColor: #2099d7;
  --secondaryButtonTextColor: hsla(var(--safeInverseDarkAccent-hsl),1);
  
  --secondary-button-font-font-family: "Helvetica Neue",Arial,sans-serif;
  --secondary-button-font-font-style: normal;
  --secondary-button-font-font-weight: 600;
  --secondary-button-font-text-transform: none;
  --secondary-button-font-letter-spacing: 0em;
  --secondary-button-font-line-height: 1.2em;
  --secondary-button-font-font-size-value: 1.1;
  
  --secondary-button-padding-x: 2.004em;
  --secondary-button-padding-y: 1.2em;
  --secondary-button-stroke: 0px;
}

body {
  margin: 0;
  font-family: var(--body-font-font-family);
  font-style: var(--body-font-font-style);
  font-weight: var(--body-font-font-weight);
  letter-spacing: var(--body-font-letter-spacing);
  text-transform: var(--body-font-text-transform);
  font-size: var(--base-font-size);
  color: var(--paragraphLargeColor);
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: var(--siteBackgroundColor);
}

/* Moving Contact Line Styles */
.moving-contact-line {
  background: linear-gradient(135deg, #2099d7 0%, #48b3e8 100%);
  color: white;
  height: 40px;
  overflow: hidden;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(32, 153, 215, 0.2);
}

.contact-ticker {
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: moveRight 25s linear infinite;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-separator {
  font-size: 16px;
  opacity: 0.7;
  margin: 0 10px;
}

@keyframes moveRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}

/* Pause animation on hover */
.moving-contact-line:hover .contact-content {
  animation-play-state: paused;
}

/* Mobile responsive styles for moving contact line */
@media (max-width: 768px) {
  .moving-contact-line {
    height: 35px;
  }
  
  .contact-content {
    font-size: 13px;
    gap: 25px;
    animation-duration: 20s;
  }
  
  .contact-item svg {
    width: 14px;
    height: 14px;
  }
  
  .contact-separator {
    font-size: 14px;
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .moving-contact-line {
    height: 32px;
  }
  
  .contact-content {
    font-size: 12px;
    gap: 20px;
    animation-duration: 18s;
  }
  
  .contact-item svg {
    width: 12px;
    height: 12px;
  }
  
  .contact-separator {
    font-size: 12px;
    margin: 0 6px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
}

.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop Video - Show on larger screens */
.hero-video-desktop {
  display: block;
}

/* Mobile Video - Hide on larger screens */
.hero-video-mobile {
  display: none;
}

/* Mobile responsive video switching */
@media (max-width: 768px) {
  /* Hide desktop video on mobile */
  .hero-video-desktop {
    display: none;
  }
  
  /* Show mobile video on mobile */
  .hero-video-mobile {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

/* Corner transparency overlay */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.4) 0%, transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4) 0%, transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.4) 0%, transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.4) 0%, transparent 30%);
  z-index: 1;
}

/* Additional corner accent overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(32, 153, 215, 0.1) 0%, transparent 20%),
    linear-gradient(225deg, rgba(32, 153, 215, 0.1) 0%, transparent 20%),
    linear-gradient(45deg, rgba(32, 153, 215, 0.1) 0%, transparent 20%),
    linear-gradient(315deg, rgba(32, 153, 215, 0.1) 0%, transparent 20%);
  background-position: top left, top right, bottom left, bottom right;
  background-size: 40% 40%;
  background-repeat: no-repeat;
  z-index: 2;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 15vh 7vw 0;
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sqs-layout {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sqs-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
}

.sqs-row:before,
.sqs-row:after {
  content: "";
  display: table;
}

.sqs-row:after {
  clear: both;
}

[class*="sqs-col"] {
  float: left;
  padding-left: 17px;
  padding-right: 17px;
  box-sizing: border-box;
}

.sqs-col-2 {
  width: 16.6667%;
}

.sqs-col-8 {
  width: 66.6667%;
}

.sqs-col-12 {
  width: 100%;
}

.sqs-block {
  position: relative;
  height: auto;
  padding-top: 17px;
  padding-bottom: 17px;
}

.sqs-block-spacer .sqs-block-content {
  visibility: hidden;
}

.sqs-intrinsic {
  position: relative !important;
}

.style-la3Tz {
  padding-bottom: 0;
}

.style-QoKUk {
  padding-bottom: 0;
}

/* Typography */
.sqsrte-large {
  margin: 1rem 0;
  line-height: var(--body-font-line-height);
  color: var(--paragraphLargeColor);
  text-align: center;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px), screen and (max-width: calc(1295px)) and (orientation: landscape) {
  .sqsrte-large {
    font-size: calc((var(--large-text-size-value) - 1) * 1.2vw + 1rem);
  }
}

@media screen and (min-width: 1296px) {
  .sqsrte-large {
    font-size: calc(var(--large-text-size-value) * 1rem);
  }
}

h1 {
  font-size: 2em;
  margin: 2rem 0;
  font-family: Albra !important;
  font-style: var(--heading-font-font-style);
  font-weight: var(--heading-font-font-weight);
  line-height: 3.3rem !important;
  letter-spacing: var(--heading-font-letter-spacing);
  text-transform: var(--heading-font-text-transform);
  color: var(--headingExtraLargeColor);
  text-align: center;
  white-space: pre-wrap;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px), screen and (max-width: calc(1295px)) and (orientation: landscape) {
  h1 {
    font-size: calc((var(--heading-1-size-value) - 1) * 1.2vw + 1rem);
  }
}

@media screen and (min-width: 1296px) {
  h1 {
    font-size: calc(var(--heading-1-size-value) * 1rem);
  }
}

h3 {
  margin: 2rem 0;
  font-family: Albra-Italic !important;
  font-style: var(--heading-font-font-style);
  font-weight: var(--heading-font-font-weight);
  line-height: 2.5rem !important;
  letter-spacing: var(--heading-font-letter-spacing);
  text-transform: var(--heading-font-text-transform);
  color: var(--headingMediumColor);
  text-align: center;
  white-space: pre-wrap;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px), screen and (max-width: calc(1295px)) and (orientation: landscape) {
  h3 {
    font-size: calc((var(--heading-3-size-value) - 1) * 1.2vw + 1rem);
  }
}

@media screen and (min-width: 1296px) {
  h3 {
    font-size: calc(var(--heading-3-size-value) * 1rem);
  }
}

/* Button Styles */
.sqs-block-button-container {
  text-align: center;
  display: flex;
  justify-content: center;
}

.sqs-button-element--secondary {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  color: var(--secondaryButtonTextColor);
  background: var(--secondaryButtonBackgroundColor);
  border-color: var(--secondaryButtonBackgroundColor);
  transition: 0.1s opacity linear;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  font-family: var(--secondary-button-font-font-family);
  font-style: var(--secondary-button-font-font-style);
  font-weight: var(--secondary-button-font-font-weight);
  line-height: var(--secondary-button-font-line-height);
  letter-spacing: var(--secondary-button-font-letter-spacing);
  text-transform: var(--secondary-button-font-text-transform);
  padding: var(--secondary-button-padding-y) var(--secondary-button-padding-x);
  border-width: var(--secondary-button-stroke);
  border-style: solid;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px), screen and (max-width: calc(1295px)) and (orientation: landscape) {
  .sqs-button-element--secondary {
    font-size: calc((var(--secondary-button-font-font-size-value) - 1) * 1.2vw + 1rem);
  }
}

@media screen and (min-width: 1296px) {
  .sqs-button-element--secondary {
    font-size: calc(var(--secondary-button-font-font-size-value) * 1rem);
  }
}

.sqs-button-element--secondary:hover {
  opacity: 0.8;
}

.sqs-block-button-element--large {
  padding-top: .9em !important;
  padding-bottom: .9em !important;
  padding-left: 3em !important;
  padding-right: 3em !important;
}

/* Hero text color override */
.hero-section .sqsrte-large,
.hero-section h1,
.hero-section h3 {
  color: #2099d7 !important;
}

/* Hero button outlined style */
.hero-section .sqs-button-element--secondary {
  background: transparent !important;
  color: #2099d7 !important;
  border-color: #2099d7 !important;
  border-width: 2px !important;
  border-style: solid !important;
}

/* Reduce hero button height */
.hero-section .sqs-block-button-element--large {
  padding: 0.6em 2em !important;
}

/* Hero Content Container - Two Column Layout */
.hero-content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-text-content {
  flex: 1;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text-wrapper {
  text-align: center;
  width: 100%;
}

.hero-booking-form {
  flex: 0 0 450px;
  max-width: 450px;
  margin-left: auto;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

/* Hero Form Styles */
.hero-form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(17, 83, 123, 0.2);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(191, 226, 248, 0.5);
}

.form-title {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #11537b;
  margin: 0 0 24px 0;
  text-align: center;
}

.hero-booking-form-element {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-form-group label {
  font-weight: 600;
  color: #11537b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
  padding: 12px 14px;
  border: 2px solid #87ccf2;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  color: #11537b;
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
  outline: none;
  border-color: #11537b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(135, 204, 242, 0.3);
  transform: translateY(-1px);
}

.hero-form-group input::placeholder,
.hero-form-group textarea::placeholder {
  color: #87ccf2;
  opacity: 0.8;
}

.hero-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311537b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 35px;
}

.hero-submit-btn {
  background: linear-gradient(135deg, #11537b 0%, #87ccf2 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(17, 83, 123, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.hero-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.hero-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(17, 83, 123, 0.4);
  background: linear-gradient(135deg, #0d4269 0%, #6bb8e8 100%);
}

.hero-submit-btn:hover::before {
  left: 100%;
}

.hero-submit-btn:active {
  transform: translateY(0);
}

/* Button container for hero text */
.hero-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Section after hero styling */
.snipcss-E38QM {
background-color: #48b3e8;
padding: 20px 0 18px 0;
margin-top: 0 !important;
min-height: auto !important; /* override content-wrapper min-height */
}

.content-wrapper.snipcss-E38QM {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2vw;
  padding-right: 2vw;
  min-height: auto !important; /* ensure no full viewport height */
}

.snipcss-E38QM .content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.snipcss-E38QM .sqs-layout {
  width: 100%;
  display: flex;
  justify-content: center;
}

.snipcss-E38QM .sqs-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.snipcss-E38QM .sqs-col-10 {
  width: 83.3333%;
  display: flex;
  justify-content: center;
}

.snipcss-E38QM .sqs-col-8 {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.snipcss-E38QM .sqs-col-2 {
  display: none;
}

/* Typography for the section */
.snipcss-E38QM h3 {
  font-family: "adobe-caslon-pro", serif !important;
  font-size: 1.9rem !important;
  font-weight: 400 !important;
  line-height: 1.25em !important;
  color: #333 !important;
  text-align: center !important;
  margin: 0 0 8px 0 !important;
  font-style: italic !important;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.snipcss-E38QM p {
  font-family: "Work Sans", sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.45em !important;
  color: #666 !important;
  text-align: center !important;
  margin: 0 0 5px 0 !important;
  max-width: 480px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.snipcss-E38QM .sqsrte-large a {
  font-family: "Work Sans", sans-serif !important;
  font-size: 1.1rem !important;
  color: #333 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.snipcss-E38QM .sqsrte-large a:hover {
  color: #2099d7 !important;
  border-bottom-color: #2099d7;
}

.snipcss-E38QM .sqsrte-large {
  text-align: center !important;
  margin: 0 !important;
}

/* Remove spacer blocks styling */
.snipcss-E38QM .sqs-block-spacer {
  display: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .sqs-col-2,
  .sqs-col-8 {
    width: 100%;
  }
  
  .content-wrapper {
    padding: 0 4vw;
    align-items: center;
  }
  
  h1 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
  
  h3 {
    font-size: 1.2rem !important;
    line-height: 1.8rem !important;
  }
  
  .sqsrte-large {
    font-size: 1.1rem;
  }
  
  /* Hero responsive styles */
  .hero-content-container {
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
    position: static;
  }
  
  .hero-text-content {
    max-width: 100%;
    order: 1;
    margin-right: 0;
  }
  
  .hero-booking-form {
    flex: none;
    max-width: 100%;
    width: 100%;
    order: 2;
    position: static;
    transform: none;
    margin-left: 0;
  }
  
  .hero-form-container {
    padding: 25px 20px;
  }
  
  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .hero-booking-form-element {
    gap: 16px;
  }
  
  .hero-form-group input,
  .hero-form-group select,
  .hero-form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .hero-submit-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Mobile styles for the section after hero */
  .snipcss-E38QM {
    padding: 60px 0;
  }
  
  .content-wrapper.snipcss-E38QM {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  
  .snipcss-E38QM h3 {
    font-size: 1.8rem !important;
    line-height: 1.3em !important;
    margin-bottom: 25px !important;
  }
  
  .snipcss-E38QM p {
    font-size: 1rem !important;
    line-height: 1.5em !important;
    margin-bottom: 20px !important;
  }
  
  .snipcss-E38QM .sqsrte-large a {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 480px) {
  .hero-form-container {
    padding: 20px 15px;
  }
  
  .form-title {
    font-size: 18px;
  }
  
  .hero-form-group label {
    font-size: 12px;
  }
  
  .hero-form-group input,
  .hero-form-group select,
  .hero-form-group textarea {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .hero-submit-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Services cards section (under last section) */
.content-wrapper.snipcss-TQPi2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  background: transparent;
}

/* Create a flex container for text and cards side by side */
.snipcss-TQPi2 .content {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  flex-direction: column !important;
  padding: 0 24px;
}

/* Override all grid layouts in this section */
.snipcss-TQPi2 .sqs-layout,
.snipcss-TQPi2 .sqs-grid-12,
.snipcss-TQPi2 .columns-12 {
  display: block !important;
  width: auto !important;
}

/* Text section on the left */
.snipcss-TQPi2 .sqs-layout {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 720px !important;
  padding-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.snipcss-TQPi2 .sqs-col-12 {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.snipcss-TQPi2 h2 {
  font-family: "adobe-caslon-pro", serif !important;
  font-weight: 400;
  font-size: clamp(28px, 2.2vw + 16px, 40px);
  line-height: 1.25;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 8px 0;
}

/* Left-align intro text container */
.snipcss-TQPi2 .sqs-col-12 .sqs-block-html .sqs-html-content {
  max-width: none;
  margin: 0;
  text-align: center !important;
}

.snipcss-TQPi2 .sqsrte-large {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin: 0;
  font-weight: 600;
}

/* Cards container on the right */
.snipcss-TQPi2 .cards-container {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  min-width: 0 !important;
}

/* Override row styling completely */
.snipcss-TQPi2 .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Layout for the three cards */
.snipcss-TQPi2 .row.sqs-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 40px !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Cards row exact layout */
.snipcss-TQPi2 .cards-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 40px !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Force the text section to stay on left */
.snipcss-TQPi2 .sqs-layout .row {
  margin: 0 !important;
}

.snipcss-TQPi2 .sqs-layout .sqs-row {
  margin: 0 !important;
}

.snipcss-TQPi2 .cards-row > [class*="sqs-col"] {
  flex: 0 0 360px !important;
}

/* neutralize Squarespace grid inside this section */
.snipcss-TQPi2 .sqs-layout > .sqs-row { margin-left: 0 !important; margin-right: 0 !important; }
.snipcss-TQPi2 [class*="sqs-col"] { float: none !important; padding-left: 0 !important; padding-right: 0 !important; }
.snipcss-TQPi2 .sqs-col-12, .snipcss-TQPi2 .span-12 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
.snipcss-TQPi2 .span-4 { width: auto !important; max-width: none !important; }

/* Card figure dimensions */
.snipcss-TQPi2 .sqs-block-image .sqs-block-image-figure {
  width: 360px !important;
  height: 300px !important;
  margin: 0 !important;
}

/* Image wrapper as the visible card */
.snipcss-TQPi2 .image-block-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #106194;
  border-radius: 14px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
}

/* Image fill */
.snipcss-TQPi2 .image-block-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Link label under each card */
.snipcss-TQPi2 p.sqsrte-large {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  text-align: center !important;
}

.snipcss-TQPi2 p.sqsrte-large a {
  color: #000000 !important;
  text-decoration: none !important;
  border-bottom: 3px solid #2099d7 !important;
  padding-bottom: 4px !important;
  text-underline-offset: .55em !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  transition: all 0.3s ease !important;
}

.snipcss-TQPi2 p.sqsrte-large a:hover {
  color: #2099d7 !important;
  border-bottom-color: #000000 !important;
}

/* Force three equal cards with fixed dimensions and labels below */
.snipcss-TQPi2 .sqs-col-4 {
  width: auto !important;
  flex: 0 0 360px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.snipcss-TQPi2 .sqs-block-image {
  order: 0;
  width: 100%;
}

.snipcss-TQPi2 .sqs-block-html {
  order: 1;
  width: 100%;
  padding-top: 12px !important;
}

/* Card look */
.snipcss-TQPi2 .image-block-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border: 2px solid #106194 !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 0 rgba(0,0,0,0.06) !important;
}

/* Image fill */
.snipcss-TQPi2 .image-block-wrapper img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .snipcss-TQPi2 .sqs-block-image .sqs-block-image-figure {
    width: 320px;
    height: 260px;
  }
}

@media (max-width: 992px) {
  .snipcss-TQPi2 .sqs-block-image .sqs-block-image-figure {
    width: 300px;
    height: 240px;
  }
}

@media (max-width: 640px) {
  .content-wrapper.snipcss-TQPi2 {
    padding: 50px 16px 40px;
  }

  /* Stack cards vertically on small devices */
  #services-cards .cards-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    overflow: visible !important;
  }

  #services-cards .cards-row > [class*="sqs-col"],
  #services-cards .sqs-col-4 {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .snipcss-TQPi2 .row.sqs-row {
    gap: 24px;
  }
  .snipcss-TQPi2 .sqs-block-image .sqs-block-image-figure {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }
}

/* Expectations section styles */
.expect-section { 
  background: #ffffff; 
  padding: 64px 24px 24px; 
}

.expect-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  text-align: center; 
}

.expect-title {
  margin: 0 0 10px 0;
  font-family: 'adobe-caslon-pro', serif;
  font-weight: 400;
  font-size: clamp(28px, 2.2vw + 16px, 40px);
  line-height: 1.25;
  color: #1a1a1a;
}

.expect-divider { 
  margin: 10px 0 28px; 
}

.expect-divider img { 
  height: auto; 
  width: 800px; 
  max-width: 95%; 
  opacity: 0.9;
  filter: hue-rotate(200deg) saturate(1.2) brightness(1.1);
}

.expect-grid { 
  display: grid; 
  grid-template-columns: repeat(2, minmax(260px, 1fr)); 
  gap: 36px 80px; 
  justify-items: center; 
  align-items: start; 
  padding: 10px 4vw 14px; 
}

.expect-item h4 { 
  margin: 0; 
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  font-weight: 700; 
  font-size: clamp(18px, 1.2vw + 12px, 24px); 
  line-height: 1.2; 
  color: #4c4c4c; 
}

.expect-desc { 
  margin: 6px 0 0; 
  font-size: 15px; 
  line-height: 1.8; 
  color: #6a6a6a; 
}

@media (max-width: 768px) {
  .expect-section { 
    padding: 48px 20px 10px; 
  }
  
  .expect-grid { 
    grid-template-columns: 1fr; 
    gap: 22px; 
    padding-left: 0; 
    padding-right: 0; 
  }
  
  .expect-divider img { 
    width: 500px; 
    max-width: 98%; 
  }
}

/* Contact and Areas section styles */
@font-face {
  font-family: ETmodules;
  font-display: block;
  src: url(https://domesticdivas.org/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot);
  src: url(https://domesticdivas.org/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.eot?#iefix) format("embedded-opentype"),
       url(https://domesticdivas.org/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.woff) format("woff"),
       url(https://domesticdivas.org/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.ttf) format("truetype"),
       url(https://domesticdivas.org/wp-content/themes/Divi/core/admin/fonts/modules/all/modules.svg#ETmodules) format("svg");
  font-weight: 400;
  font-style: normal;
}

.et_had_animation {
  position: relative;
}

.et_pb_section {
  position: relative;
  background-color: #fff;
  background-position: 50%;
  background-size: cover;
}

@media (min-width: 981px) {
  .et_pb_section {
    padding: 4% 0;
  }
}

@media only screen and (min-width: 1350px) {
  .et_pb_section {
    padding: 54px 0;
  }
}

.et_pb_row {
  width: 80%;
  max-width: 1080px;
  margin: auto;
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

@media (min-width: 981px) {
  .et_pb_row {
    padding: 2% 0;
  }
}

@media only screen and (min-width: 1350px) {
  .et_pb_row {
    padding: 27px 0;
  }
}

.et_pb_row:after,
.et_pb_row_inner:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}

.et_pb_css_mix_blend_mode_passthrough {
  mix-blend-mode: unset !important;
}

.et_pb_column {
  float: left;
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 2;
  min-height: 1px;
  background-repeat: no-repeat;
}

@media (min-width: 981px) {
  .et_pb_column {
    margin-right: 5.5%;
  }
  .et_pb_column_1_2 {
    width: 47.25%;
  }
}

.et_pb_row .et_pb_column.et-last-child,
.et_pb_row .et_pb_column:last-child {
  margin-right: 0 !important;
}

.et_pb_with_border {
  position: relative;
  border: 0 solid #333;
}

.et_pb_section_5 {
  border-radius: 6px 6px 6px 6px;
  overflow: hidden;
  border-color: #48b3e8;
  margin-left: auto !important;
  margin-right: 0px !important;
  z-index: 10;
  box-shadow: 20px -20px 0px 0px #efefef;
}

@media only screen and (min-width: 981px) {
  .et_pb_section_5 {
    max-width: 90%;
  }
}

div.et_pb_section.et_pb_section_5 {
  background-color: #bfe2f8 !important;
  background-image: none !important;
}

.et_pb_module {
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.et_pb_text {
  word-wrap: break-word;
}

.et_pb_module.et_pb_text_align_left {
  text-align: left;
}

.et_pb_module.et_pb_text_align_center {
  text-align: center;
}

@media (min-width: 981px) {
  .et_pb_module {
    margin-bottom: 2.75%;
  }
  div.et_pb_row .et_pb_column .et_pb_module:last-child {
    margin-bottom: 0;
  }
  .et_pb_column_1_2 .et_pb_module {
    margin-bottom: 5.82%;
  }
}

.et_pb_text_inner {
  position: relative;
}

.et_pb_text > :last-child {
  padding-bottom: 0;
}

.et_pb_promo {
  padding: 40px 60px;
  text-align: center;
}

@media all {
  .et_pb_column_1_2 .et_pb_promo {
    padding: 40px;
  }
}

.et_pb_cta_0.et_pb_promo {
  background: linear-gradient(135deg, #48b3e8 0%, #2099d7 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(72, 179, 232, 0.3);
  position: relative;
  overflow: hidden;
}

.et_pb_cta_0.et_pb_promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.et_pb_cta_0.et_pb_promo .et_pb_promo_description {
  position: relative;
  z-index: 2;
}

.et_pb_cta_0.et_pb_promo .et_pb_promo_description h4 {
  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}

.et_pb_button {
  font-size: 18px;
  font-weight: 600;
  padding: 14px 32px;
  line-height: 1.4em !important;
  background: #ffffff;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid #ffffff;
  border-radius: 50px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all !important;
  transition-property: all !important;
  position: relative;
  color: #2099d7;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  overflow: hidden;
}

.et_pb_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.et_pb_button:hover::before {
  left: 100%;
}

.et_pb_promo_button {
  display: inline-block;
  color: inherit;
  position: relative;
  z-index: 2;
}

.et_pb_bg_layout_light .et_pb_promo_button {
  color: #2099d7;
}

.et_pb_cta_0.et_pb_promo .et_pb_promo_button.et_pb_button {
  transition: all 0.3s ease;
  color: #2099d7 !important;
  border-width: 2px !important;
  border-color: #ffffff !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  background-color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(0);
}

.et_pb_cta_0.et_pb_promo .et_pb_promo_button.et_pb_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
  background-color: #f8f9fa !important;
  border-color: #f8f9fa !important;
  color: #1a73e8 !important;
}

.et_pb_cta_0.et_pb_promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(72, 179, 232, 0.4);
}

.et_pb_cta_0.et_pb_promo {
  background: linear-gradient(135deg, #48b3e8 0%, #2099d7 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(72, 179, 232, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.et_pb_button:after,
.et_pb_button:before {
  font-size: 32px;
  line-height: 1em;
  content: "\\35";
  opacity: 0;
  position: absolute;
  margin-left: -1em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-transform: none;
  -webkit-font-feature-settings: "kern" off;
  font-feature-settings: "kern" off;
  font-variant: none;
  font-style: normal;
  font-weight: 400;
  text-shadow: none;
}

.et_pb_button:before {
  display: none;
}

.et_pb_button:after,
.et_pb_promo_button:after {
  font-family: ETmodules !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0;
  direction: ltr;
}

body #page-container .et_pb_section .et_pb_cta_0.et_pb_promo .et_pb_promo_button.et_pb_button::after {
  font-size: 1.6em;
}

.et_pb_button:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
  border: 2px solid transparent;
  padding: 0.3em 2em 0.3em 0.7em;
}

.et_pb_promo_button:hover {
  text-decoration: none;
}

.et_pb_bg_layout_light .et_pb_button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

body .et_pb_bg_layout_light .et_pb_button:hover,
body .et_pb_button:hover {
  color: #ffffff !important;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(153, 153, 153, 0) !important;
}

body #page-container .et_pb_section .et_pb_cta_0.et_pb_promo .et_pb_promo_button.et_pb_button:hover {
  border-radius: 0px !important;
}

.et_pb_button:hover:after,
.et_pb_promo_button:hover:after {
  opacity: 1;
  margin-left: 0;
}

/* Contact and Areas section h2 and h4 styles */
.snipcss-JrMRQ h2 {
  color: #1a1a1a;
  padding-bottom: 10px;
  line-height: 1.25;
  font-weight: 400;
  font-size: clamp(24px, 2vw + 14px, 32px);
  font-family: 'adobe-caslon-pro', serif;
  margin: 0 0 16px 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

.snipcss-JrMRQ h4 {
  color: #1a1a1a;
  padding-bottom: 8px;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(20px, 1.5vw + 12px, 28px);
  font-family: 'adobe-caslon-pro', serif;
  margin: 0 0 12px 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

.snipcss-JrMRQ p {
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #707070;
  font-weight: 400;
  padding-bottom: 1em;
  margin: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

.snipcss-JrMRQ p:not(.has-background):last-of-type {
  padding-bottom: 0;
}

.snipcss-JrMRQ strong {
  font-weight: 700;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.snipcss-JrMRQ a {
  color: #bfe2f8;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.snipcss-JrMRQ a:hover {
  text-decoration: none;
}

/* Responsive styles for Contact and Areas section */
@media (max-width: 768px) {
  .et_pb_section_5 {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: none !important;
  }
  
  .et_pb_column_1_2 {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  
  .et_pb_promo {
    padding: 30px 20px !important;
  }
  
  .et_pb_column_1_2 .et_pb_promo {
    padding: 30px 20px !important;
  }
}

/* Floating Quote Icon Styles */
.floating-quote-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 3s ease-in-out infinite;
}

.floating-quote-icon .icon-content {
  background: linear-gradient(135deg, #2099d7 0%, #48b3e8 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(32, 153, 215, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-quote-icon .icon-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-quote-icon:hover .icon-content::before {
  opacity: 1;
}

.floating-quote-icon .icon-content dotlottie-wc {
  margin-bottom: 2px;
}

.floating-quote-icon .icon-content span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-quote-icon:hover {
  transform: translateY(-4px) scale(1.05);
  animation-play-state: paused;
}

.floating-quote-icon:hover .icon-content {
  box-shadow: 0 12px 40px rgba(32, 153, 215, 0.6);
}

.floating-quote-icon:active {
  transform: translateY(-2px) scale(1.02);
}

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

/* Floating Form Modal Styles */
.floating-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-form-modal.active {
  opacity: 1;
  visibility: visible;
}

.floating-form-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.floating-form-modal .modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-form-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.floating-form-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.floating-form-modal .modal-header h2 {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #11537b;
  margin: 0;
  padding-bottom: 20px;
}

.floating-form-modal .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.floating-form-modal .close-btn:hover {
  background: #f5f5f5;
  color: #333;
  transform: rotate(90deg);
}

.floating-form-modal .close-btn svg {
  width: 20px;
  height: 20px;
}

/* Floating Form Styles */
.floating-form {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-form .form-group label {
  font-weight: 600;
  color: #11537b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-form .form-group input,
.floating-form .form-group select,
.floating-form .form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
  color: #333;
}

.floating-form .form-group input:focus,
.floating-form .form-group select:focus,
.floating-form .form-group textarea:focus {
  outline: none;
  border-color: #2099d7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(32, 153, 215, 0.1);
  transform: translateY(-2px);
}

.floating-form .form-group input::placeholder,
.floating-form .form-group textarea::placeholder {
  color: #999;
  opacity: 0.8;
}

.floating-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.floating-form .submit-btn {
  background: linear-gradient(135deg, #2099d7 0%, #48b3e8 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(32, 153, 215, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.floating-form .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.floating-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(32, 153, 215, 0.4);
  background: linear-gradient(135deg, #1a7bb8 0%, #3a9bd9 100%);
}

.floating-form .submit-btn:hover::before {
  left: 100%;
}

.floating-form .submit-btn:active {
  transform: translateY(-1px);
}

/* Mobile Responsive Styles for Floating Elements */
@media (max-width: 768px) {
  .floating-quote-icon {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-quote-icon .icon-content {
    width: 60px;
    height: 60px;
  }
  
  .floating-quote-icon .icon-content dotlottie-wc {
    width: 40px !important;
    height: 40px !important;
  }
  
  .floating-quote-icon .icon-content span {
    font-size: 10px;
  }
  
  .floating-form-modal .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .floating-form-modal .modal-header {
    padding: 20px 20px 0;
    margin-bottom: 20px;
  }
  
  .floating-form-modal .modal-header h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  
  .floating-form {
    padding: 0 20px 20px;
    gap: 16px;
  }
  
  .floating-form .form-group input,
  .floating-form .form-group select,
  .floating-form .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .floating-form .submit-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .floating-form-modal .modal-content {
    width: 98%;
    margin: 10px;
    border-radius: 15px;
  }
  
  .floating-form-modal .modal-header {
    padding: 15px 15px 0;
  }
  
  .floating-form {
    padding: 0 15px 15px;
  }
}/* Updated hero positioning and video controls */
