/* ===========================
   ROOT VARIABLES & COLORS
   =========================== */
:root {
  /* Primary Colors */
  --themeColor: #DA2E5B;
  --primaryColor: #FFD6DD;
  --secondaryColor: #F8D269;
  --textColor: #010535;
  --whiteColor: #fff;
  --darkBg: #1a1a1a;
  --borderColor: rgba(218, 46, 91, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

/* Disable smooth scroll on mobile to prevent navbar jump */
@media (max-width: 991px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--textColor);
  background-color: var(--whiteColor);
  overflow-x: hidden;
  line-height: normal !important;
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: clamp(6px, 0.8vw, 8px);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--themeColor);
}


/* Font Sizes */

.font-12 {
  font-size: clamp(10px, 1.2vw, 12px);
}

.font-14 {
  font-size: clamp(12px, 1.4vw, 14px);
}

.font-16 {
  font-size: clamp(14px, 1.6vw, 16px);
}

.font-18 {
  font-size: clamp(15px, 1.8vw, 18px);
}

.font-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.font-22 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.font-24 {
  font-size: clamp(20px, 2.4vw, 24px);
}

.font-28 {
  font-size: clamp(20px, 2.8vw, 28px);
}

.font-30 {
  font-size: clamp(20px, 3vw, 30px);
}

.font-32 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.font-40 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.font-48 {
  font-size: clamp(28px, 4.8vw, 48px);
}


/* Font Weights */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

/* ===========================
   COLORS
   =========================== */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.textColor {
  color: var(--textColor);
}

.textLight {
  color: rgba(255, 255, 255, 0.8);
}

.textDark {
  color: #606060;
}

a {
  text-decoration: none !important;
}

.lh-0 {
  line-height: 0 !important;
}

.line-height-26 {
  line-height: clamp(1.25rem, 1.1797rem + 0.375vw, 1.625rem) !important;
}
.line-height-40 {
  line-height: 40px;
}
.line-height-28 {
  line-height: 28px;
}

.line-height-22 {
  line-height: clamp(1.125rem, 1.0809rem + 0.2353vw, 1.375rem) !important;
}

.line-height-18 {
  line-height: 18px !important;
}

/*  NAVBAR */
.navbar {
  background: var(--whiteColor);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgb(238 152 180 / 18%);
  z-index: 100;
  transition: all 0.3s ease;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 4px 0px;
}

.navbar-logo {
  height: clamp(60px, 5vw, 80px);
  width: auto;
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  position: relative;
  color: var(--textColor);
}

.navbar-nav .nav-link:hover {
  color: var(--themeColor);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--themeColor) !important;
  font-weight: 600;
}

.navbar-toggler-icon {
  background-color: var(--primaryColor);
  border-radius: 4px;
  background-size: 80% !important;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-brand {
  height: clamp(65px, 6vw, 75px);
  width: auto;
  transition: all 0.3s ease;
  display: block;
}

.navbar-toggler-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") !important;
}

.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.navbar-collapse {
  margin: 10px;
}

.dropdown-menu {
  border-radius: clamp(6px, 0.8vw, 8px);
  box-shadow: 0 8px 24px rgba(1, 5, 53, 0.12);
  padding: 8px 0;
  animation: dropdownSlide 0.3s ease;
  margin-top: 8px;
  min-width: 215px;
  position: absolute !important;
  left: -100% !important;
  border: 1px solid #df4a735c;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu .dropdown-item {
  color: var(--textColor) !important;
  padding: clamp(0.5rem, 0.4779rem + 0.1176vw, 0.625rem) 20px;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
  background: #fce1e573;
  padding-left: 24px;
  color: var(--themeColor) !important;
}

/* Button */
.primary-button {
  display: inline-flex;
  outline: none;
  cursor: pointer;
  padding: 10px 24px;
  color: #fff;
  letter-spacing: -0.4px;
  background: linear-gradient(180deg, #da2e5c60 0%, #da2e5ca4 45%, #DA2E5B 100%);
  box-shadow: 0 0 0 4px #ffd2da, 0 6px 20px #ffffff, inset 0 2px 4px #e43f7573;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.05) 45%,
      rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}

.primary-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(circle at bottom center,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.18) 18%,
      rgba(255, 255, 255, 0.06) 35%,
      transparent 65%),
    radial-gradient(rgba(255, 255, 255, 0.14) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.08) 0.5px, transparent 0.5px),
    radial-gradient(rgba(0, 0, 0, 0.08) 0.7px, transparent 0.7px);
  background-size:
    100% 100%,
    4px 4px,
    7px 7px,
    5px 5px;
  background-position:
    center,
    0 0,
    2px 2px,
    1px 3px;
  opacity: 0.55;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.primary-button span {
  position: relative;
  z-index: 3;
}

.primary-button i {
  position: relative;
  z-index: 3;
}

.pb-ai-sparkle {
  transform: translateY(-1px);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 0 0 6px #da2e5c1e,
    0 6px 8px #da2e5c85,
    inset 0 1px 2px rgba(255, 176, 176, 0.28);
}

.primary-button:active {
  transform: scale(0.98);
}

/* Section Header */
.section-header-wrapper {
  z-index: 1;
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-line-left,
.badge-line-right {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor), transparent);
  display: block;
}

.badge-line-right {
  background: linear-gradient(90deg, transparent, var(--themeColor));
}

.section-badge {
  background: rgba(218, 46, 91, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(218, 46, 91, 0.2);
  transition: all 0.3s ease;
}

.section-heading {
  letter-spacing: -0.02em;
}

.section-heading em {
  font-style: italic;
  background: linear-gradient(14deg, var(--themeColor), #F8D269);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-subtext {
  max-width: 500px;
  margin: 0 auto;
}

/* Faq Section */
.faq-accordion {
  z-index: 1;
}

.faq-item {
  border: 1px solid transparent;
  border-radius: clamp(10px, 1.2vw, 16px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0px 6px rgb(218 46 91 / 19%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, var(--themeColor), #ff4d7d);
  border-radius: 10px 0 0 10px;
  transform: scaleY(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: top;
  box-shadow: inset 0 0 8px rgba(218, 46, 91, 0.3);
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(248, 210, 105, 0.1) 0%, transparent 70%);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(218, 46, 91, 0.25);
  box-shadow: 0 6px 16px rgba(218, 46, 91, 0.15);
  transform: translateY(-3px);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item:hover::after {
  opacity: 1;
}

.faq-item.open {
  border-color: rgba(218, 46, 91, 0.35);
  box-shadow: 0 2px 14px rgba(218, 46, 91, 0.18);
  background: linear-gradient(135deg, rgba(255, 214, 221, 0.08) 0%, rgba(248, 210, 105, 0.04) 100%);
}

.faq-item.open::before {
  transform: scaleY(1);
}

.faq-item.open::after {
  opacity: 1;
}

.faq-trigger {
  width: 100%;
  background: none;
  cursor: pointer;
  gap: 18px;
  padding: 12px 24px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-trigger:hover {
  background: rgba(248, 210, 105, 0.06);
}

.faq-trigger-left {
  flex: 1;
}

.faq-num {
  font-family: 'Outfit', sans-serif;
  opacity: 0.85;
  background: linear-gradient(135deg, #da2e5b6b, #ff4d7db8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.faq-q {
  transition: color 0.25s ease;
  flex: 1;
}

.faq-item:hover .faq-q {
  color: var(--themeColor);
}

.faq-item.open .faq-q {
  color: var(--themeColor);
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 2.5px solid rgba(218, 46, 91, 0.2);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, rgba(248, 210, 105, 0.15), rgba(255, 214, 221, 0.1));
  color: var(--themeColor);
}

.faq-icon svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  stroke: currentColor;
  stroke-width: 2;
}

.faq-item:hover .faq-icon {
  border-color: var(--themeColor);
  background: linear-gradient(135deg, rgba(218, 46, 91, 0.1), rgba(248, 210, 105, 0.12));
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(218, 46, 91, 0.2);
}

.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  border-color: var(--themeColor);
  color: var(--whiteColor);
  box-shadow: 0 6px 16px rgba(218, 46, 91, 0.3);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--whiteColor);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding: 0 16px 16px 40px;
  border-top: 2px solid rgba(218, 46, 91, 0.08);
  padding-top: 20px;
  animation: fadeIn 0.3s ease-out 0.1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.faq-body-inner strong {
  color: var(--themeColor);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/*  TESTIMONIALS SECTION */
.testimonials-section {
  background: #fafafa;
}

.testimonials-tab-btn {
  background: var(--whiteColor);
  border: 2px solid rgba(218, 46, 91, 0.15);
  color: var(--textColor);
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(218, 46, 91, 0.06);
  letter-spacing: 0.3px;
}

.testimonials-tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffeaec;
  transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
  border-radius: 50px;
}

.testimonials-tab-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgb(234 142 167 / 26%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.testimonials-tab-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.testimonials-tab-btn span {
  position: relative;
  z-index: 1;
}

/* ul li {
  list-style: none;
} */

.testimonials-tab-btn:hover {
  transform: translateY(-3px);
}

.testimonials-tab-btn:hover::after {
  width: 300px;
  height: 300px;
}

.testimonials-tab-btn:hover svg {
  transform: scale(1.15) rotate(8deg);
}

.testimonials-tab-btn.active {
  color: var(--themeColor);
  transform: translateY(-2px);
  border: 2px solid var(--themeColor);
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  box-shadow: 0 8px 24px rgba(218, 46, 91, 0.25);
}

.testimonials-tab-btn.active::before {
  left: 0;
}

.testimonials-tab-btn.active svg {
  transform: scale(1.15);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  color: var(--themeColor);
}

.testimonials-tab-btn.active span {
  color: var(--whiteColor);
}

.testimonials-content {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonials-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-track {
  width: fit-content;
}

.testimonial-item {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 340px);
  cursor: pointer;
}

.testimonial-video {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgb(223 62 109 / 45%);
}

.testimonial-video:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(1, 5, 53, 0.12);
  border-color: rgba(244, 18, 0, 0.2);
}

.video-container {
  width: 100%;
  height: clamp(180px, 20vw, 220px);
  background: var(--darkBg);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info h4 {
  transition: color 0.3s ease;
}

.testimonial-video:hover .video-info h4 {
  color: var(--themeColor);
}

/* Feedback Card */
.feedback-card {
  background: var(--whiteColor);
  border: 1px solid rgba(218, 46, 91, 0.12);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  box-shadow: 0 8px 24px rgba(218, 46, 91, 0.08);
  backdrop-filter: blur(10px);
}

.feedback-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.feedback-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 6px 20px rgba(218, 46, 91, 0.18);
  border-color: rgba(218, 46, 91, 0.25);
}

.feedback-card:hover::before {
  transform: scaleX(1);
}

.feedback-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  box-shadow: 0 6px 20px rgba(218, 46, 91, 0.3);
  transition: all 0.4s ease;
}

.avatar-circle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--themeColor);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.feedback-card:hover .avatar-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(218, 46, 91, 0.4);
}

.feedback-card:hover .avatar-circle::before {
  opacity: 0.8;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: #FFD700;
  fill: #FFD700;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
  transition: transform 0.3s ease;
}

.feedback-card:hover .star-icon {
  transform: scale(1.15) rotate(15deg);
}

.feedback-card>p {
  z-index: 2;
}

.feedback-footer {
  z-index: 2;
  border-top: 2px solid rgba(218, 46, 91, 0.1);
}

.feedback-footer h4 {
  transition: color 0.3s ease;
}

.feedback-card:hover .feedback-footer h4 {
  color: var(--themeColor);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-item {
    width: 280px;
  }

}

/* ===========================
   FOOTER SECTION - CLEAN & SIMPLE
   =========================== */
.footer-section {
  background: #f8f1f2;
  padding: clamp(3rem, 7vw, 3rem) 0 clamp(2rem, 3vw, 2rem);
  border-top: 1px solid var(--borderColor);
}

.footer-logo {
  height: clamp(50px, 6vw, 75px);
  width: auto;
  transition: all 0.3s ease;
  display: block;
}

.footer-logo:hover {
  transform: scale(1.08);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: #606060;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--themeColor);
}

.footer-col {
  transition: all 0.3s ease;
}

.footer-title {
  color: var(--themeColor);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, #FFD6DD);
  transition: all 0.3s ease;
}

.footer-social {
  display: flex;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.footer-social-btn {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  background: linear-gradient(170deg, var(--themeColor) 0%, #ffd6dd);
  border-radius: 10px;
  color: var(--whiteColor);
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  transform: translateY(-4px);
}

.footer-social-btn img {
  width: clamp(18px, 2vw, 20px);
  height: clamp(18px, 2vw, 20px);
}

.footer-contact-label {
  color: var(--themeColor);
}

.footer-contact-value {
  color: #606060;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact-value:hover {
  color: var(--themeColor);
}

.footer-bottom {
  border-top: 1px solid rgb(244 18 0 / 33%);
}

.footer-bottom-links {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #606060;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--themeColor);
}

/* ===========================
   BLOG SECTION
   =========================== */

.blog-carousel {
  width: 100%;
}

.blog-carousel-container {
  border-radius: clamp(12px, 1.5vw, 16px);
}

.blog-card {
  border-radius: clamp(12px, 1.5vw, 16px);
  border: 1px solid rgba(218, 46, 91, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 3px 8px rgba(218, 46, 91, 0.08);
}

.blog-card:hover {
  transform: translateY(clamp(-4px, -0.8vw, -8px));
  box-shadow: 0 8px 20px rgba(218, 46, 91, 0.18);
  border-color: #da2e5c54;
}

.blog-card-image {
  width: 100%;
  height: clamp(180px, 20vw, 220px);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-badge {
  top: clamp(12px, 1.5vw, 16px);
  left: clamp(12px, 1.5vw, 16px);
  background: linear-gradient(180deg, #da2e5b 0%, #ff4d7d 100%);
  padding: clamp(4px, 0.5vw, 4px) clamp(10px, 1vw, 14px);
  letter-spacing: 0.3px;
}

.blog-card-content {
  flex: 1;
}

.blog-card-title {
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card:hover .blog-card-title {
  color: var(--themeColor);
}

.blog-card-excerpt {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card-link {
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.blog-card-link:hover {
  gap: clamp(4px, 0.5vw, 8px);
}

.blog-card-link span {
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: clamp(0.25rem, 0.5vw, 0.5rem);
}

.blog-card-link:hover span {
  transform: translateX(clamp(2px, 0.3vw, 4px));
}

.blog-carousel-btn {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  background: var(--whiteColor);
  border: 2px solid rgba(218, 46, 91, 0.15);
  cursor: pointer;
  color: var(--textColor);
  transition: all 0.3s ease;
}

.blog-carousel-btn:hover {
  background: var(--themeColor);
  border-color: var(--themeColor);
  color: var(--whiteColor);
  transform: scale(1.1);
}

.blog-carousel-btn svg {
  width: clamp(20px, 2.5vw, 24px);
  height: clamp(20px, 2.5vw, 24px);
}

.blog-carousel-prev,
.blog-carousel-next {
  top: 50%;
  transform: translateY(-50%);
}

.blog-carousel-prev {
  left: clamp(-20px, -4vw, -40px);
}

.blog-carousel-next {
  right: clamp(-20px, -4vw, -40px);
}

.blog-carousel-inner {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(1rem, 2vw, 2rem);
}

.blog-card-wrapper {
  min-width: clamp(250px, 25vw, 400px);
}

.cta-btn {
  background: linear-gradient(14deg, var(--themeColor), #F8D269);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 0px rgb(242 180 102 / 71%);
  letter-spacing: 0.5px;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
}

.cta-btn span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(218, 46, 91, 0.35);
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:active {
  transform: translateY(-1px) scale(0.98);
}


/* ===========================
   SMS BEAUTY SALON SECTION
   =========================== */
.sms-service-card {
  background: linear-gradient(135deg, rgba(218, 46, 91, 0.05), rgba(248, 210, 105, 0.04));
  border: 1px solid rgba(218, 46, 91, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}

.sms-service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(218, 46, 91, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 0;
}

.sms-service-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(248, 210, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 0;
}

.card-number {
  background: linear-gradient(135deg, rgba(218, 46, 91, 0.2), rgba(248, 210, 105, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  z-index: 1;
}

.card-icon-box {
  width: clamp(3.125rem, 2.9609rem + 0.875vw, 4rem);
  height: clamp(3.125rem, 2.9609rem + 0.875vw, 4rem);
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  border-radius: clamp(0.625rem, 0.5781rem + 0.25vw, 0.875rem);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  box-shadow: 0 8px 20px rgba(218, 46, 91, 0.2);
}

.card-icon-box svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: clamp(1.875rem, 1.7578rem + 0.625vw, 2.5rem);
  width: clamp(1.875rem, 1.7578rem + 0.625vw, 2.5rem);
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor), #F8D269);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.sms-service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(218, 46, 91, 0.3);
  box-shadow: 0 20px 40px rgba(218, 46, 91, 0.15);
}

.sms-service-card:hover::before {
  top: -30%;
  right: -30%;
}

.sms-service-card:hover::after {
  bottom: -30%;
  left: -30%;
}

.sms-service-card:hover .card-icon-box {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(218, 46, 91, 0.3);
}

.sms-service-card:hover .card-icon-box svg {
  transform: scale(1.1);
}

.sms-service-card:hover .card-title {
  color: var(--themeColor);
}

.sms-service-card:hover .card-accent {
  width: 100%;
}

.bg-section {
  background-color: #fafafa;
}

/*  OUR SERVICES SECTION */
.service-card {
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(218, 46, 91, 0.06);
  border: 1px solid rgba(218, 46, 91, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 210, 105, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.service-image {
  width: 100%;
  height: 240px;

}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.95);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(218, 46, 91, 0) 0%, rgba(218, 46, 91, 0) 100%);
  transition: all 0.5s ease;
}

.service-content {
  flex: 1;
  padding: 28px 24px;
  z-index: 1;
}

.service-badge {
  letter-spacing: 1px;
  background: rgba(218, 46, 91, 0.08);
  width: fit-content;
  transition: all 0.3s ease;
  padding: 2px 8px;
}

.service-card:hover .service-badge {
  background: rgba(218, 46, 91, 0.15);
}

.service-content h3 {
  transition: color 0.3s ease;
  line-height: 1.4;
}

.service-card:hover .service-content h3 {
  color: var(--themeColor);
}

.service-content p {
  flex: 1;
  transition: color 0.3s ease;
  border-bottom: 1px solid #fae6ea;
}

.service-link {
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: fit-content;
}

.service-link span {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor), #F8D269);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(218, 46, 91, 0.12);
  border-color: rgba(218, 46, 91, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  top: -20%;
  right: -20%;
}

.service-card:hover .service-image img {
  transform: scale(1.12);
  filter: brightness(1);
}

.service-card:hover .service-overlay {
  background: linear-gradient(135deg, rgba(218, 46, 91, 0.1) 0%, rgba(218, 46, 91, 0.05) 100%);
}

.service-card:hover .service-link {
  gap: 10px;
}

.service-card:hover .service-link span {
  transform: translateX(3px);
}

.service-card:hover .service-link::after {
  width: 100%;
}


/* ===========================
   EXPERTISE SECTION
   =========================== */
.expertise-section {
  background: linear-gradient(135deg, rgba(248, 210, 105, 0.08) 0%, rgba(218, 46, 91, 0.05) 100%);
  border-bottom: 1px solid rgba(218, 46, 91, 0.1);
}

.expertise-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 210, 105, 0.03) 100%);
  border: 1.5px solid rgba(218, 46, 91, 0.15);
  border-radius: clamp(14px, 2vw, 20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(218, 46, 91, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor), #F8D269);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.expertise-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 210, 105, 0.12) 0%, transparent 70%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.expertise-card .corner-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(218, 46, 91, 0.1);
  pointer-events: none;
}

.corner-decoration.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 0 0 20px 0;
}

.corner-decoration.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 20px 0 0 0;
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-color: rgba(218, 46, 91, 0.3);
  box-shadow: 0 16px 40px rgba(218, 46, 91, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-card:hover::after {
  top: -20%;
  right: -20%;
}

.expertise-text-item {
  transition: all 0.3s ease;
  z-index: 2;
}

.expertise-text-item:last-child {
  margin-bottom: 0 !important;
}

.expertise-text-title {
  transition: color 0.3s ease;
}

.expertise-card:hover .expertise-text-title {
  color: #ff4d7d;
}

.expertise-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor), transparent);
  margin: clamp(20px, 4vw, 28px) auto !important;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-divider {
  background: linear-gradient(90deg, var(--themeColor), #F8D269);
  width: 100px;
  box-shadow: 0 2px 8px rgba(218, 46, 91, 0.2);
}

.expertise-text-item:last-child~.expertise-divider {
  display: none;
}

/*  ABOUT SMS SECTION */
.about-image-container {
  height: clamp(18.75rem, 16.4063rem + 12.5vw, 31.25rem);
}

.about-image-container img {
  box-shadow: 0 12px 32px rgba(218, 46, 91, 0.15);
  border: 1px solid rgba(218, 46, 91, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-container:hover img {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(218, 46, 91, 0.2);
}

.about-years-badge {
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  box-shadow: 0 10px 32px rgba(218, 46, 91, 0.35);
  border: 2px solid var(--whiteColor);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 4px 6px;
}

.about-years-badge:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 14px 40px rgba(218, 46, 91, 0.4);
}

.owner-info {
  background: linear-gradient(135deg, rgba(248, 210, 105, 0.1) 0%, rgba(218, 46, 91, 0.04) 100%);
  border: 1px solid rgba(218, 46, 91, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.owner-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--themeColor), #F8D269);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.owner-info:hover {
  background: linear-gradient(135deg, rgba(248, 210, 105, 0.15) 0%, rgba(218, 46, 91, 0.08) 100%);
  box-shadow: 0 6px 16px rgba(218, 46, 91, 0.12);
  border-color: rgba(218, 46, 91, 0.25);
  transform: translateX(4px);
}

.owner-info:hover::before {
  transform: scaleY(1);
}

.owner-info img {
  border: 2px solid var(--themeColor);
  transition: transform 0.3s ease;
}

.owner-info:hover img {
  transform: scale(1.08);
}

.btn-know-more {
  border: 1px solid var(--themeColor);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 16px rgba(218, 46, 91, 0.2);
}


.btn-know-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(218, 46, 91, 0.3);
}


/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: clamp(500px, 88vh, 600px);
  position: relative;
  margin-top: clamp(60px, 10vw, 80px);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {

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

  50% {
    transform: scale(1.08);
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(26 26 26 / 39%) 0%, rgba(26, 26, 26, 0.6) 100%);
  z-index: 1;
}

.hero-badge {
  background: rgba(218, 46, 91, 0.2);
  border: 1px solid rgba(218, 46, 91, 0.4);
  border-radius: 50px;
  padding: clamp(8px, 1.5vw, 8px) clamp(14px, 2vw, 16px);
  width: fit-content;
}

.hero-title {
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  font-size: clamp(37px, 8vw, 64px);
}

.text-gold {
  color: #fdcad3;
}

.hero-subtitle {
  opacity: 0.8;
  max-width: 500px;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 24px;
}

.hero-btn-secondary:hover {
  transform: translateY(-4px);
}

@media (max-width: 576px) {
  .hero-bg-image {
    background-position: 62%, 70%;
  }
}


/* ===========================
   MARQUEE SECTION
   =========================== */
.marquee-section {
  background: linear-gradient(90deg, var(--themeColor) 0%, #ff4d7d 50%, var(--themeColor) 100%);
}

.marquee-track {
  animation: marqueeScroll 25s linear infinite;
  width: fit-content;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  letter-spacing: 0.5px;
  padding: 6px 12px;
}

.marquee-item::before {
  content: "✦";
  margin-right: 12px;
  color: #F8D269;
  opacity: 0.9;
}


/* ===========================
   FOOTER SEO LINKS
   =========================== */
.footer-seo-links {
  background: rgba(248, 210, 105, 0.04);
}

.footer-seo-link {
  color: #606060;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-seo-link:hover {
  color: var(--themeColor);
}

.footer-seo-separator {
  color: rgba(218, 46, 91, 0.3);
  margin: 0 6px;
}

/*   ABOUT PAGE HERO SECTION */
.about-hero-section {
  min-height: clamp(400px, 60vh, 500px);
  margin-top: clamp(60px, 10vw, 80px);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(26 26 26 / 35%) 0%, rgb(26 26 26 / 18%) 100%);
  z-index: 1;
}

.about-sms-image-container {
  height: clamp(19.75rem, 20.4063rem + 18.5vw, 40.25rem);
}


/* ===========================
   VISION & MISSION SECTION
   =========================== */

.vision-mission-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 210, 105, 0.03) 100%);
  border: 1.5px solid rgba(218, 46, 91, 0.15);
  border-radius: clamp(14px, 2vw, 18px);
  padding: clamp(2rem, 3vw, 2rem);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(218, 46, 91, 0.1);
  z-index: 1;
}

.card-icon {
  width: clamp(3.5rem, 4vw, 4.5rem);
  height: clamp(3.5rem, 4vw, 4.5rem);
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(218, 46, 91, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.vision-mission-card:hover {
  transform: translateY(-12px);
  border-color: rgba(218, 46, 91, 0.3);
  box-shadow: 0 16px 40px rgba(218, 46, 91, 0.2);
}

.vision-mission-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(218, 46, 91, 0.35);
}

.card-header {
  z-index: 2;
}


/* ===========================
   SERVICES DETAILS SECTION
   =========================== */
.services-details-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 210, 105, 0.02) 100%);
}

.services-content-wrapper {
  padding: 0;
  padding-right: 12px;
}

.service-item:last-child {
  border: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.service-card-sticky {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 210, 105, 0.05) 100%);
  border: 1.5px solid rgba(218, 46, 91, 0.15);
  border-radius: clamp(10px, 1.5vw, 14px);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  box-shadow: 0 4px 16px rgba(218, 46, 91, 0.08);
}

.service-card-sticky h4 {
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
  border-bottom: 1.5px solid rgba(218, 46, 91, 0.1);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem) !important;
}

.service-title {
  color: var(--themeColor);
  line-height: 1.3;
}

.border-light {
  border-color: rgba(218, 46, 91, 0.1) !important;
}

.card-title {
  color: var(--themeColor);
}

.service-icon {
  color: var(--themeColor);
  font-size: 16px;
  flex-shrink: 0;
}

.right-sidebar {
  flex: 1;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}


/* ===========================
   BOOK NOW MODAL
   =========================== */

.book-now-modal {
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: 0 20px 60px rgba(218, 46, 91, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(218, 46, 91, 0.1);
  animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-now-header {
  background-color: #ffd6dd6e;
  border-bottom: 2px solid rgba(218, 46, 91, 0.1) !important;
}

.book-now-close {
  width: 36px;
  height: 36px;
  background: #da2e5b1c;
  color: var(--themeColor);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.book-now-close:hover {
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(218, 46, 91, 0.25);
}

.book-now-close::after {
  content: '×';
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-feild {
  border: 2px solid rgba(218, 46, 91, 0.15);
  border-radius: 10px;
  padding: clamp(0.75rem, 1vw, 10px) clamp(1rem, 1.5vw, 1rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 210, 105, 0.05) 100%);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--textColor);
}

.input-feild::placeholder {
  color: rgba(96, 96, 96, 0.6);
  font-weight: 400;
}

.input-feild:focus {
  border-color: var(--themeColor);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(218, 46, 91, 0.1);
  outline: none;
}

/* Select dropdown arrow styling */
select.input-feild {
  appearance: auto;
  padding-right: clamp(2rem, 3vw, 2.5rem);
  background-position: right clamp(0.5rem, 1vw, 0.75rem) center;
}

select.input-feild::-ms-expand {
  display: block;
}

.captcha-box {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(218, 46, 91, 0.2);
  transition: all 0.3s ease;
}

.captcha-box:hover {
  border-color: var(--themeColor);
  box-shadow: 0 4px 12px rgba(218, 46, 91, 0.15);
}

.captcha-text {
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  user-select: none;
  flex: 1;
}

.captcha-refresh {
  transition: all 0.3s ease;
  cursor: pointer;
}

.captcha-refresh:hover {
  transform: rotate(180deg) scale(1.1);
}

.modal.fade .modal-dialog {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* BRIDAL TRANSFORMATIONS VIDEO SECTION */
.bridal-videos-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 210, 105, 0.02) 100%);
}

.yt-video-card {
  background: #000;
  height: 280px;
  border-radius: clamp(12px, 1.5vw, 16px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(218, 46, 91, 0.12);
  border: 1px solid rgba(218, 46, 91, 0.1);
}

.yt-video-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(218, 46, 91, 0.2);
  border-color: rgba(218, 46, 91, 0.2);
}

.yt-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: clamp(12px, 1.5vw, 16px);
  display: block;
}

.yt-video-info {
  background: #040404d1;
  padding: 16px;
  z-index: 2;
}

.yt-video-info h5 {
  color: white;
  transition: color 0.3s ease;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.4;
}

.yt-video-card:hover .yt-video-info h5 {
  color: var(--themeColor);
}

.yt-video-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(12px, 1.2vw, 13px);
  transition: color 0.3s ease;
}

.yt-video-card:hover .yt-video-info p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .yt-video-card {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .yt-video-card {
    height: 200px;
  }
}


/* ===========================
   RATING CARD
   =========================== */
.rating-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 210, 105, 0.12) 100%);
  border: 1.5px solid rgba(218, 46, 91, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rating-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(218, 46, 91, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.rating-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(248, 210, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.rating-number {
  background: linear-gradient(135deg, var(--themeColor) 0%, #ff6b8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  letter-spacing: -2px;
  display: inline-block;
  margin-right: 16px;
}

.rating-star {
  color: var(--secondaryColor);
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(248, 210, 105, 0.3));
  animation: twinkle 3s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 4px 12px rgba(248, 210, 105, 0.3));
  }
  50% {
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(248, 210, 105, 0.2));
  }
}

/* ===========================
   PRE-BRIDAL GROOMING SERVICES
   =========================== */
.pre-bridal-services-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 210, 105, 0.03) 100%);
}

.grooming-service-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 210, 105, 0.08) 100%);
  border: 1.5px solid rgba(218, 46, 91, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grooming-service-item:hover {
  transform: translateX(8px);
  border-color: rgba(218, 46, 91, 0.25);
  box-shadow: 0 8px 24px rgba(218, 46, 91, 0.1);
}

.services-number {
  width: clamp(30px, 3vw, 36px);
  height: clamp(30px, 3vw, 36px);
  background: linear-gradient(135deg, var(--themeColor) 0%, #ff6b8a 100%);
  font-size: clamp(16px, 2vw, 18px);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(218, 46, 91, 0.25);
}

.services-content {
  flex: 1;
}

.services-content h4 {
  color: var(--themeColor);
}

.services-content p {
  color: rgba(1, 5, 53, 0.75);
  line-height: 1.6;
}

/* ===========================
   CTA PREMIUM TRANSFORMATION
   =========================== */
.cta-premium-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 210, 105, 0.02) 100%);
}

.cta-premium-card {
  background:linear-gradient(135deg, rgb(244 158 172 / 7%) 0%, rgb(248 210 105 / 8%) 100%);
  border: 1.5px solid rgba(218, 46, 91, 0.15);
  box-shadow: 0 8px 24px rgba(218, 46, 91, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(218, 46, 91, 0.12);
  border-color: rgba(218, 46, 91, 0.2);
}

.cta-premium-card {
  padding: clamp(1.5rem, 4vw, 3rem) !important;
}

.cta-premium-card h2 {
  line-height: 1.2;
  font-size: clamp(28px, 5vw, 40px);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width:50px;
  height:50px;
  background: linear-gradient(135deg, var(--themeColor), #ff4d7d);
  flex-shrink: 0;
  box-shadow: 0px 6px 0px rgb(255 77 125 / 23%);
}

.info-text {
  flex: 1;
}

.contact-link {
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--textColor);
}

.contact-link:hover {
  color: var(--themeColor);
}

.contact-form-wrapper {
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(218, 46, 91, 0.15);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(218, 46, 91, 0.08);
}
.services-list a span{
   transition: color 0.3s ease;
}
.services-list a:hover span{
  color:var(--themeColor);
}
.tik-mark-icon{
  height: 16px;
  width: 16px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(53%) saturate(2905%) hue-rotate(322deg) brightness(110%) contrast(93%);
}
.section-img{
  height: 500px;
}
.nail-art-small-img img{
   height: 250px;
}