

/* ===============================
   LIGHT TOAST (top-right)
================================ */
.toast-host{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast{
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: #111;
   font-family: 'Libre Caslon Text', Georgia, serif;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-in{
  opacity: 1;
  transform: translateY(0);
}

.toast .toast-title{
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 4px;
}

.toast .toast-msg{
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.35;
}

.toast.toast-success{
  border-color: rgba(16, 185, 129, 0.35);
}
.toast.toast-error{
  border-color: rgba(239, 68, 68, 0.35);
}
.toast.toast-loading{
  border-color: rgba(59, 130, 246, 0.35);
}

/* ===============================
   BOOKING FORM LOADING STATE
================================ */
.booking-form .submit-btn[disabled]{
  opacity: 0.7;
  cursor: not-allowed;
}

.booking-form .submit-btn .btn-spinner{
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  border-top-color: rgba(255,255,255,1);
  margin-right: 8px;
  vertical-align: -2px;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }


#slide-7 {
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #3b0b0b 0%, #1a0505 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Main layout */
#slide-7 .slide-content {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  /* padding: 0 5vw; */
  gap: 4vw;
}

/* ===============================
   LEFT IMAGE
================================ */

#slide-7 .slide-image {
  height: 100%;
  display: flex;
  width: 100%;
  /* align-items: center; */
}

#slide-7 .slide-image img {
  height: 100%;
  width: 100%;
   max-width: 700px;
  /* width: auto; */
  align-items: flex-start;
  /* justify-content: flex-start; */
    position: static;
    /* position: fixed; */
  object-fit: auto;
}


/* ===============================
   CENTER TEXT
================================ */

#slide-7 .slide-center {
  color: #fff;
  width: 100%;
  max-width: 500px;
  /* display: flex; */
  /* align-items: flex-end; */
}

#slide-7 .tagline {
  font-style: italic;
  font-size: 1.5rem;
  text-decoration: underline;
  margin-bottom: 1.2rem;
  display: flex;
    font-family: 'Libre Caslon Text', Georgia, serif;
  justify-content: flex-end;
  /* align-items: flex-end; */
}

#slide-7 .main-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
   font-family: 'Libre Caslon Text', Georgia, serif;
  text-decoration: underline;
  font-style: italic;
  display: flex;
  justify-content: flex-end;
  /* align-items: flex-end; */
}

#slide-7 .booking-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

#slide-7 .booking-option {
  color: #fff;
  text-decoration: underline;
  font-style: italic;
  font-size: 1.3rem;
  width: fit-content;
 transition: text-shadow 0.3s ease, transform 0.3s ease;
 font-family: 'Libre Caslon Text', Georgia, serif;
  cursor: pointer; 
}


.booking-option:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(32, 31, 32, 0.7)
}

/* ===============================
   FORM CARD
================================ */

/* #slide-7 .slide-form {
  display: flex;
  justify-content: center;
  margin-right: 20rem;
} */

#slide-7 .slide-form {
  display: flex;
  flex-direction: column;
  /* gap: 0; */
  /* justify-content: center; */

}


#slide-7 .booking-form {
  width: 100%;
  max-width: 410px;
  box-sizing: border-box !important;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  height: 100%;
  /* max-height: 400px; */
}


#slide-7 .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

#slide-7 label {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}


#slide-7 input,
#slide-7 select {
  width: 100%;
  box-sizing: border-box !important;  
  height: 44px;
  border-radius: 10px;
  border: none;
  padding: 0 12px;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

#slide-7 input::placeholder {
  color: rgba(255,255,255,0.6);
}

#slide-7 .submit-btn {
  margin-top: 1.2rem;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: #b11212;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}


/* ===============================
   SLIDE 7 – TABLET
   =============================== */
@media (max-width: 1024px) {

  #slide-7 .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 30px;
    height: 100vh;
  }

  /* REMOVE IMAGE */
  #slide-7 .slide-image {
    display: none;
  }

  /* CENTER CONTENT */
  #slide-7 .slide-center {
    text-align: center;
    max-width: 600px;
  }

  #slide-7 .booking-options {
    justify-content: center;
  }

  /* FORM */
  #slide-7 .slide-form {
    width: 100%;
    max-width: 520px;
  }
}
/* ===============================
   SLIDE 7 – TABLET
   =============================== */
@media (max-width: 1024px) {

  #slide-7 .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 30px;
    height: 100vh;
  }

  /* REMOVE IMAGE */
  #slide-7 .slide-image {
    display: none;
  }

  /* CENTER CONTENT */
  #slide-7 .slide-center {
    text-align: center;
    max-width: 600px;
  }

  #slide-7 .booking-options {
    justify-content: center;
  }

  /* FORM */
  #slide-7 .slide-form {
    width: 100%;
    max-width: 520px;
  }
}


/* DESKTOP ONLY OFFSET */
@media (min-width: 1200px) {
  #slide-7 .slide-form {
    margin-right: 20rem;
    width: 100%;
    max-width: 420px;
    /* top: 30%; */
    left: 10%;
    transform: translate(-10%);
  }
  #slide-7 .slide-center{
    
    left: 10%;
    transform: translate(-10%, )
  }
}

/* ===============================
   BOOKING TABS
=============================== */
.booking-tabs {
  display: flex;
  gap: 3px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.1);
  padding: 4px;
  border-radius: 22px;
}

.tab-btn {
  flex: 1;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  gap: 8px;
  padding: 10px 15px;
  max-width: 300px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
}

.tab-btn.active {
  background: #fff;
  color: #9e1010;
}

.tab-btn svg {
  opacity: 0.7;
}

.tab-btn.active svg {
  opacity: 1;
}

/* ===============================
   TAB CONTENT
=============================== */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   MEETING OPTIONS
=============================== */
.meeting-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meeting-options h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.meeting-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.meeting-card:hover a {
    text-decoration: none;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateX(4px);
}

.meeting-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meeting-info {
  flex: 1;
}

.meeting-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
}

.meeting-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.meeting-arrow {
  font-size: 24px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.meeting-card:hover .meeting-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ===============================
   MOBILE RESPONSIVE
=============================== */

@media (max-width: 768px) {

  #slide-7 {
    height: auto;
    min-height: 100vh;
    padding: 60px 0 80px;
    align-items: flex-start;
  }

  #slide-7 .slide-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
    height: auto;
  }

  /* HIDE IMAGE */
  #slide-7 .slide-image {
    display: none;
  }

  /* CENTER CONTENT */
  #slide-7 .slide-center {
    text-align: center;
    max-width: 100%;
  }
  
  input[type="date"] {
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    min-height: 44px;
    padding: 10px 14px;
  }

  #slide-7 .tagline {
    font-size: 1.2rem;
    justify-content: center;
    margin-bottom: 1rem;
  }

  #slide-7 .main-heading {
    font-size: 2.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  #slide-7 .booking-options {
    align-items: center;
    gap: 0.8rem;
  }

  #slide-7 .booking-option {
    font-size: 1.1rem;
  }

  /* FORM */
  #slide-7 .slide-form {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }

  #slide-7 .booking-form {
    max-width: 100%;
    padding: 1.5rem;
  }

  /* TAB BUTTONS */
  .booking-tabs {
    max-width: 100%;
    flex-direction: row;
    gap: 4px;
  }
  
  .tab-btn {
    padding: 12px 10px;
    font-size: 12px;
    gap: 4px;
  }

  .tab-btn svg {
    width: 14px;
    height: 14px;
  }
  
  /* MEETING CARDS */
  .meeting-card {
    padding: 16px;
  }
  
  .meeting-icon {
    width: 48px;
    height: 48px;
  }

  .meeting-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .meeting-info h4 {
    font-size: 15px;
  }
  
  .meeting-info p {
    font-size: 13px;
  }

  /* FORM INPUTS */
  #slide-7 input,
  #slide-7 select {
    height: 42px;
    font-size: 14px;
  }

  #slide-7 .submit-btn {
    height: 46px;
    font-size: 0.95rem;
  }
}


@media (min-width: 1600px) {
  #slide-7 .slide-content {
    grid-template-columns: 1.5fr 1.2fr 1.5fr;
  }
}


/* =========================================================
   27-INCH / 2K SCREENS (2560px+)
========================================================= */
@media (min-width: 2560px) {

  #slide-7 .slide-content {
    grid-template-columns: 1.5fr 1.2fr 1.5fr;
    gap: 6vw;
  }

  #slide-7 .tagline {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
  }
  #slide-7 .slide-image{
      margin-left: -8rem !important;
  }

  #slide-7 .main-heading {
    font-size: 6rem;
    margin-bottom: 2.5rem;
  }

  #slide-7 .booking-option {
    font-size: 1.8rem;
  }

  #slide-7 .booking-form {
    max-width: 580px;
    padding: 3rem;
    border-radius: 24px;
  }

  #slide-7 label {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  #slide-7 input,
  #slide-7 select {
    height: 60px;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 1rem;
  }

  #slide-7 .submit-btn {
    height: 66px;
    border-radius: 16px;
    font-size: 1.3rem;
    margin-top: 1.8rem;
  }

  #slide-7 .form-group {
    margin-bottom: 1.4rem;
  }

  .booking-tabs {
    max-width: 580px;
    padding: 6px;
    border-radius: 30px;
    margin-bottom: 32px;
  }

  .tab-btn {
    padding: 14px 20px;
    font-size: 18px;
    border-radius: 12px;
  }

  .meeting-card {
    padding: 28px;
    border-radius: 18px;
    gap: 22px;
  }

  .meeting-icon {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }

  .meeting-info h4 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .meeting-info p {
    font-size: 18px;
  }

  .meeting-arrow {
    font-size: 32px;
  }
}

/* =========================================================
   4K SCREENS (3840px+)
========================================================= */
@media (min-width: 3840px) {

  #slide-7 .slide-content {
    gap: 8vw;
  }

  #slide-7 .tagline {
    font-size: 3rem;
    margin-bottom: 2.4rem;
  }

  #slide-7 .main-heading {
    font-size: 9rem;
    margin-bottom: 3.5rem;
  }
  
  #slide-7 .slide-image{
      margin-left: -8rem !important;
  }

  #slide-7 .booking-option {
    font-size: 2.6rem;
  }

  #slide-7 .booking-form {
    max-width: 820px;
    padding: 4rem;
    border-radius: 32px;
  }

  #slide-7 label {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  #slide-7 input,
  #slide-7 select {
    height: 84px;
    border-radius: 18px;
    padding: 0 24px;
    font-size: 1.4rem;
  }

  #slide-7 .submit-btn {
    height: 96px;
    border-radius: 22px;
    font-size: 1.8rem;
    margin-top: 2.4rem;
  }

  #slide-7 .form-group {
    margin-bottom: 2rem;
  }

  .booking-tabs {
    max-width: 820px;
    padding: 8px;
    border-radius: 40px;
    margin-bottom: 48px;
  }

  .tab-btn {
    padding: 20px 28px;
    font-size: 26px;
    border-radius: 18px;
  }

  .meeting-card {
    padding: 40px;
    border-radius: 26px;
    gap: 30px;
  }

  .meeting-icon {
    width: 110px;
    height: 110px;
    border-radius: 22px;
  }

  .meeting-info h4 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .meeting-info p {
    font-size: 26px;
  }

  .meeting-arrow {
    font-size: 46px;
  }
}