/* =========================================
   VARIABLES & GLOBAL UTILITIES
   ========================================= */
body.site {
    --primary: #DB6A9E;
    --primary-dark: #94619C;
    --secondary: #FFF0F7;
    --text-main: #000000;
    --text-dark: #000000;
    --gray-light: #f9f9f9;
}

.section-padding {
    padding: 40px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 24px;
}

.section-title {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 40px;
}

.gradient-text {
    background:  var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Base Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 106, 158, 0.3);
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-read-more .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: var(--primary-dark);
}

.btn-read-more:hover .arrow {
    transform: translateX(5px);
}

/* =========================================
   UNIVERSAL SLIDER BUTTONS
   ========================================= */
/* Forces buttons to ALWAYS be side-by-side horizontally */
.wow-nav-buttons,
.posts-nav-buttons {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 12px;
}

.wow-nav-btn,
.post-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #111;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wow-nav-btn:hover,
.post-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* =========================================
   1. HERO SLIDER
   ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block;
    color: #fff;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slide-content h2,
h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0px 4px 12px rgba(0, 0, 0, 0.6);
}

.slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.slider__nav:hover {
    background: var(--primary);
}

.slider__prev {
    left: 18px;
}

.slider__next {
    right: 18px;
}

.slider__dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.1);
}


/* =========================================
   2. BOUTIQUE SERVICES SLIDER (Arch Design)
   ========================================= */
.boutique-services-section {
    background-color: #fdfcfb;
    overflow: hidden;
}

.relative-container {
    position: relative;
}

.boutique-section-header {
    margin-bottom: 50px;
}

.boutique-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.boutique-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.boutique-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #111;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    z-index: 10;
}

.boutique-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

.services-slider-window {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 60px;
    margin: 0 15px;
}

.services-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.boutique-slide-wrapper {
    flex: 0 0 calc(100% / 4);
    padding: 0 15px;
    box-sizing: border-box;
}

.boutique-service-link {
    display: block;
    text-decoration: none;
    outline: none;
}

.boutique-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boutique-img-arch {
    width: 100%;
    height: 340px;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #eee;
}

.boutique-img-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.boutique-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(219, 106, 158, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.boutique-item:hover .boutique-img-arch {
    transform: translateY(-10px);
}

.boutique-item:hover .boutique-img-arch img {
    transform: scale(1.08);
}

.boutique-item:hover .boutique-img-overlay {
    opacity: 1;
}

.boutique-info {
    background: #ffffff;
    width: 85%;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s;
    overflow: hidden;
}

.boutique-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 75px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    line-height: 1;
    font-family: Georgia, serif;
    transition: color 0.5s;
}

.boutique-name {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: color 0.3s;
}

.boutique-action {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.boutique-action .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.boutique-item:hover .boutique-info {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(219, 106, 158, 0.12);
}

.boutique-item:hover .boutique-number {
    color: rgba(219, 106, 158, 0.08);
}

.boutique-item:hover .boutique-name {
    color: var(--primary);
}

.boutique-item:hover .boutique-action {
    color: var(--primary);
}

.boutique-item:hover .boutique-action .arrow {
    transform: translateX(5px);
}


/* =========================================
   3. IMMERSIVE FEATURES & BENEFITS
   ========================================= */
.immersive-features-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.immersive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.immersive-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.immersive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.92) 0%, rgba(30, 15, 25, 0.88) 100%);
}

.immersive-content {
    position: relative;
    z-index: 2;
}

.immersive-header {
    margin-bottom: 60px;
}

.immersive-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.immersive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 30px 15px;
    text-align: center;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.glass-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(219, 106, 158, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(219, 106, 158, 0.3);
    transition: background 0.4s ease;
}

.glass-card:hover .glass-icon-wrapper {
    background: var(--primary);
}

.glass-icon {
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
    transition: color 0.4s ease;
}

.glass-card:hover .glass-icon {
    color: #ffffff;
}

.glass-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   4. EXCLUSIVE OFFERS (WOW DESIGN)
   ========================================= */
.wow-offers-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-light) 100%);
    overflow: hidden;
}

.wow-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.wow-slider-window {
    overflow: hidden;
    margin: 0 -15px;
    padding: 20px 0 50px;
}

.wow-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.wow-card-wrapper {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.wow-card-link {
    display: block;
    text-decoration: none;
    outline: none;
    height: 100%;
}

.wow-offer-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
}

.wow-offer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(219, 106, 158, 0.2);
    border-color: rgba(219, 106, 158, 0.2);
}

.wow-offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 10;
    pointer-events: none;
}

.wow-offer-card:hover::after {
    left: 150%;
    transition: all 0.7s ease;
}

.wow-img-box {
    position: relative;
    height: 240px;
    overflow: visible;
}

.wow-img-box img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    border-radius: 24px 24px 0 0;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wow-offer-card:hover .wow-img-box img {
    transform: scale(1.08);
}

.wow-badge {
    position: absolute;
    bottom: 0;
    right: 24px;
    transform: translateY(50%);
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 30px;
    border: 4px solid #fff;
    box-shadow: 0 8px 15px rgba(219, 106, 158, 0.3);
    z-index: 5;
    transition: transform 0.4s ease, background 0.4s ease;
    letter-spacing: 1px;
}

.wow-offer-card:hover .wow-badge {
    background: #111111;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(50%) scale(1.05);
}

.wow-info {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.wow-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.3s;
}

.wow-offer-card:hover .wow-title {
    color: var(--primary);
}

.wow-desc {
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.wow-btn {
    background: var(--gray-light);
    color: var(--text-dark);
    border-radius: 16px;
    padding: 12px 12px 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: auto;
}

.wow-arrow {
    width: 34px;
    height: 34px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wow-offer-card:hover .wow-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(219, 106, 158, 0.25);
}

.wow-offer-card:hover .wow-arrow {
    transform: translateX(-5px);
    color: var(--text-dark);
}


/* =========================================
   5. PREMIUM TESTIMONIALS (Full Width)
   ========================================= */
.premium-testimonials-section {
    background-color: #fdfcfb;
    position: relative;
}

.modern-testimonial-window {
    overflow: hidden;
    margin: 0 -15px;
    padding: 10px 0 40px;
}

.modern-testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.modern-test-card-wrapper {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.modern-test-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
}

.modern-test-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(219, 106, 158, 0.1);
    border-color: var(--primary);
}

.test-quote-icon {
    font-family: Georgia, serif;
    font-size: 80px;
    color: #fbd1e5;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.5;
    z-index: 1;
}

.test-body {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.test-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.test-meta h5 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.test-meta p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

.test-stars {
    margin-left: auto;
    color: #f39c12;
    font-size: 12px;
}


/* =========================================
   6. RECENT POSTS (EDITORIAL DESIGN)
   ========================================= */
.recent-posts-section {
    background-color: #ffffff;
    overflow: hidden;
}

.posts-slider-window {
    overflow: hidden;
    margin: 0 -15px;
    padding: 10px 0 50px;
}

.posts-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.post-card-wrapper {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.editorial-post-link {
    display: block;
    text-decoration: none;
    outline: none;
    height: 100%;
}

.editorial-post-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.editorial-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.editorial-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.editorial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-post-card:hover .editorial-img-wrapper img {
    transform: scale(1.08);
}

.editorial-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.editorial-post-card:hover .editorial-img-overlay {
    opacity: 1;
}

.editorial-cat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.editorial-post-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.editorial-post-title {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s;
}

.editorial-post-card:hover .editorial-post-title {
    color: var(--primary);
}

.editorial-read-more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.editorial-read-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
    font-size: 16px;
}

.editorial-post-card:hover .editorial-read-more {
    color: var(--primary);
}

.editorial-post-card:hover .editorial-read-more .arrow {
    transform: translateX(5px);
}

/* =========================================
   7. PREMIUM CALL TO ACTION BANNER
   ========================================= */
.premium-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.92) 0%, rgba(148, 97, 156, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.cta-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-pulse-btn {
    background: var(--primary);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 0 0 rgba(219, 106, 158, 0.6);
    animation: btnPulse 2s infinite;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-pulse-btn .phone-icon {
    font-size: 22px;
    transform: rotate(15deg);
}

.cta-pulse-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: #fff;
    color: var(--primary);
    animation: none;
    box-shadow: 0 15px 30px rgba(219, 106, 158, 0.4);
}

@keyframes btnPulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(219, 106, 158, 0.6);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(219, 106, 158, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(219, 106, 158, 0);
    }
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .slider {
        height: 350px;
    }

    .boutique-slide-wrapper {
        flex: 0 0 calc(100% / 3);
    }

    .boutique-nav-btn {
        display: none;
    }

    .immersive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modern-test-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .post-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .wow-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    /* CTA Tablet */
    .cta-flex-wrapper {
        padding: 40px;
    }

    .cta-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 27px;
        margin-bottom: 31px;
    }

    .slide-content .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .boutique-slide-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .boutique-img-arch {
        height: 260px;
        border-radius: 100px 100px 0 0;
    }

    .boutique-number {
        font-size: 60px;
    }

    .immersive-grid {
        grid-template-columns: 1fr;
    }

    .immersive-features-section {
        padding: 60px 0;
    }

    .modern-test-card-wrapper {
        flex: 0 0 100%;
    }

    .modern-test-card {
        padding: 30px;
    }

    .test-quote-icon {
        font-size: 60px;
    }

    .post-card-wrapper {
        flex: 0 0 100%;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    /* Global Section Header Fix for Mobile (Side-by-Side Buttons) */
    .wow-section-header,
    .posts-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 30px;
        gap: 10px;
    }

    .wow-header-text .section-title,
    .posts-header .section-title {
        font-size: 22px;
    }

    .wow-nav-buttons,
    .posts-nav-buttons {
        gap: 8px !important;
    }

    .wow-nav-btn,
    .post-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .wow-card-wrapper {
        flex: 0 0 100%;
    }

    .wow-img-box {
        height: 200px;
    }

    /* CTA Mobile Fix */
    .cta-flex-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 35px 20px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-pulse-btn {
        padding: 16px 20px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}