/* ======================================================
   GLOBAL STYLES
====================================================== */

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

section {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}





/* ======================================================
   HERO SECTION
====================================================== */



.hero-section {
  background: linear-gradient(135deg, #fff6f8, #fde8ec);
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-section .lead {
  font-size: 18px;
  margin-bottom: 25px;
}

.para{
  text-align: justify;
}

.hero-section video {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.btn-dark {
  background: #b86b77;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 500;
}

.btn-dark:hover {
  background: #9e5662;
}








/* ================= HERO SECTION ================= */
.hero-section {
    font-family: 'Roboto', sans-serif;
    color: #222;
    background: linear-gradient(135deg, #fff0f5, #ffe4e1); /* soft gradient */
    min-height: 90vh; /* fill screen height */
    display: flex;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
}


/* Video styling */
.hero-section video {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section h5 {
        font-size: 0.9rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section h5 {
        font-size: 0.8rem;
    }
    .hero-section .lead, .hero-section p {
        text-align: justify;
    }
    .hero-section .btn-dark {
        width: 100%;
    }
}



/* ======================================================
   ABOUT SECTION – FEMININE DECORATIVE DESIGN
====================================================== */

.about-section {
  background: linear-gradient(135deg, #fff6f8, #fdecef);
  position: relative;
  overflow: hidden;
}

.about-text{
  text-align: justify;
}
/* Main decorative box */
.about-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 45px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}


/* Gradient luxury border effect */
.about-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;

  background: linear-gradient(
    135deg,
    #b86b77,
    #e6a4b4,
    #b86b77
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


/* Decorative side line near heading */
#about h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

#about h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 70px;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(90deg, #b86b77, #f5c1cc);
}


/* Subtitle */
#about h5 {
  color: #8b6b71;
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* Paragraph */
#about p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
}


/* Carousel styling */
#about .carousel-inner {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

#about img {
  transition: 0.4s ease;
      width: 100%;
    height: 100%;
    object-fit: cover;  /* keeps image aspect ratio and fills the frame */
    object-position: center center; /* focus on the center of the image */
    display: block;
}

#about img:hover {
  transform: scale(1.05);
}


/* Button styling */
#about .btn-dark {
  background: #b86b77;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
}

#about .btn-dark:hover {
  background: #9e5662;
}

/* =========================================
   FIX ABOUT IMAGE HEIGHT BALANCE
========================================= */

/* control carousel height */
#about .carousel-inner {
  height: 520px;          /* desktop height */
}

/* image fit properly without stretching */
#about .carousel-inner img {
  height: 100%;
  width: 50%;
  object-fit: cover;      /* crop nicely */
}


/* tablet */
@media (max-width: 992px) {
  #about .carousel-inner {
    height: 550px;
  }
}


/* mobile */
@media (max-width: 576px) {
  #about .carousel-inner {
    height: 360px;
  }
}


/* ======================================================
   EXTRA DECORATIVE CIRCLES (soft beauty look)
====================================================== */

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.about-section::before {
  width: 200px;
  height: 200px;
  background: #f7d6dc;
  top: -60px;
  left: -60px;
}

.about-section::after {
  width: 160px;
  height: 160px;
  background: #f3c2cb;
  bottom: -50px;
  right: -50px;
}



/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 768px) {

  .about-box {
    padding: 35px 25px;
  }

  #about h2 {
    font-size: 26px;
  }

}




/* ======================================================
   ACHIEVEMENTS SECTION
====================================================== */

#achievements {
  background: #111;
  color: #fff;
  padding: 80px 0;
}

#achievements h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

#achievements p {
  color: #bbb;
}

#achievements .row > div {
  padding: 25px 10px;
}

#achievements h3 {
  font-size: 42px;
  font-weight: 700;
  color: #b86b77;
}

#achievements p {
  font-size: 15px;
  margin-top: 8px;
}



/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

/* Tablet */
@media (max-width: 992px) {

  .hero-section h1 {
    font-size: 34px;
  }

  #about h2 {
    font-size: 30px;
  }

  #achievements h3 {
    font-size: 32px;
  }
}


/* Mobile */
@media (max-width: 576px) {

  .hero-section {
    text-align: center;
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .hero-section .lead {
    font-size: 15px;
  }

  #about {
    padding: 60px 0;
  }

  #achievements {
    padding: 60px 0;
  }

  #achievements h3 {
    font-size: 26px;
  }
}










/* =====================================================
   SERVICES SECTION – LUXURY BRIDAL STYLE
===================================================== */

.services-section {
  padding: 90px 90px;
  background: linear-gradient(135deg, #fff6f8, #fff, #fff2f4);
  position: relative;
}


/* subtle decorative glow background */
.services-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #f8cdd3;
  border-radius: 50%;
  filter: blur(160px);
  top: -120px;
  left: -120px;
  opacity: 0.5;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #eab1ba;
  border-radius: 50%;
  filter: blur(150px);
  bottom: -120px;
  right: -120px;
  opacity: 0.4;
}


/* =====================================================
   TITLE STYLING
===================================================== */

.services-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-section p {
  color: #666;
  font-size: 1rem;
}



/* =====================================================
   CARD LAYOUT
===================================================== */

.service-card-pro {
  background: #ffd9d9eb;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  min-height: 460px;   
  border: 2px solid rgb(0, 0, 0);

  box-shadow: 0 15px 40px rgba(0,0,0,0.07);

  transition: all 0.45s ease;
  position: relative;
}


/* luxury glowing border on hover */
.service-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, #b86b77, #f2b6be, #b86b77);
  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.service-card-pro:hover::before {
  opacity: 1;
}

/* 
.service-card-pro:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
} */



/* =====================================================
   IMAGE AREA
===================================================== */

.service-img-wrap {
  height: 550px;
  overflow: hidden;
  position: relative;
}

/* image zoom */
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card-pro:hover img {
  transform: scale(1.12);
}


/* soft gradient overlay on image */
.service-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}



/* =====================================================
   CONTENT AREA
===================================================== */

.service-content {
  padding: 28px 26px 32px;
}

/* heading */
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

/* description */
.service-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
}



/* =====================================================
   BUTTON STYLE (Luxury Bridal Feel)
===================================================== */

.service-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  color: #fff;

  background: linear-gradient(135deg, #b86b77, #e6a3ac);

  transition: all 0.3s ease;
}

/* hover */
.service-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(0.05);
}
.service-card .service-btn {
  margin-top: auto;
}




/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 992px) {
  .service-img-wrap {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .service-img-wrap {
    height: 420px;
  }

  .service-content {
    padding: 22px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 568px) {
  .services-section {
    padding: 60px 0;
  }

  .service-img-wrap {
    height: 320px;
  }
}
/* ==================================
   MOST BOOKED RIBBON BADGE
================================== */

.service-badge {
  position: absolute;
  top: 18px;
  left: -45px;
  z-index: 10;

  background: linear-gradient(135deg, #b86b77, #e8a3ac);
  color: #fff;

  padding: 8px 55px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  transform: rotate(-45deg);

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border-radius: 6px;
}


/* soft glow */
.service-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(184, 107, 119, 0.8);
  opacity: 0.6;
}
/* ==================================
   PREMIUM KNOW MORE BUTTON
================================== */

.service-btn {
  position: relative;
  display: inline-block;

  padding: 12px 30px;
  border-radius: 50px;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;

  color: #fff;

  background: linear-gradient(135deg, #b86b77, #e9aab3, #b86b77);
  background-size: 200% 200%;

  transition: all 0.4s ease;

  /* box-shadow: 0 8px 20px rgba(184, 107, 119, 0.35); */
  overflow: hidden;
}


/* gradient animation */
.service-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(184, 107, 119, 0.55);
  color: #fff;
}


/* shine animation */
.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );

  transform: skewX(-25deg);
  transition: 0.7s;
}

.service-btn:hover::before {
  left: 120%;
}


/* click effect */
.service-btn:active {
  transform: scale(0.96);
}



/* FILTER BUTTONS */
.filter-btn {
  background: transparent;
  border: 1px solid #c98a96;
  color: #c98a96;
  padding: 8px 22px;
  margin: 5px;
  border-radius: 30px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #c98a96;
  color: #fff;
}

/* PORTFOLIO ITEMS */




.portfolio-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.portfolio-item img {
  width: 400px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Zoom */
.portfolio-item:hover img {
  transform: scale(1.12);
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

#lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}












/* =========================================
   WHY CHOOSE US - PREMIUM DECORATION
========================================= */

#why-choose-us {
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
  position: relative;
}

/* heading */
#why-choose-us h2 {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

/* CARD */
.why-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 25px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.45s ease;

  position: relative;
  overflow: hidden;

  opacity: 0;                 /* for animation */
  transform: translateY(60px);
}

/* soft glow border */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;

  background: linear-gradient(135deg, #f3c6cc, #e9aab3, #f3c6cc);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* hover effect */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(201,138,150,0.25);
}

/* ICON CIRCLE */
.why-icon {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 26px;
  color: #fff;

  background: linear-gradient(135deg, #c98a96, #e9aab3);
  box-shadow: 0 8px 20px rgba(201,138,150,0.35);

  transition: 0.4s;
}

/* icon animation on hover */
.why-card:hover .why-icon {
  transform: scale(1.12) rotate(5deg);
}

/* text */
.why-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================
   SCROLL ANIMATION ACTIVE STATE
========================================= */

.why-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(.17,.67,.43,.99);
}







/* =========================================
   TESTIMONIAL SECTION (Luxury Feminine Look)
========================================= */

#testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 50%, #fff2f4 100%);
  padding: 90px 0;
}


/* =========================================
   Decorative soft makeup glow shapes
========================================= */

.testimonial-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: #f3c6cc;
  top: -120px;
  left: -150px;
}

.shape-2 {
  width: 380px;
  height: 380px;
  background: #e9aab3;
  bottom: -140px;
  right: -150px;
}


/* keep content above shapes */
#testimonials .container {
  position: relative;
  z-index: 2;
}


/* =========================================
   HEADING
========================================= */

#testimonials h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

#testimonials p {
  font-size: 1rem;
  color: #777;
}


/* =========================================
   SLIDER LAYOUT (ONE CARD ONLY)
========================================= */

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: auto;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}


/* =========================================
   CARD (FULL WIDTH PREMIUM)
========================================= */

.testimonial-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

/* active card (zoom effect from JS) */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1.05);
}


/* =========================================
   BORDER FRAME (Luxury glass look)
========================================= */

.testimonial-border {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);

  border-radius: 26px;
  padding: 50px 40px;

  position: relative;

  max-width: 720px;
  width: 100%;

  text-align: center;

  box-shadow: 0 25px 60px rgba(0,0,0,0.10);

  transition: 0.4s ease;
}


/* luxury gradient border */
.testimonial-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 2px;

  background: linear-gradient(135deg, #f3c6cc, #e9aab3, #f3c6cc);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}


/* =========================================
   TEXT STYLING
========================================= */

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-name {
  font-weight: 700;
  color: #c98a96;
  letter-spacing: 0.5px;
}


/* =========================================
   STAR RATINGS
========================================= */

.testimonial-stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}


/* =========================================
   NAVIGATION BUTTONS (Premium round)
========================================= */

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #c98a96, #e9aab3);
  color: #fff;

  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 10px 30px rgba(201,138,150,0.35);

  transition: 0.3s ease;
  z-index: 5;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.12);
}


/* left & right */
.prev-btn { left: -25px; }
.next-btn { right: -25px; }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .testimonial-border {
    padding: 35px 22px;
  }

  .testimonial-nav {
    display: none;
  }

}


/* =========================================
   FAQ SECTION – Luxury Feminine Style
========================================= */

#faq {
  background: linear-gradient(180deg, #fff8f9 0%, #ffffff 50%, #fff3f5 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}


/* =========================================
   Container width (premium centered look)
========================================= */

.faq-accordion {
  max-width: 850px;
}


/* =========================================
   CARD STYLE
========================================= */

.faq-item {
  background: transparent;
  border: none;
  margin-bottom: 18px;
}


/* =========================================
   BUTTON (Question)
========================================= */

.faq-btn {
  background: linear-gradient(135deg, #ffffff, #fff6f7);
  border-radius: 18px !important;
  padding: 20px 26px;

  font-weight: 600;
  font-size: 1rem;

  box-shadow: 0 8px 25px rgba(201, 138, 150, 0.12);

  border: 1.5px solid rgba(233,170,179,0.35);

  transition: all 0.35s ease;

  position: relative;
}


/* hover glow */
.faq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201,138,150,0.25);
}


/* remove default bootstrap arrow */
.faq-btn::after {
  display: none !important;
}


/* =========================================
   PLUS / MINUS ICON
========================================= */

.faq-btn::before {
  content: "+";
  position: absolute;
  right: 22px;

  font-size: 22px;
  font-weight: 700;

  color: #c98a96;
  transition: 0.3s ease;
}

/* when open */
.faq-btn:not(.collapsed)::before {
  content: "–";
  transform: rotate(180deg);
}


/* =========================================
   ACTIVE OPEN STATE
========================================= */

.faq-btn:not(.collapsed) {
  background: linear-gradient(135deg, #ffe9ec, #fff6f7);
  color: #c98a96;

  box-shadow: 0 15px 40px rgba(201,138,150,0.35);

  border: 1.5px solid #e9aab3;
}


/* =========================================
   ANSWER BODY
========================================= */

.accordion-body {
  background: rgba(255,255,255,0.95);

  border-radius: 0 0 18px 18px;

  padding: 20px 26px 26px;

  line-height: 1.8;
  color: #555;

  border: 1.5px solid rgba(233,170,179,0.35);
  border-top: none;

  animation: faqFade 0.35s ease;
}


/* smooth fade animation */
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   Remove Bootstrap default styles
========================================= */

.accordion-item {
  border: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}


/* =========================================
   Feminine decorative glow shapes
========================================= */

#faq::before,
#faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}

#faq::before {
  width: 350px;
  height: 350px;
  background: #f3c6cc;
  top: -120px;
  left: -120px;
}

#faq::after {
  width: 300px;
  height: 300px;
  background: #e9aab3;
  bottom: -120px;
  right: -120px;
}


/* keep content above glow */
#faq .container {
  position: relative;
  z-index: 2;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .faq-btn {
    font-size: 0.95rem;
    padding: 16px 20px;
  }

  .accordion-body {
    font-size: 0.95rem;
  }

}


/* =========================================
   LUXURY CTA BANNER
========================================= */

#cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #fff2f4, #ffffff, #fff6f8);
}


/* =========================================
   Glow Decorations
========================================= */

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  z-index: 0;
}

.glow-1 {
  width: 420px;
  height: 420px;
  background: #f3c6cc;
  top: -120px;
  left: -140px;
}

.glow-2 {
  width: 380px;
  height: 380px;
  background: #e9aab3;
  bottom: -140px;
  right: -140px;
}


/* =========================================
   CTA BOX
========================================= */

.cta-box {
  position: relative;
  z-index: 2;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);

  padding: 65px 45px;
  border-radius: 32px;

  max-width: 900px;
  margin: auto;

  box-shadow: 0 30px 80px rgba(201,138,150,0.25);

  border: 2px solid rgba(233,170,179,0.4);
}


/* =========================================
   TEXT
========================================= */

.cta-box h2 {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 18px;
}

.cta-subtext {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.35s ease;
  border: none;
}


/* Primary */
.primary-btn {
  background: linear-gradient(135deg, #c98a96, #e9aab3);
  color: #fff;
  box-shadow: 0 10px 30px rgba(201,138,150,0.45);
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(201,138,150,0.6);
  color: #fff;
}


/* Secondary */
.secondary-btn {
  background: transparent;
  color: #c98a96;
  border: 2px solid #e9aab3;
}

.secondary-btn:hover {
  background: #ffe9ec;
  transform: translateY(-3px);
  color: #c98a96;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .cta-box {
    padding: 45px 25px;
  }

  .cta-box h2 {
    font-size: 1.9rem;
  }

}
/* =========================================
   BACKGROUND MARQUEE TEXT (Luxury)
========================================= */

.cta-marquee {
  position: absolute;
  width: 100%;
  top: 45%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06; /* very subtle */
}

.cta-marquee-track {
  white-space: nowrap;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c98a96;

  animation: marqueeScroll 35s linear infinite;
}

/* slow premium movement */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =========================================
   SHIMMER LIGHT SWEEP EFFECT
========================================= */

.shimmer-effect {
  position: relative;
  overflow: hidden;
}

/* moving light */
.shimmer-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.5) 50%,
    transparent 100%
  );

  transform: skewX(-20deg);
  animation: shimmerMove 5s ease-in-out infinite;
}

@keyframes shimmerMove {
  0%   { left: -120%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}


/* =========================================
   Keep CTA box above marquee
========================================= */

.cta-box {
  position: relative;
  z-index: 2;
}


/* =========================================
   MOBILE TWEAKS
========================================= */

@media (max-width: 768px) {
  .cta-marquee-track {
    font-size: 38px;
  }
}



/* =========================================
   FLOAT ACTIONS WRAPPER (all buttons together)
========================================= */

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 25px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* =========================================
   BASE BUTTON STYLE
========================================= */

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;

  border: none;
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}


/* Hover lift */
.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}


/* =========================================
   WhatsApp
========================================= */

.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}


/* =========================================
   Instagram (feminine gradient)
========================================= */

.instagram {
  background: linear-gradient(135deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}


/* =========================================
   Back To Top (brand color)
========================================= */

.top-btn {
  background: linear-gradient(135deg, #c98a96, #e9aab3);
}


/* =========================================
   MOBILE SIZE
========================================= */

@media (max-width: 768px) {

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

}
/* =========================================
   TOOLTIP STYLE (Luxury Feminine)
========================================= */

.float-btn {
  position: relative;
}


/* tooltip bubble */
.float-btn::after {
  content: attr(data-tooltip);

  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  background: linear-gradient(135deg, #c98a96, #e9aab3);
  color: #fff;

  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;

  border-radius: 20px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  box-shadow: 0 6px 18px rgba(201,138,150,0.35);

  transition: all 0.3s ease;
}


/* small arrow */
.float-btn::before {
  content: "";
  position: absolute;

  right: 52px;
  top: 50%;
  transform: translateY(-50%);

  border: 6px solid transparent;
  border-left-color: #e9aab3;

  opacity: 0;
  transition: 0.3s ease;
}


/* show on hover */
.float-btn:hover::after,
.float-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/* =========================================
   MOBILE (always hidden for space)
========================================= */

@media (max-width: 768px) {
  .float-btn::after,
  .float-btn::before {
    display: none;
  }
}


