@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
  --primaryColor: #ffd285;
  --primaryDark: #ffbf51;
  --secondaryColor: #fd4239;
  --secondaryColorLight: #ff5f56;
  --bgColorLight: #fff6e7;
  --darkText: #1a1a1a;
  --lightText: #666666;
  --borderColor: #f0f0f0;
  --shadowLight: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadowHeavy: 0 10px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  transition: var(--transition);
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--darkText);
  line-height: 1.6;
  letter-spacing: 0.3px;
}
img {
  max-width: 100%;
  transition: var(--transition);
}
a {
  color: var(--primaryDark);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--secondaryColor);
}
section {
  padding: 80px 0;
}
.rounded-4 {
  border-radius: 24px;
}
header {
  background: white;
  border-bottom: 1px solid var(--borderColor);
  box-shadow: var(--shadowLight);
  padding: 1rem 0;
}
.email-phone a {
  color: var(--darkText);
  font-weight: 500;
}
nav {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-link {
  padding: 1rem 1.2rem;
  color: var(--darkText);
  position: relative;
  font-weight: 500;
}
.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--primaryDark), var(--secondaryColor));
  transform: translateX(-50%);
}
.nav-link:hover:after {
  width: 60%;
}
.carticon {
  background: linear-gradient(135deg, var(--primaryColor), var(--primaryDark));
  color: white;
  height: 44px;
  width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadowLight);
  cursor: pointer;
  font-weight: 600;
}
.carticon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadowHeavy);
}
.cart-image {
  height: 50px;
}
.bg-banner {
  background: linear-gradient(135deg, var(--bgColorLight) 0%, #fff9f0 100%);
}
.bg-banner > img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 35%;
  opacity: 0.8;
}
.bg-banner .container {
  position: relative;
  z-index: 1;
}
.text-primary {
  color: var(--primaryDark) !important;
}
.text-primarydark {
  color: var(--primaryDark);
}
.bg-light {
  background-color: var(--bgColorLight) !important;
}

/* Hero Section Styling */
.hero-section {
  padding: 60px 0;
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--darkText);
  margin-bottom: 2rem;
  letter-spacing: -1px;
}
.hero-text {
  font-size: 1.1rem;
  color: var(--lightText);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  background: linear-gradient(120deg, var(--primaryDark), var(--primaryColor));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadowLight);
}
.hero-play:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadowHeavy);
  color: white;
}
.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadowLight);
}
.btn-lg {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 18px 36px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}
.btn-primary, .btn-primary:focus {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primaryDark) 0%, var(--primaryColor));
  box-shadow: var(--shadowLight);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondaryColor) 0%, var(--secondaryColorLight));
  box-shadow: var(--shadowHeavy);
  transform: translateY(-2px);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:disabled:hover {
  transform: none;
}
.prodDetail img {
  max-height: 500px
}
.prodData img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 16px;
  transition: var(--transition);
}
.prodData img:hover {
  transform: scale(1.05);
}
.prodData aside {
  box-shadow: var(--shadowLight);
  padding: 32px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--borderColor);
}
.prodWrap {
  height: 100%;
  box-shadow: var(--shadowLight);
  padding: 28px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--borderColor);
}
.prodWrap:hover {
  box-shadow: var(--shadowHeavy);
  transform: translateY(-4px);
}

/* Modern Product Card */
.product-ui-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadowLight);
  border: 1px solid var(--borderColor);
  transition: var(--transition);
}
.product-ui-card:hover {
  box-shadow: var(--shadowHeavy);
  transform: translateY(-6px);
}
.single-products-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.single-products-box .image {
  padding: 24px;
  background: linear-gradient(135deg, var(--bgColorLight), #fff9f0);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-bottom: 1px solid var(--borderColor);
}
.single-products-box .image img {
  max-height: 250px;
  object-fit: contain;
}
.single-products-box .content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--darkText);
  margin-bottom: 12px;
  display: block;
  line-height: 1.4;
}
.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primaryDark);
  margin-bottom: 16px;
}
.choose-btn {
  margin-top: auto;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.ourfeatures aside {
  padding: 40px;
  background: linear-gradient(135deg, var(--primaryDark) 0%, var(--primaryColor) 100%);
  border-radius: 16px;
  height: 100%;
  color: white;
}
.ourfeatures aside:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadowHeavy);
}

/* Facility Boxes */
.facility-box {
  padding: 40px 24px;
  background: white;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadowLight);
  border: 1px solid var(--borderColor);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.facility-box:hover {
  box-shadow: var(--shadowHeavy);
  transform: translateY(-6px);
}
.facility-box img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}
.facility-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--darkText);
  margin: 0;
}
.facility-box.bg-fed3d1 {
  background: linear-gradient(135deg, #fed3d1, #ffc0c0);
}
.facility-box.bg-a9d4d9 {
  background: linear-gradient(135deg, #a9d4d9, #9bccd1);
}
.facility-box.bg-fef2d1 {
  background: linear-gradient(135deg, #fef2d1, #fdedb5);
}

/* Hero Info Section */
.hero-contact {
  margin-top: 32px;
}
.hero-contact .gap-3 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--secondaryColorLight);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.hero-contact i {
  font-size: 1.3rem;
  color: var(--primaryDark);
  margin-top: 2px;
}
.hero-contact small {
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.hero-contact strong {
  font-size: 1.1rem;
  color: var(--darkText);
  font-weight: 600;
}

/* Hero Box Section */
.hero-box {
  background: white;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--darkText);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.feature {
  padding: 24px;
  background: linear-gradient(135deg, var(--bgColorLight), #fff9f0);
  border-radius: 12px;
  transition: var(--transition);
}
.feature:hover {
  background: linear-gradient(135deg, #ffd285, var(--bgColorLight));
  transform: translateX(4px);
}
.feature-icon {
  font-size: 2rem;
  color: var(--primaryDark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  flex-shrink: 0;
}
.feature h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--darkText);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.feature p {
  color: var(--lightText);
  font-size: 0.95rem;
}
.slick-prev, .slick-next {
  font-size: 0;
  border: 0;
  height: 48px;
  width: 48px;
  background: linear-gradient(135deg, var(--primaryDark), var(--primaryColor));
  border-radius: 50%;
  color: white;
  box-shadow: var(--shadowLight);
  transition: var(--transition);
}
.slick-prev:hover, .slick-next:hover {
  transform: scale(1.1);
  box-shadow: var(--shadowHeavy);
}
.slick-prev:before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
}
.slick-next:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
}
.slick-prev {
  top: 50%;
  position: absolute;
  z-index: 1;
  transform: translateY(-50%);
  left: 0;
}
.slick-next {
  top: 50%;
  position: absolute;
  z-index: 1;
  transform: translateY(-50%);
  right: 0;
}
.contacts aside {
  box-shadow: var(--shadowLight);
  padding: 48px 32px;
  border-radius: 16px;
  height: 100%;
  background: white;
  border: 1px solid var(--borderColor);
}
.contacts aside:hover {
  box-shadow: var(--shadowHeavy);
  transform: translateY(-4px);
}
.fa-star {
  color: #ffc107;
}
.supplement .border {
  display: none;
}
.deals aside {
  background-image: url(../images/prices-deals.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 16px;
}
.deals aside article {
  background-color: white;
  margin-left: 40%;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadowHeavy);
}
.deals aside:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.deals h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
  font-weight: 800;
  color: white;
}
.deals a {
  z-index: 2;
  position: relative;
}
.testimonials .slick-list {
  box-shadow: var(--shadowLight);
  border-radius: 16px;
  overflow: hidden;
}
.testimonials .testibox {
  display: flex;
}
.testimonials .testibox div:first-child {
  padding: 48px;
  flex: 1;
}
.testimonials .testibox div:last-child {
  padding: 48px;
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bgColorLight), #fff9f0);
}
.testimonials .testibox div:last-child img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: var(--shadowLight);
}
.testimonials h5 {
  color: var(--primaryDark);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonials p {
  margin-bottom: 0;
  background-color: var(--bgColorLight);
  padding: 24px;
  border-radius: 12px;
  margin-top: 12px;
  color: var(--lightText);
  line-height: 1.6;
}
[class*="ulWrap"] li {
  margin-bottom: 12px;
  padding: 8px 0;
  color: var(--lightText);
}
[class*="ulWrap"] li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primaryDark);
  font-size: 0.9rem;
}

.fancy-list {
  padding-left: 0;
}
.fancy-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.fancy-list li svg {
  height: 22px;
  width: 22px;
  fill: var(--primaryDark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Forms */
.form-control, .form-select {
  border: 1px solid var(--borderColor);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  box-shadow: var(--shadowLight);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primaryDark);
  box-shadow: 0 0 0 3px rgba(255, 191, 81, 0.1);
  outline: none;
}
.form-label {
  font-weight: 600;
  color: var(--darkText);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--darkText), #2a2a2a);
  color: white;
  padding: 60px 0 20px;
  margin-top: auto;
}
footer a {
  color: var(--primaryColor);
  font-weight: 500;
}
footer a:hover {
  color: white;
  text-decoration: underline;
}
footer h5,footer h4 {color: var(--borderColor);}

/* Background colors */
.bg-custom {
  background: linear-gradient(135deg, var(--bgColorLight), #fff9f0);
}
/* Product page image gallery */
#divId {
  display: none;
  margin-top: 20px;
  text-align: center;
}
#divId img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border: 3px solid var(--borderColor);
  margin: 0 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
#divId img:hover {
  border-color: var(--primaryDark);
  transform: scale(1.1);
}
.supplement #divId {
  display: block;
}
.imagebox {
  border: 2px solid var(--borderColor);
  margin-right: 20px;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  background: white;
}
.imagebox img {
  max-height: 500px;
  object-fit: contain;
}

/* Product detail improvements */
.prodDetail img {
  max-height: 500px;
  border-radius: 12px;
}

/* Error messages */
.err_msg {
  background: #ffe0e0;
  border: 1px solid #ff6b6b;
  padding: 16px;
  border-radius: 8px;
  box-shadow: var(--shadowLight);
  color: #8b0000;
  font-size: 14px;
  font-weight: 500;
}
.err_msg em {
  font-style: normal;
}
.E-Book .qtyPackage {
  display: none;
}
.card-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input-wrapper .form-control {
  padding-right: 130px;
}

.card-type-badge {
  position: absolute;
  right: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  background-color: var(--primaryColor);
  color: white;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-type-badge i {
  font-size: 18px;
}

/* Card validation error styling */
.card-input-wrapper .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

#card_error_msg {
  display: block;
  margin-top: 0.25rem;
  color: #dc3545;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .facility-box {
    padding: 30px 20px;
  }

  section {
    padding: 60px 0;
  }

  .btn {
    padding: 12px 24px;
    font-size: 11px;
  }
}

/* Animation for scroll effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-ui-card, .facility-box, .feature {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

/* Stagger animation delay */
.col-lg-3:nth-child(1) .facility-box,
.col-md-6:nth-child(1) .product-ui-card {
  animation-delay: 0.1s;
}

.col-lg-3:nth-child(2) .facility-box,
.col-md-6:nth-child(2) .product-ui-card {
  animation-delay: 0.2s;
}

.col-lg-3:nth-child(3) .facility-box,
.col-md-6:nth-child(3) .product-ui-card {
  animation-delay: 0.3s;
}

.col-lg-3:nth-child(4) .facility-box,
.col-md-6:nth-child(4) .product-ui-card {
  animation-delay: 0.4s;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Additional Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--darkText);
  font-weight: 700;
  letter-spacing: -0.5px;
}

p {
  color: var(--lightText);
}

/* Link hover effects */
a {
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

/* Button group styling */
.btn-group-custom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Card hover lift effect */
.product-ui-card, .facility-box, .feature {
  will-change: transform, box-shadow;
}

/* Loading state */
.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Credit Card Input Styling */
.card-input-wrapper { position: relative; display: flex; align-items: center; }
.card-input-wrapper .form-control { padding-right: 130px; }
.card-type-badge { position: absolute; right: 22px; padding: 6px 10px; border-radius: 4px; font-size: 14px; font-weight: 600; white-space: nowrap; background-color: transparent; color: #222222; transition: all 0.3s ease; display: flex; align-items: center; gap: 6px; }
.card-type-badge i { font-size: 24px; }
/* Card validation error styling */
.card-input-wrapper .form-control.is-invalid { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
#card_error_msg { display: block; margin-top: 0.25rem; }