/* styles.css
   Updated attractive color theme and visual polish for CURE GLAMS
   - Modern, warm-cool palette
   - Strong, readable contrast
   - Updated buttons, badges, accents, gradients, and micro-interactions
   - Keeps existing layout & class names used in HTML/JS
*/

/* ---------------------------
   Theme tokens (editable)
   --------------------------- */
:root{
  /* New palette:
     - Primary violet (luxury)
     - Coral accent (warmth)
     - Gold warm highlight
     - Aqua cool accent for contrast
     - Soft ivory background
  */
  --bg-1: #e5d8d6;                  /* soft ivory */
  --bg-2: #e5d8d6;                  /* lavender-tinge */
  --surface: #ffffff;
  --text: #221e23;
  --muted: #0f0009;

  --primary: #7c3aed;               /* deep violet (brand) */
  --primary-700: #5b21b6;
  --accent: #ff6b6b;                /* coral */
  --warm: #ffd166;                  /* gold highlight */
  --cool: #2dd4bf;                  /* aqua */
  --lavender: #b7a3e3;

  --glass: rgba(255,255,255,0.75);
  --glass-2: rgba(255,255,255,0.88);
  --shadow-1: 0 8px 28px rgba(34,28,40,0.06);
  --shadow-2: 0 30px 90px rgba(34,28,40,0.12);
  --radius: 16px;
  --container: 1200px;
  --ease: cubic-bezier(.16,.84,.36,1);
  --glass-border: rgba(34,28,40,0.04);
  --focus-ring: rgba(124,58,237,0.18);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  :root{ --motion-scale: 0; }
}

/* ---------------------------
   Base reset & typography
   --------------------------- */
*{box-sizing:border-box}
html,body{
  height:100%;
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -moz-font-feature-settings: "liga" 1;
  font-feature-settings: "liga" 1;
}

/* Container */
.container{
  width:92%;
  max-width:var(--container);
  margin:0 auto;
  position:relative;
  overflow-x:hidden;
  box-sizing:border-box;
}

/* ---------------------------
   Header
   --------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background: #fff;
  backdrop-filter: blur(8px) saturate(120%);
  border-bottom: 1px solid var(--glass-border);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px 0;
  position:relative;
}
.logo-mark-img{
  flex-shrink:0;
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--primary-700);
  text-decoration:none;
  font-weight:800;
  font-size:1.15rem;
  letter-spacing:0.4px;

}
.logo-mark-img{
  width:70px;
  height:70px;
  flex-shrink:0;
}
.logo-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:36px;
  border-radius:8px;
  background: linear-gradient(90deg, var(--primary), var(--lavender));
  color:white;
  font-weight:900;
  font-family:"Playfair Display", serif;
  box-shadow: 0 6px 20px rgba(124,58,237,0.12);
}

/* Nav */
.nav{
  display:flex;
  gap: 20px;
  align-items:center;
  margin-left:auto;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
  transition: all .16s var(--ease);
  font-weight:600;
  white-space:nowrap;
}
.nav a:hover, .nav a:focus{
  color:var(--primary);
  background: linear-gradient(90deg, rgba(124,58,237,0.06), rgba(183,163,227,0.03));
  transform: translateY(-2px);
  outline:none;
}

/* Header actions */
.header-actions{ 
  display:flex; 
  gap:10px; 
  align-items:center;
  flex-shrink:0;
}

/* Nav toggle button */
.nav-toggle{
  display:none;
  background:transparent;
  border:2px solid var(--primary);
  color:var(--primary-700);
  padding:8px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  font-size:1.2rem;
  line-height:1;
  transition: all .16s var(--ease);
}
.nav-toggle:hover{
  background:var(--primary);
  color:#fff;
}
.nav-toggle[aria-expanded="true"]{
  background:var(--primary);
  color:#fff;
}

/* ---------------------------
   Buttons
   --------------------------- */
.btn-primary{
  background: linear-gradient(180deg, var(--primary), var(--primary-700));
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:12px;
  cursor:pointer;
  box-shadow: var(--shadow-1);
  font-weight:700;
  transition: transform .14s var(--ease), box-shadow .14s var(--ease);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: var(--shadow-2); }
.btn-primary:active{ transform: translateY(-1px) scale(0.998); }
.btn-secondary{
  background:transparent;
  border:2px solid var(--primary);
  color:var(--primary-700);
  padding:8px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
}
.btn-outline{
  background:transparent;
  border:1px solid rgba(34,28,40,0.06);
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}

/* Shimmer utility */
.shimmer{
   /*background-image: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.06) 100%);*/
  background-size: 200% 100%;
  animation: shimmer 2.6s linear infinite;
}
@keyframes shimmer{
  0%{ background-position: -150% 0; } 100%{ background-position: 150% 0; }
}

/* ---------------------------
   Hero
   --------------------------- */
.hero{ 
  padding:64px 0; 
  position:relative; 
  overflow:hidden;
  width:100%;
  max-width:100vw;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap:36px;
  align-items:center;
}
.hero-text h1{
  margin:0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight:700;
  font-size:2.6rem;
  color:var(--primary-700);
  line-height:1.02;
}
.lead{ color:var(--muted); font-size:1.02rem; margin-bottom:18px; }
.hero-actions{ display:flex; gap:12px; align-items:center; }
.hero-features{ 
  list-style:none; 
  padding:0; 
  margin:18px 0 0; 
  display:flex; 
  flex-wrap:wrap;
  gap:14px; 
  color:var(--muted); 
  font-weight:600; 
}

/* Decorative shapes */
.hero::before{
  content:"";
  position:absolute;
  left:-6%;
  top:6%;
  width:480px;
  max-width:100vw;
  height:480px;
  background:
    radial-gradient(circle at 20% 30%, rgba(124,58,237,0.10), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255,107,107,0.06), transparent 30%);
  filter: blur(36px);
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}
.hero-image img{ 
  width:100%; 
  max-width:100%;
  height:auto;
  border-radius:18px; 
  box-shadow: var(--shadow-2); 
  display:block;
}

/* Main container */
main{
  width:100%;
  max-width:100vw;
  overflow-x:hidden;
  position:relative;
}

/* ---------------------------
   Sections
   --------------------------- */
.section{ padding:40px 0 0; position:relative; z-index:2; overflow:hidden; }
#services.section{
  padding-bottom:0;
  margin-bottom:0;
  overflow:hidden;
}
.section-title{ font-size:1.2rem; margin:0 0 8px; color:var(--primary-700); font-weight:800; }
.section-sub{ color:var(--muted); margin:0 0 18px; }

/* ---------------------------
   Services grid + cards (3D)
   --------------------------- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  perspective:1200px;
  perspective-origin:50% 30%;
  transform-style:preserve-3d;
  overflow:hidden;
  width:100%;
  max-width:100%;
  margin-bottom:0;
  padding-bottom:0;
}

/* Card shell */
.service-card{
  background: linear-gradient(180deg, var(--surface), rgba(255,255,255,0.98));
  border-radius: var(--radius);
  overflow: visible;
  display:flex;
  flex-direction:column;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
  border:1px solid var(--glass-border);
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: var(--shadow-1);
  position:relative;
  isolation:isolate;
}
.card-inner{ overflow:hidden; border-radius: calc(var(--radius) - 2px); position:relative; }

/* hover tilt fallback */
.service-card:hover{
  transform: rotateX(6deg) rotateY(-10deg) translateY(-14px) translateZ(14px);
  box-shadow: var(--shadow-2);
}

/* layered depth */
.service-card::before, .service-card::after{
  content:"";
  position:absolute;
  left:8px; right:8px; top:10px; bottom:10px;
  border-radius: calc(var(--radius) - 2px);
  z-index:-1;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  pointer-events:none;
}
.service-card::before{
  background: linear-gradient(180deg, rgba(124,58,237,0.03), rgba(255,107,107,0.02));
  transform: translateZ(-20px) scale(0.99);
  filter: blur(14px);
  opacity:0.95;
}
.service-card::after{
  background: radial-gradient(60% 40% at 10% 10%, rgba(183,163,227,0.04), transparent 30%);
  transform: translateZ(-36px) scale(0.98);
  filter: blur(18px);
  opacity:0.9;
}

/* accent strip */
.accent-strip{
  height:6px; width:100%;
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  background: linear-gradient(90deg, var(--primary), var(--lavender), var(--cool));
  transform: translateZ(70px);
}

/* image */
.service-card img{
  width:100%;
  max-width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
  display:block;
  transform: translateZ(40px) scale(1.02);
  transition: transform .6s var(--ease), filter .45s var(--ease);
  backface-visibility: hidden;
  will-change: transform;
  height:auto;
}
.service-card:hover img{ transform: translateZ(58px) scale(1.06); filter: saturate(1.06) contrast(1.02); }

/* card content */
.card-body{ padding:16px; display:flex; flex-direction:column; gap:10px; transform: translateZ(20px); }
.card-body h3{ margin:0; font-size:1.05rem; color:var(--primary-700); }
.card-body p{ margin:0; color:var(--muted); font-size:0.95rem; }

/* ========================
   Price box & footer fixes
   ======================== */
.card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:auto;
  gap:12px;
  position:relative;    /* container for price badge */
  padding-right:120px;  /* leave room for badge */
  min-height:48px;
}

/* Price badge (moved to footer to avoid overlap) */
.price-badge{
  position:absolute;
  right:12px;
  bottom:12px;
  background: linear-gradient(90deg, rgba(255,107,107,0.12), rgba(45,212,191,0.06));
  color:var(--primary-700);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  border:1px solid rgba(124,58,237,0.06);
  z-index:3;
  box-shadow: 0 6px 18px rgba(124,58,237,0.06);
}

/* responsive badge adjustments */
@media (max-width:480px){
  .card-footer{ padding-right:86px; min-height:44px; }
  .price-badge{ right:10px; bottom:10px; padding:6px 10px; font-size:0.92rem; }
}
@media (max-width:340px){
  .card-footer{ padding-right:12px; }
  .price-badge{ position:static; margin-left:8px; order:2; transform:none; }
}

/* shine overlay */
.shine{
  position:absolute;
  left:-50%;
  top:-50%;
  width:200%;
  height:200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.06) 100%);
  transform: rotate(25deg) translateZ(80px) scale(1.02);
  mix-blend-mode: overlay;
  opacity:0;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events:none;
  z-index:2;
}
.service-card:hover .shine{ opacity:1; transform: rotate(25deg) translateZ(90px) scale(1.05); }

/* ---------------------------
   About & Contact
   --------------------------- */
.about-grid, .contact-grid{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:24px;
  align-items:center;
}
.about-image{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:12px;
  object-fit:cover;
  box-shadow: var(--shadow-1);
}
.contact-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.6));
  border-radius:14px;
  padding:18px;
  border:1px solid rgba(0,0,0,0.04);
}

/* Forms */
label{ display:block; margin-bottom:12px; color:var(--muted); font-size:0.95rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], textarea{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.06);
  background:transparent;
  font-size:0.95rem;
  color:var(--text);
  outline:none;
  transition: box-shadow .12s var(--ease), border-color .12s var(--ease);
}
input:focus, textarea:focus{
  box-shadow: 0 10px 30px rgba(124,58,237,0.08);
  border-color:var(--primary-700);
}

/* Modal styling */
.modal{ position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background: rgba(16,12,12,0.32); z-index:200; padding:20px; }
.modal[aria-hidden="true"]{ display:none; }
.modal-content{
  background: linear-gradient(180deg, var(--surface), var(--glass-2));
  width:100%; max-width:680px; border-radius:16px; padding:22px; box-shadow: var(--shadow-2);
  position:relative; transform-style:preserve-3d;
}
.modal-close{ position:absolute; right:14px; top:12px; border:none; background:transparent; font-size:1.1rem; cursor:pointer; }

/* Footer */
.site-footer{ padding:24px 0; border-top:1px solid rgba(0,0,0,0.04); background:linear-gradient(0deg, rgba(255,255,255,0.5), transparent); }
.site-footer p{ margin:0; color:var(--muted); text-align:center; }

/* Bookings page extras */
.bookings-controls{ display:flex; gap:12px; margin:12px 0 18px; }
.bookings-list .card{ padding:14px; border-radius:12px; margin-bottom:12px; display:flex; justify-content:space-between; gap:12px; align-items:flex-start; }
.booking-meta{ flex:1; }
.booking-actions{ display:flex; gap:8px; align-items:center; }

/* Utilities and responsive */
.hidden{ display:none !important; }
.form-result{ margin-top:12px; color:var(--primary-700); font-weight:700; }
.price-note{ color:var(--muted); font-weight:700; }
.duration-note{ color:var(--muted); font-weight:600; margin-left:8px; }

/* Responsive layout adjustments */
/* Medium laptops and tablets */
@media (max-width:1400px){
  .about-grid, .contact-grid{
    grid-template-columns: 1fr 380px;
    gap:20px;
  }
}
@media (max-width:1100px){
  .container{
    width:100%;
    padding:0 3%;
    overflow-x:hidden;
    box-sizing:border-box;
  }
  .hero{
    padding:40px 0;
  }
  .hero-grid{ 
    grid-template-columns: 1fr; 
    gap:16px; 
  }
  .section{
    padding:30px 0 0;
    overflow:hidden;
  }
  #services.section{
    padding-bottom:0;
    margin-bottom:0;
    overflow:hidden;
  }
  .about-grid, .contact-grid{ 
    grid-template-columns: 1fr; 
    gap:16px;
  }
  .about-image{
    max-width:100%;
    width:100%;
  }
  /* Hide decorative element on mobile to prevent overflow */
  .hero::before{
    display:none;
  }
  .hero-features{
    flex-direction:column;
    gap:6px;
    margin-top:12px;
  }
  .lead{
    margin-bottom:14px;
  }
  .services-grid{
    gap:16px;
  }
  
  /* Hide desktop nav, show mobile menu */
  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    max-width:85vw;
    height:100vh;
    background:linear-gradient(180deg, var(--surface), var(--glass-2));
    backdrop-filter:blur(12px);
    flex-direction:column;
    align-items:flex-start;
    padding:80px 24px 24px;
    gap:8px;
    box-shadow: -4px 0 24px rgba(34,28,40,0.12);
    transition:right .3s var(--ease), visibility .3s var(--ease);
    z-index:100;
    overflow-y:auto;
    overflow-x:hidden;
    margin-left:0 !important;
    /* Ensure menu starts closed */
    visibility:hidden;
    /* Hide scrollbar when not needed */
    scrollbar-width:thin;
    scrollbar-color:rgba(124,58,237,0.3) transparent;
  }
  .nav::-webkit-scrollbar{
    width:6px;
  }
  .nav::-webkit-scrollbar-track{
    background:transparent;
  }
  .nav::-webkit-scrollbar-thumb{
    background:rgba(124,58,237,0.3);
    border-radius:3px;
  }
  .nav::-webkit-scrollbar-thumb:hover{
    background:rgba(124,58,237,0.5);
  }
  .nav.nav-open{
    right:0;
    visibility:visible;
  }
  .nav a{
    width:100%;
    padding:14px 16px;
    font-size:1.05rem;
    display:block;
    border-radius:8px;
  }
  .nav-toggle{ 
    display:block !important; 
    z-index:101;
    position:relative;
  }
  
  /* On mobile, nav is hidden and actions go to right */
  .header-actions{
    margin-left:auto;
  }
  
  /* Overlay for mobile menu */
  .nav-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(16,12,12,0.4);
    z-index:99;
    backdrop-filter:blur(2px);
    opacity:0;
    transition:opacity .3s var(--ease);
  }
  .nav-overlay.active{
    display:block;
    opacity:1;
  }
}
@media (max-width:800px){
  .container{
    width:100%;
    padding:0 16px;
    box-sizing:border-box;
    overflow-x:hidden;
  }
  .hero{
    padding:32px 0;
  }
  .hero-grid{
    gap:14px;
  }
  .section{
    padding:24px 0 0;
    overflow:hidden;
  }
  #services.section{
    padding-bottom:0;
    margin-bottom:0;
    overflow:hidden;
  }
  .section-title{
    margin:0 0 6px;
  }
  .section-sub{
    margin:0 0 14px;
  }
  .services-grid{ 
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); 
    gap:14px;
  }
  .hero-text h1{ font-size:1.8rem; }
  .header-actions .btn-secondary{
    display:none;
  }
  .nav{
    width:260px;
    padding:70px 20px 20px;
  }
  .about-grid, .contact-grid{
    gap:14px;
  }
  .about-image{
    border-radius:10px;
  }
  .hero-actions{
    flex-wrap:wrap;
    gap:8px;
  }
  .card-body{
    padding:12px;
    gap:8px;
  }
  .card-footer{
    gap:10px;
  }
  .booking-section{
    padding:30px;
    margin:30px auto;
  }
  .booking-form{
    padding:20px;
  }
  .booking-row{
    grid-template-columns: 1fr;
  }
  .booking-form-footer{
    flex-direction:column;
    align-items:stretch;
  }
  .booking-info{
    justify-content:center;
  }
}
@media (max-width:480px){
.services-checkbox-group{
    max-height: 700px !important;
}
.booking-row{
    gap: 5px !important;
}
  .container{
    width:100%;
    padding:0 12px;
    box-sizing:border-box;
    overflow-x:hidden;
  }
  .hero{
    padding:24px 0;
  }
  .hero-grid{
    gap:12px;
  }
  .hero-text h1{ 
    font-size:1.4rem; 
    margin:0 0 8px;
  }
  .lead{
    font-size:0.95rem;
    margin-bottom:12px;
  }
  .header-inner{ 
    gap:8px; 
    padding:8px 0;
  }
  .logo-mark-img{
    width:50px;
    height:50px;
  }
  .nav{
    width:240px;
    max-width:90vw;
    padding:60px 16px 16px;
  }
  .nav a{
    padding:10px 12px;
    font-size:1rem;
  }
  .about-grid, .contact-grid{
    gap:12px;
  }
  .about-image{
    border-radius:8px;
  }
  .about-section ul{
    padding-left:18px;
    margin:8px 0;
  }
  .about-section p{
    margin-bottom:10px;
    font-size:0.9rem;
  }
  .hero-actions{
    flex-direction:column;
    width:100%;
    gap:8px;
  }
  .hero-actions a,
  .hero-actions button{
    width:100%;
    text-align:center;
    padding:10px 14px;
  }
  .hero-features{
    margin-top:10px;
    gap:4px;
    font-size:0.9rem;
  }
  .section{
    padding:20px 0 0;
    overflow:hidden;
  }
  #services.section{
    padding-bottom:0;
    margin-bottom:0;
    overflow:hidden;
  }
  .services-grid{
    margin-bottom:0;
    padding-bottom:0;
  }
  .section-title{
    font-size:1.1rem;
    margin:0 0 4px;
  }
  .section-sub{
    font-size:0.9rem;
    margin:0 0 12px;
  }
  .services-grid{
    gap:12px;
  }
  .card-body{
    padding:10px;
    gap:6px;
  }
  .card-body h3{
    font-size:1rem;
  }
  .card-body p{
    font-size:0.85rem;
  }
  .card-footer{
    gap:8px;
    min-height:40px;
  }
  .price-badge{
    padding:6px 10px;
    font-size:0.85rem;
  }
    .booking-section{
    padding:24px;
    margin:24px auto;
    border-radius:16px;
  }
  .booking-form{
    padding:16px;
  }
}

/* Accessibility focus */
a:focus, button:focus, input:focus, textarea:focus{
  outline: 4px solid var(--focus-ring);
  outline-offset:4px;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .service-card, .service-card::before, .service-card::after, .service-card img, .service-card .shine {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
  .service-card:hover{ transform:none; box-shadow:var(--shadow-1); }
}

/* Services checkbox section */
.services-label{
  margin-bottom:12px;
}
.services-checkbox-group{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:10px;
  margin-top:8px;
  padding:12px;
  background:rgba(124,58,237,0.02);
  border-radius:10px;
  border:1px solid rgba(124,58,237,0.08);
  max-height:350px;
}
.checkbox-label{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
  transition: background .12s var(--ease);
  margin-bottom:0;
  font-size:0.9rem;
}
.checkbox-label:hover{
  background:rgba(124,58,237,0.05);
}
.checkbox-label input[type="checkbox"]{
  width:18px;
  height:18px;
  cursor:pointer;
  accent-color:var(--primary);
  flex-shrink:0;
  margin:0;
}
.checkbox-label span{
  color:var(--text);
  user-select:none;
}
.checkbox-label input[type="checkbox"]:checked + span{
  color:var(--primary-700);
  font-weight:600;
}

/* Booking Section */
.booking-section{
  padding:40px;
  background: #ffffff8a;
  border-radius:20px;
  margin:40px auto;
  max-width:var(--container);
}
.booking-form{
  max-width:680px;
  margin:0 auto;
  padding:28px;
  border-radius:16px;
  box-shadow: var(--shadow-1);
  border:1px solid var(--glass-border);
}
.booking-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.booking-form-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-top:20px;
  flex-wrap:wrap;
}
.booking-info{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.sent-message{
  padding:12px 16px;
  background:rgba(45,212,191,0.1);
  border:1px solid rgba(45,212,191,0.3);
  border-radius:10px;
  color:var(--primary-700);
  font-weight:600;
  margin-bottom:12px;
}
