/* =========================
   SERVICE / SHOP LAYOUT
========================= */

/* Page Wrapper */
.embe-service-page-wrapper {
  background-color: #1f2122; /* Dark Theme */
  min-height: 100vh;
  padding-top: 140px; /* Space for fixed header */
  padding-bottom: 100px;
  color: #fff;
}

/* --- HERO SECTION --- */
.service-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.service-title {
  font-family: var(--font-heading, serif);
  font-size: 64px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.text-stroke {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.service-subtitle {
  font-family: var(--font-body, sans-serif);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* --- TOOLBAR / FILTERS --- */
.service-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.filter-group {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 50px;
  gap: 5px;
}

.filter-pill {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  color: #fff;
}

.filter-pill.active {
  background: #fff;
  color: #1f2122;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- GRID LAYOUT --- */
.service-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- SERVICE CARD --- */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Image */
.card-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .card-image {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #1f2122;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Content */
.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}

.card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1; 
}

/* Footer (Price + Button) */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.item-price {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.card-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #4a6c2f; 
  border-color: #4a6c2f;
  color: #fff;
}

@media (max-width: 768px) {
  .service-grid-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .service-title {
    font-size: 42px;
  }
}

/* =========================
   STORE HERO SLIDER
========================= */
.store-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #111;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.store-slides-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.store-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(0.7);
}

.store-slide.active {
  opacity: 1;
  z-index: 2;
}

.store-content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.store-content-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
  text-align: center;
  color: #eaddcf;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.store-content-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 5;
}

.store-title {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.store-subtitle {
  display: block;
  font-size: 25px;
  margin-top: 5px;
  opacity: 0.9;
  font-family: var(--font-body);
}

.meta-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px auto;
  opacity: 0.8;
}

.store-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #dccbb6;
  color: #1a1c1d;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #dccbb6;
  transition: all 0.3s ease;
}

.store-cta-btn:hover {
  background-color: transparent;
  color: #dccbb6;
}

.store-thumbnails {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.thumb-item {
  width: 70px;
  height: 50px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.6;
}

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

.thumb-item:hover,
.thumb-item.active {
  border-color: #dccbb6;
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .store-thumbnails { display: none; }
  .store-title { font-size: 3rem; }
  .store-hero { padding-bottom: 60px; }
  .store-content-container { height: auto; min-height: 300px; }
  .store-content-item { position: absolute; }
}

/* =========================
   PRICING SECTION STYLES
   (Used inside the modal now)
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: #242627;
  padding: 50px 40px;
  border-radius: 6px;
  text-align: center; /* You can set to left if needed */
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border: 1px solid #af2183;
  box-shadow: 0 0 0 1px #2b4c7e;
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}

.card-top {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 30px;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.card-age {
  display: block;
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.card-price .currency {
  font-size: 2rem;
  vertical-align: top;
  position: relative;
  top: 10px;
  margin-right: 2px;
}

.card-period {
  display: block;
  font-size: 0.9rem;
  color: #888;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.card-features li {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.5;
}

.check-icon {
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
}

.btn-pricing {
  display: block;
  width: 100%;
  background-color: #1a3b6e;
  color: #fff;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.pricing-card.featured .btn-pricing {
  background-color: #2b4c7e;
}

.btn-pricing:hover {
  background-color: #3b5bdb;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* =========================
   FAQ SECTION
========================= */
.faq-section {
  padding: 100px 20px;
  background: #0a0a0a;
  color: #fff;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  color: #fff;
}

.faq-question span:first-child {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content {
  padding-bottom: 24px;
}

.faq-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}

/* Fade-in Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-100 { transition-delay: 0.1s; }


/* =============================================
     SERVICE POPUP MODAL STYLES
============================================= */

/* 1. Overlay Background */
.service-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* 2. Full-Width Modal Container */
.service-popup-modal {
    background: #141414;
    width: 100vw;        /* Full width */
    height: 100vh;       /* Full height */
    position: relative;
    overflow: hidden;    
}

/* 3. Two-Column Layout */
.service-popup-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

/* 4. Left Column: Images */
.service-popup-images {
    flex: 1;
    position: relative;
    background: #000;
}

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

/* 5. Right Column: Container Setup */
.service-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow: hidden; /* Prevents the main container from scrolling */
    position: relative;
}

/* 5b. Scrollable Text Area */
.popup-scrollable-text {
    flex: 1;
    overflow-y: auto; 
    padding: 80px 60px 40px 60px; /* Clear the close button */
}

/* 5c. Fixed Bottom Area */
.popup-fixed-bottom {
    padding: 25px 60px 40px 60px;
    background: #141414; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}

/* 6. The "X" Close Button */
.service-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #fff;
    font-size: 24px; 
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px); 
}

.service-popup-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #141414; 
    transform: rotate(90deg); 
}

/* 7. Typography & Content Spacing */
.popup-stars {
    color: #c4a169;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.popup-rating {
    color: #fff;
    font-size: 1rem;
    margin-left: 5px;
}

.popup-title {
    font-family: var(--font-heading, serif);
    font-size: 3.5rem; 
    line-height: 1.1;
    margin-bottom: 20px;
}

.popup-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-family: var(--font-body, sans-serif);
    font-weight: 600;
    color: #c4a169;
}

.popup-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.popup-section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.popup-ideal-for {
    margin-bottom: 40px;
}

.popup-ideal-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.popup-whats-included {
    margin-bottom: 50px;
}

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

.popup-includes-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.popup-includes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a169;
    font-weight: bold;
}

/* 8. Book Now Button */
.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #af2283;
    color: #fff;
    padding: 16px 40px; 
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.popup-cta-btn:hover {
    background: #d44c9d;
    transform: translateY(-2px);
}

/* 9. Mobile Responsiveness */
@media (max-width: 900px) {
    .service-popup-inner {
        flex-direction: column;
    }
    
    .service-popup-images {
        flex: 0 0 35vh; 
    }
    
    .service-popup-content {
        padding: 0; 
    }
    
    .popup-scrollable-text {
        padding: 40px 25px 30px 25px; 
    }

    .popup-fixed-bottom {
        padding: 20px 25px 30px 25px;
    }

    .popup-title {
        font-size: 2.5rem;
    }
    
    .service-popup-close {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.5); 
        border: none;
    }
}
/* =============================================
     SERVICE POPUP MODAL STYLES (BULLETPROOF)
============================================= */

/* 1. Global Reset inside the Modal to prevent theme conflicts */
.service-popup-modal,
.service-popup-modal *,
.service-popup-modal *::before,
.service-popup-modal *::after {
    box-sizing: border-box !important;
}

/* 2. Overlay Background */
.service-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* 3. Full-Width Modal Container */
/* 3. Almost Full-Width Modal Container */
.service-popup-modal {
    background: #141414;
    width: 95vw;          /* Leaves a 2.5% gap on the left and right */
    max-width: 1600px;    /* Optional: stops it from getting too absurdly wide on ultra-wide monitors */
    height: 90vh;         /* Leaves a 5% gap on the top and bottom */
    border-radius: 24px;  /* Smooth rounded corners */
    position: relative;   /* Allows the overlay's flexbox to center it perfectly */
    overflow: hidden;     /* Keeps the image and content safely inside the rounded corners */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* Adds a deep floating shadow */
}

/* 4. Two-Column Layout */
.service-popup-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

/* 5. Left Column: Images (Strictly 50%) */
.service-popup-images {
    flex: 0 0 50%; 
    height: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.popup-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important; /* Overrides global theme borders */
}

/* 6. Right Column: Container Setup (Strictly 50%) */
.service-popup-content {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #141414;
    color: #fff;
    overflow: hidden; /* Prevents parent from scrolling */
    position: relative;
}

/* 7. Scrollable Text Area (CRITICAL FIX) */
.popup-scrollable-text {
    flex: 1 1 auto;
    min-height: 0; /* CRITICAL: Prevents flex child from overflowing parent */
    overflow-y: auto; 
    overflow-x: hidden !important; /* KILLS the horizontal scrollbar */
    padding: 80px 60px 40px 60px;
    width: 100%;
}

/* 8. Fixed Bottom Area (Where the button lives) */
.popup-fixed-bottom {
    flex: 0 0 auto; /* CRITICAL: Prevents button area from shrinking */
    width: 100%;
    padding: 25px 60px 40px 60px;
    background: #141414; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}

/* 9. The "X" Close Button */
.service-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #fff;
    font-size: 24px; 
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px); 
}

.service-popup-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #141414; 
    transform: rotate(90deg); 
}

/* 10. Typography & Content Spacing */
.popup-stars {
    color: #c4a169; 
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.popup-rating {
    color: #fff;
    font-size: 1rem;
    margin-left: 5px;
}

.popup-title {
    font-family: var(--font-heading, serif);
    font-size: 3.5rem; 
    line-height: 1.1;
    margin-bottom: 20px;
}

.popup-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-family: var(--font-body, sans-serif);
    font-weight: 600;
    color: #c4a169;
}

.popup-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.popup-section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.popup-ideal-for {
    margin-bottom: 40px;
}

.popup-ideal-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.popup-whats-included {
    margin-bottom: 50px;
}

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

.popup-includes-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.popup-includes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a169;
    font-weight: bold;
}

/* 11. Book Now Button (Styled like your transparent Icon-box) */
.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background-color: transparent;
    border: 1.5px solid #af2283;
    color: #fff;
    padding: 8px 8px 8px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
    width: fit-content;
}

.popup-cta-btn .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #af2283;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.popup-cta-btn:hover {
    background-color: rgba(175, 34, 131, 0.18);
    border-color: #d44c9d;
    transform: translateY(-2px);
}

.popup-cta-btn:hover .arrow-circle {
    background: #d44c9d;
    transform: translateX(3px);
}

/* 12. Mobile Responsiveness */
@media (max-width: 900px) {
    .service-popup-inner {
        flex-direction: column;
    }
    
    .service-popup-images {
        flex: 0 0 35%; /* Fixed 35% height for image on mobile */
        width: 100%;
    }
    
    .service-popup-content {
        flex: 0 0 65%; /* Remaining 65% for content */
        width: 100%;
    }
    
    .popup-scrollable-text {
        padding: 30px 25px 20px 25px; 
    }

    .popup-fixed-bottom {
        padding: 20px 25px 30px 25px;
    }

    .popup-title {
        font-size: 2.5rem;
    }
    
    .service-popup-close {
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.6); 
        border: none;
    }
}

/* =============================================
     SERVICE POPUP MODAL STYLES (BULLETPROOF)
============================================= */

/* 1. Global Reset inside the Modal to prevent theme conflicts */
.service-popup-modal,
.service-popup-modal *,
.service-popup-modal *::before,
.service-popup-modal *::after {
    box-sizing: border-box !important;
}

/* 2. Overlay Background */
.service-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* 3. Almost Full-Width Modal Container */
.service-popup-modal {
    background: #141414; 
    width: 95vw;          
    max-width: 1600px;    
    height: 90vh;         
    border-radius: 24px;  
    position: relative;   
    overflow: hidden;     
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
}

/* 4. Two-Column Layout */
.service-popup-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

/* 5. Left Column: Images (Strictly 50%) */
.service-popup-images {
    flex: 0 0 50%; 
    height: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.popup-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important; 
}

/* 6. Right Column: Container Setup (Strictly 50%) */
.service-popup-content {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #141414;
    color: #fff;
    overflow: hidden; 
    position: relative;
}

/* 7. Scrollable Text Area (CRITICAL FIX FOR SCROLLBARS) */
.popup-scrollable-text {
    flex: 1 1 auto;
    min-height: 0; /* CRITICAL: Prevents text from pushing button off screen */
    overflow-y: auto; 
    overflow-x: hidden !important; /* KILLS horizontal scrolling */
    padding: clamp(40px, 5vw, 80px) clamp(30px, 5vw, 60px) 40px clamp(30px, 5vw, 60px); /* Dynamic padding prevents squishing */
}

/* 8. Fixed Bottom Area */
.popup-fixed-bottom {
    flex: 0 0 auto; 
    width: 100%;
    padding: clamp(15px, 3vw, 25px) clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px) clamp(30px, 5vw, 60px);
    background: #141414; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
	justify-content:center;
	align-items:center
}

/* 9. The "X" Close Button */
.service-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #fff;
    font-size: 20px; 
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px); 
}

.service-popup-close:hover {
    background: #fff;
    color: #000; 
    transform: rotate(90deg); 
}

/* 10. Typography & Content Spacing */
.popup-title {
    font-family: var(--font-heading, serif);
    font-size: clamp(2rem, 4vw, 3.5rem); /* Prevents massive text from breaking layout */
    line-height: 1.1;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.popup-stars { color: #c4a169; font-size: 1.2rem; margin-bottom: 15px; }
.popup-rating { color: #fff; font-size: 1rem; margin-left: 5px; }
.popup-meta { display: flex; gap: 20px; margin-bottom: 30px; font-weight: 600; color: #c4a169; }
.popup-description { font-size: 1.15rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; }
.popup-section-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.5); margin-bottom: 15px; }
.popup-ideal-for { margin-bottom: 40px; }
.popup-ideal-text { font-size: 1rem; line-height: 1.5; color: #fff; }
.popup-whats-included { margin-bottom: 50px; }

.popup-includes-list { list-style: none; padding: 0; margin: 0; }
.popup-includes-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px; 
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}
.popup-includes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a169;
    font-weight: bold;
}

/* 11. Modal Pricing Overrides (Fixes squishing and broken badges) */
.popup-pricing-grid {
    grid-template-columns: 1fr !important; /* Forces cards to stack securely inside the narrow modal */
    gap: 20px;
}

.popup-pricing-grid .pricing-card {
    padding: 35px 25px; /* Adjust padding to fit cleanly */
}

.pricing-card.featured::before {
    white-space: nowrap !important; /* FIXES THE BROKEN BADGE TEXT WRAPPING */
}

/* 12. Book Now Button (Styled exactly like your screenshot) */
.popup-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes text left, arrow right */
    background-color: transparent;
    border: 1px solid #af2283; /* Pink outline */
    color: #fff;
    padding: 6px 6px 6px 24px; /* Matches layout */
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%; /* Full width container */
}

.popup-cta-btn .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #af2283; /* Solid pink circle */
    color: #fff;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.popup-cta-btn:hover {
    background-color: rgba(175, 34, 131, 0.1);
}
.popup-cta-btn:hover .arrow-circle {
    transform: translateX(-4px); /* Subtle hover animation */
}

/* 13. Mobile Responsiveness */
@media (max-width: 1024px) {
    .service-popup-modal {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .service-popup-inner {
        flex-direction: column;
    }
    
    .service-popup-images {
        flex: 0 0 35vh; /* Fixed 35% height for image on mobile */
        width: 100%;
    }
    
    .service-popup-content {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .service-popup-close {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.5); 
        border: none;
    }
}
.icon-box.text-only {
    padding: 14px 32px !important;
}

#service-popup-overlay .icon-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    background-color: rgba(10, 10, 10, 0.55) !important;
    backdrop-filter: blur(6px) !important;
    border: 1.5px solid #af2283 !important;
    color: #fff !important;
    padding: 8px 8px 8px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease !important;
    width: 60% !important;
    cursor: pointer;
    position: relative;
}
/* Add some padding so the text doesn't touch the scrollbar */
.popup-scrollable-text {
    padding-right: 15px; 
    
    /* Firefox Support */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Chrome, Edge, and Safari Support */
.popup-scrollable-text::-webkit-scrollbar {
    width: 6px; /* Makes the scrollbar much thinner */
}

.popup-scrollable-text::-webkit-scrollbar-track {
    background: transparent; /* Hides the ugly gray background track */
}

.popup-scrollable-text::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3); /* Soft white/gray thumb */
    border-radius: 10px; /* Rounds the edges */
}

.popup-scrollable-text::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5); /* Gets slightly brighter when hovered */
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES 
========================================= */

/* 1. Prevent font ascenders (swirly letters) from clipping globally */
.section-title, 
.animate-title, 
.store-title, 
.popup-title {
    overflow: visible !important;
    padding-top: 15px !important;
    padding-bottom: 10px !important;
}

@media (max-width: 768px) {
    
    /* 2. Fix massive titles overflowing the screen */
    .popup-title {
        font-size: clamp(2rem, 10vw, 2.5rem) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        line-height: 1.1 !important;
    }
    
    .store-title {
        font-size: clamp(2.2rem, 10vw, 3rem) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 10px;
    }

    /* 3. Fix Pricing Cards squishing on mobile */
    .popup-pricing-grid .pricing-card {
        padding: 30px 20px !important;
    }
    .card-name {
        font-size: 1.8rem !important;
    }
    .card-price {
        font-size: 3.2rem !important; /* Shrinks the massive $99 */
    }
    .pricing-card.featured::before {
        font-size: 0.65rem !important;
        padding: 5px 12px !important;
        white-space: nowrap !important;
    }

    /* 4. Fix Popup Layout & Button Width */
    #service-popup-overlay .icon-box {
        width: 100% !important; /* Overrides the 60% desktop width */
    }
    
    .popup-scrollable-text {
        padding: 25px 20px 15px 20px !important;
    }
    
    .popup-fixed-bottom {
        padding: 15px 20px 25px 20px !important;
    }

    /* 5. Fix "Life is a dance" / Embrace card text hitting the edges */
    .metric-card__bottom {
        font-size: 15px !important; /* Slightly smaller text for fit */
        line-height: 1.5 !important;
        left: 12px !important;  /* Brings text away from the left edge */
        right: 12px !important; /* Brings text away from the right edge */
    }
    .metric-card__num {
        font-size: clamp(32px, 8vw, 44px) !important; /* Shrink title slightly */
    }
}