/*=============================================================
VARIABLES 
=============================================================*/
:root {
  --primary-color: #37517e;
  --accent-color: #cda45e;
  --brand-purple: rgba(89, 15, 99, 0.95);
  --brand-purple-solid: #590f63;
  --highlight-pink: #fa1fb1;
  --text-muted: #5e5e5e;
  --bg-light: #f9f9f9;
  --white: #ffffff;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

/*--------------------------------------------------------------
Navigation
--------------------------------------------------------------*/
.navbar {
  background: var(--brand-purple);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(15, 166, 225, 0.06);
  padding: 10px 0;
}

.navbar .nav-link,
.navbar .nav-link:focus {
  font-size: 15px;
  font-weight: 500;
  color: #fff !important;
  white-space: nowrap;
  transition: 0.3s;
  padding: 10px 15px;
}

.navbar .nav-link:hover,
.navbar .active,
.navbar .active:focus,
.navbar .nav-item:hover>.nav-link {
  color: var(--highlight-pink) !important;
}

.youtube-button {
  background-color: #FF0000;
  border-radius: 5px;
  padding: 0 5px;
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("images/hero-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--accent-color);
}

#hero h3 {
  color: #eee;
  margin-top: 10px;
  font-size: 25px;
}

#hero .btn-sub {
  margin-top: 30px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s forwards infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.zoom-effect {
  animation: zoomInOut 2s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/*--------------------------------------------------------------
Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-color);
}

h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
About
--------------------------------------------------------------*/
.about {
  background-size: cover;
  position: relative;
}

.about .about-img {
  position: relative;
  transition: 0.5s;
  padding: 20px;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #3b7c10;
  border-top: 5px solid #3b7c10;
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #e00f0f;
  border-bottom: 5px solid #e00f0f;
  transition: 0.5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
 Stories (Cards)
--------------------------------------------------------------*/
.stories .card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  border-radius: 10px !important;
  overflow: hidden;
}

.stories .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.stories .card-title {
  text-transform: capitalize;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
Initiatives
--------------------------------------------------------------*/
.ismile {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 40%, rgba(138, 37, 104, 0.1));
}

.initiatives .card {
  transition: transform 0.3s ease;
  border-radius: 15px !important;
}

.initiatives .card:hover {
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
 CTA
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), fixed center center;
  background-size: cover;
  padding: 100px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

/*--------------------------------------------------------------
Shop 
--------------------------------------------------------------*/
.shop {
  background-color: var(--bg-light);
}

.shop .book-container img {
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.shop .book-container img:hover {
  transform: rotate(0deg) scale(1.02);
}

.shop h3 {
  font-weight: 700;
  color: var(--primary-color);
}

.shop .price span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .shop-card {
    height: auto !important;
    min-height: auto;
  }

  .shop-card .d-flex.flex-column {
    height: auto !important;
  }

  .shop-card .mt-auto {
    margin-top: 1rem !important;
  }
}

/*--------------------------------------------------------------
Contact
--------------------------------------------------------------*/
.contact .info-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact .icon-box {
  width: 60px;
  height: 60px;
  background: #e7f5fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: var(--brand-purple-solid);
  transition: 0.3s;
}

.contact .info-item:hover .icon-box {
  background: var(--brand-purple-solid);
  color: #fff;
}

.contact h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.footer {
  padding: 60px 0 30px 0;
  background: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.footer h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--brand-purple-solid);
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--highlight-pink);
  text-decoration: none;
}

/*--------------------------------------------------------------
 WhatsApp Button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  color: #FFF;
  background-color: #128C7E;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
Booking CTA Section 
--------------------------------------------------------------*/
.contact-cta {
  background: linear-gradient(rgba(40, 58, 90, 0.85), rgba(40, 58, 90, 0.85)), url("images/hero-bg.jpg") center center;
  background-size: cover;
  background-color: #590f63;
  color: #ffffff;
  padding: 80px 0;
}

.contact-cta h2 {
  color: white;

}

.contact-cta h2::after {
  background:  #cda45e;

}

.contact-cta .btn-warning {
  background-color: #cda45e !important;
  border-color: #cda45e !important;
  color: #37517e !important;
  font-weight: 700;
}

.contact-cta .btn-warning:hover {
  background-color: #b89553 !important;
  border-color: #b89553 !important;
}

/*--------------------------------------------------------------
Booking Form 
--------------------------------------------------------------*/
.form-container {
  padding: 70px 0;
}

.booking-form-card {
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
}

.booking-page-header {
  background: linear-gradient(135deg,  #37517e, #3b4f7a);
  padding: 36px 24px;
  text-align: center;
}

.booking-page-header h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.booking-page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin: 0;
}

.form-label {
  font-weight: 600;
  color:  #37517e;
  margin-bottom: 4px;
}

.form-label span.step {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 11px 14px;
  border: 1px solid #dfe3e8;
}

.form-control:focus,
.form-select:focus {
  border-color:  #37517e;
  box-shadow: 0 0 0 0.15rem rgba(40, 58, 90, 0.15);
}

.helper-text {
  font-size: 13px;
  color: #6c757d;
  margin-top: 4px;
}

.trust-note {
  font-size: 13px;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 30px;
}

.form-container .btn-booking {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 40px;
  background-color: #37517e;
  border-color: #37517e;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

form .btn-booking:hover {
  background-color: #2c4267;
 
  border-color: #2c4267;
  color: white;
}