/**
 * Blocksy Child
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif', serif;
  letter-spacing: -0.3px;
}

/* SPECIFIC CONTROL */
h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

/* BODY TEXT */
p, span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}



.sd-box {
  max-width: 1200px;
  margin: auto;
}
/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 130px);
  overflow: hidden;
  color: #fff;
  
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* FALLBACK IMAGE */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://graciasliving.com/wp-content/uploads/2026/03/hero-banner-img-1.png") center/cover no-repeat;
  z-index: -1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.hero-left {
  max-width: 650px;
}

.hero-left h1 {
    font-family: "Noto Serif", serif;
    color: #fff;
    font-weight: 500;
    font-style: Medium;
    font-size: 59px;
    leading-trim: NONE;
    line-height: 72px;
    letter-spacing: -1.44px;
    vertical-align: middle;
    }

/* RIGHT */
.hero-right {
  max-width: 500px;
}

.hero-right p {
  font-size: 16px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter';
}

/* BUTTONS */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #00a896;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary:hover {
	background: #fff;
	color: #000;
}

.btn-outline {
  background: #fff;
  color: #000;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
}
.play-btn {
  width: 20px;
  margin-left: 10px;
  margin-top: 5px;
}
a.btn-outline {
  display: flex;
  align-items: center;
}
/* SOCIAL PROOF */
.social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}


.proof-text {
  font-size: 16px;
  font-weight: 300;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 80vh;
  }

  .hero {
    background: url("/mnt/data/data_bg.jpg") center/cover no-repeat;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-left h1 {
    font-size: 32px;
  }
}

/* SECTION WRAPPER */
.stats-section {
  padding: 60px 20px;
  background: #ffffff;
}

/* INNER BOX */
.stats-box {
  max-width: 1200px;
  margin: auto;
  background: #199b9712;
  border-radius: 20px;
  padding: 40px 20px;
}

/* GRID */
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ITEM */
.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 180px;
}

/* DIVIDER */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
}

/* NUMBER */
.stat-number {
  font-family: "Cardo", serif;
  font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

/* LABEL */
.stat-label {
  font-family: "Cardo", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .stats-grid {
    gap: 30px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .stats-grid {
    flex-direction: column;
    gap: 25px;
  }
}

/* SECTION */

.moments {
  padding: 80px 20px;
  background: #f6f6f6;
  margin: auto;
}
.
      /* HEADER */
      .moments-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.moments-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 50px;
	align-items: center;
}

.moments-header h2 {
  font-family: "Noto Serif", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #111;
}

.moments-header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

/* CARD */
.moment-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

/* VIDEO */
.moment-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(133, 133, 133, 0) 80%,
    rgba(0, 0, 0, 0.37) 100%
  );
}

/* CONTENT */
.content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
}

/* TAG */
.tag {
  display: inline-block;
  background: #21686C;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* TITLE */
.content h3 {
  font-family: "Noto Serif", serif;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .moments-header {
    grid-template-columns: 1fr;
  }

  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.day-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.day-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.day-header h2 {
  font-family: "Noto Serif", serif;
  font-size: 44px;
  line-height: 1.2;
  color: #111;
}

.day-header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* GRID */
.day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ITEM */
.day-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 18px 22px;
  border-radius: 14px;
  transition: 0.3s;
}

.day-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* ICON BOX */
.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e7f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 1;
}

/* TEXT */
.day-item p {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 0px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .day-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .day-grid {
    grid-template-columns: 1fr;
  }

  .day-header h2 {
    font-size: 32px;
  }
}

/* SECTION */
.testimonial {
  padding: 80px 20px;
  background: #eff8f8;
  margin: auto;
}

/* HEADER */
.testimonial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.testimonial-header h2 {
  font-family: "Noto Serif", serif;
  font-size: 44px;
  line-height: 1.2;
  color: #111;
}

.testimonial-header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.testimonial-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 3/4;
  position: relative;
}

/* VIDEO */
.testimonial-card video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* PLACEHOLDER */
.testimonial-card.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
}

.testimonial-card.placeholder img {
  width: 60%;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonial-header {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-header h2 {
    font-size: 32px;
  }
}


.medical-section {
  padding: 80px 20px;
  background-color: #0d1616;
}

.medical-section .container {
  max-width: 1200px;
  margin: auto;
}

/* TOP ROW */
.medical-section .top-row {
  display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.medical-section .top-left {
  flex: 1.3;
}

.medical-section .top-left h2 {
  font-family: "Noto Serif", serif;
    font-size: 44px;
    line-height: 1.2;
    color: #ffffff;
}

.medical-section .top-right {
  flex: 1;
}

.medical-section .top-right p {
  font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
	margin-bottom: 0px;
}

/* BOTTOM ROW */
.medical-section .bottom-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.left {
  flex: 1;
}

.image-card {
  position: relative;
}

.image-card img {
  width: 100%;
  border-radius: 20px;
  transform: rotate(-2deg);
}

/* OVERLAY CARD */
.overlay-card {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background: linear-gradient(135deg, #1aa39a, #0f766e);
  padding: 20px;
  border-radius: 15px;
  max-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.overlay-card .m-icon {
  width: 30px;
  margin-bottom: 10px;
}

.overlay-card h4 {
    font-family: Noto Serif;
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 28px;
letter-spacing: 0px;
vertical-align: middle;
color: #fff;
}


.overlay-card p {
  font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 0px;
vertical-align: middle;
color: #fff;
}

/* RIGHT FEATURES */
.right {
  flex: 1;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  border-radius: 12px;
  transition: 0.3s;
}

.feature img {
  width: 45px;
}

.feature span {
    font-family: Noto Serif;
font-weight: 400;
font-style: Regular;
font-size: 22px;
leading-trim: NONE;
line-height: 28px;
letter-spacing: 0px;
vertical-align: middle;
color: #fff;
}

/* ACTIVE CARD */
.feature.active {
  background: rgba(255,255,255,0.05);
  align-items: flex-start;
}

.feature.active img {
	margin-top: 8px;
}

.feature.active h4 {
  font-family: Noto Serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 10px;
}

.feature.active p {
  font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 24px;
letter-spacing: 0px;
vertical-align: middle;

  color: #cbdede;
}

/* HOVER EFFECT */
.feature:hover {
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-row {
    flex-direction: column;
  }

  .bottom-row {
    flex-direction: column;
  }

  .top-left h2 {
    font-size: 32px;
  }

  .overlay-card {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .top-left h2 {
    font-size: 26px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
    .medical-section .top-left h2 {
    font-size: 32px;

    }
}

/* SECTION BACKGROUND */
.safety-section {
  background: #EFF8F8;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TOP ROW */
.top-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.top-row h2 {
  font-size: 48px;
  margin: 0;
  color: #1D1C16;
}

.top-row p {
  font-size: 20px;
  color: #414651;
  line-height: 1.6;
  margin-bottom: 0px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0px 20px 40px -15px #1D1C160F;

}

/* ICON */
.safety-section .card img {
  width: 60px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* TEXT */
.card h4 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #5c6c6c;
  line-height: 1.5;
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .top-row {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-row h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .top-row h2 {
    font-size: 28px;
  }
}

 /***** Section *****/ 
 .community-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  margin-bottom: 40px;
}

.community-section .header h2 {
  font-family: 'Noto Serif', serif;
  font-size: 42px;
  margin-bottom: 10px;
  color: #222;
}

.header p {
  color: #666;
}

/* GALLERY GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 155px;
  gap: 20px;
}

/* IMAGE STYLE */
.item {
  overflow: hidden;
  border-radius: 20px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CUSTOM LAYOUT (MATCH IMAGE) */

/* TOP ROW */
.item-1 {
  grid-column: span 8;
  grid-row: span 2;
}

.item-2 {
  grid-column: span 4;
  grid-row: span 2;
}

/* MIDDLE ROW */
.item-3 {
  grid-column: span 3;
  grid-row: span 2;
}

.item-4 {
  grid-column: span 6;
  grid-row: span 2;
}

.item-5 {
  grid-column: span 3;
  grid-row: span 2;
}

/* BOTTOM ROW */
.item-6 {
  grid-column: span 6;
  grid-row: span 2;
}

.item-7 {
  grid-column: span 6;
  grid-row: span 2;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7 {
    grid-column: span 6;
    grid-row: span 2;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .item {
    grid-column: span 1 !important;
  }
}

@media (max-width: 600px) {
    .community-section .header h2 {
        font-size: 32px;
    }
}
 
 /***** End Section *****/

 /* SECTION */
.virtual-tour {
  background: linear-gradient(135deg, #1aa39a, #0f766e);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* TEXT */
.virtual-tour h2 {
  font-family: 'Noto Serif', serif;
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff;
}

.virtual-tour p {
  color: #d6f2f0;
  margin-bottom: 50px;
}

/* VIDEO BOX */
.video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
   /**background: #fff;
 padding: 10px;**/
}

/* THUMBNAIL */
.video-box img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

/* PLAY BUTTON */
.virtual-tour .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: #0f766e;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* IFRAME */
.video-box iframe {
  width: 100%;
  height: 600px;
  border-radius: 15px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .virtual-tour h2 {
    font-size: 32px;
  }

  .video-box iframe {
    height: 250px;
  }
}

/* comparison SECTION */
.comparison {
  background: #eef3f2;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING */
.comparison .comparison h2 {
  font-family: 'Noto Serif', serif;
  font-size: 48px;
  margin-bottom: 10px;
  color: #2d2d2d;
}

.subtext {
  color: #6b7280;
  margin-bottom: 60px;
}

/* WRAPPER */
.compare-wrapper {
 display: flex;
justify-content: center;
gap: 30px;
position: relative;
flex-wrap: wrap;
align-items: center;
}

/* CARDS */
.comparison .card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 420px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* LEFT CARD */
.comparison .card.left {
  border: 1px solid #e5e7eb;
}

/* RIGHT CARD (highlight) */
.comparison .card.right {
  border: 2px solid #0f766e;
}

/* TITLES */
.card h3 {
  font-family: 'Noto Serif', serif;
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #2d2d2d;
}

/* LIST */
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #374151;
}

/* ICON IMAGES */
.card ul li img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* VS BADGE */
.vs {
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .compare-wrapper {
    flex-direction: column;
  }

  .vs {
    margin: 10px 0;
  }
}
@media (max-width: 600px) {
    .comparison h2 {
        font-size: 32px;
    }
    .comparison .card {
  
    padding: 20px;
    width: 346px;
    
    }
}

/* Contact Form Section */
.booking-section {
  padding: 64px 20px;
}

/* Main Grid Wrapper */
.booking-wrapper {
  max-width: 1310px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: #ededed;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  min-height: 710px;
}

/* Left Panel */
.booking-info {
  background: linear-gradient(180deg, #066b6a 0%, #109796 100%);
  padding: 72px 64px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
}

.booking-info-content {
  max-width: 430px;
}

.booking-info h2 {
  font-family: 'Noto Serif', serif;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 28px;
  color: #fff;
}

.booking-info p {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 390px;
}

/* Contact */
.contact-list {
  margin-top: 42px;
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-item a {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  color: #ffffff;
  text-decoration: none;
  word-break: break-word;
}

/* Right Form */
.booking-form-area {
  background: #F2F2F2;
  padding: 64px 64px;
  /* display: flex; */
  align-items: center;
}
.ff-default .ff-el-form-control {
    background-color: #fff !important;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 18px;
    padding: 18px 18px !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #111827;
}

#fluentform_5 label{
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5b5b5b;
}



/* Button */
form.fluent_form_5 .wpf_has_custom_css.ff-btn-submit {
  margin-top: 8px;
  border: none;
  outline: none;
  background: #23a3a1;
  color: #ffffff;
  border-radius: 12px;
  padding: 18px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

form.fluent_form_5 .wpf_has_custom_css.ff-btn-submit:hover {
  background: #198d8a;
  transform: translateY(-1px);
}

/* =========================
   Responsive Breakpoints
========================= */

/* Tablet */
@media (max-width: 991px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .booking-info,
  .booking-form-area {
    padding: 48px 32px;
  }

  .booking-info h2 {
    font-size: 2.4rem;
  }

  .booking-info p {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .booking-section {
    padding: 28px 14px;
  }

  .booking-wrapper {
    border-radius: 20px;
  }

  .booking-info,
  .booking-form-area {
    padding: 34px 22px;
  }

  .booking-info h2 {
    font-size: 2rem;
    margin-bottom: 22px;
  }

  .booking-info p,
  .contact-item a,
  .form-group input,
  .form-group textarea,
  .submit-btn {
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea {
    border-radius: 14px;
    padding: 16px;
  }

  .form-group textarea {
    min-height: 110px;
  }
}

/* Extra CSS Add */

/* Container to hold the video and position the button */
.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 8px; /* Optional: rounds the video corners */
  overflow: hidden;
  line-height: 0; /* Removes weird spacing below the video */
}

.video-wrapper video {
  width: 100%;
  height: 520px;
  display: block;
  cursor: pointer;
}

/* The Custom Play Button */
.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfectly centers it */
  background-color: #fffffffa; /* Dark semi-transparent circle */
  color: #1aa39a;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  padding-left: 5px; /* Optically centers the triangle */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.custom-play-btn:hover {
   /* Changes to red on hover (customize as needed) */
  transform: translate(-50%, -50%) scale(1.1); /* Slight zoom effect */
}

/* Class added by JavaScript to hide the button once playing */
.video-wrapper.is-playing .custom-play-btn {
  display: none;
}