/* 
   Prega Yoga - Premium Custom Stylesheet 
   Theme: Vibrant Brights & Highlight Shapes (Aura Birthing Standard)
*/

:root {
    /* Bright & Energetic Palette */
    --primary: #9D4EDD;         /* Bright Amethyst Purple */
    --primary-dark: #3C096C;    /* Deep Royal Purple for high contrast text & footer */
    --primary-light: #E0AAFF;   /* Bright Pastel Purple for highlights */
    --bg-light-purple: #F9F3FF; /* Very soft bright pink/purple background */
    
    --text-main: #2D2D2D;       /* Dark charcoal for general text */
    --text-muted: #5C5C5C;      /* Muted grey for descriptions */
    --bg-white: #FFFFFF;
    --bg-offwhite: #FDFBFF;     /* Clean bright pearl background */
    
    --accent: #FF70A6;          /* Vibrant Bright Pink for buttons/stars */
    --accent-light: #FFC2D1;    /* Soft pink for shapes */
    
    /* Premium Shadows & Gradients */
    --shadow-soft: 0 15px 35px rgba(157, 78, 221, 0.08);
    --shadow-hover: 0 20px 40px rgba(157, 78, 221, 0.2);
    --gradient-primary: linear-gradient(  135deg, #9D4EDD 0%, #FF70A6 100%);
}

/* Base Styles */
body {
    font-family: 'Jost', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-offwhite);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-dark);
}

.text-primary-dark { color: var(--primary-dark) !important; }
.text-light-purple { color: var(--primary-light) !important; }
.text-accent { color: var(--accent) !important; }
.bg-light-purple { background-color: var(--bg-light-purple); }
.bg-primary-dark { background-color: var(--primary-dark); }

.section-padding { padding: 100px 0; }
.max-w-600 { max-width: 600px; }

/* Typography & Bright Highlight Shapes */
.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.section-title, .section-title-start {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Bright shape behind titles */
.section-title::after, .section-title-start::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -2%;
    width: 104%;
    height: 18px;
    background-color: var(--accent-light);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.8;
}

.section-title::after {
    transform: rotate(-1.5deg);
}

/* Premium Glassmorphism Navbar */
.navbar {
    padding: 5px 0;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
    padding: 10px 0;
}

.navbar-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-dark) !important;
    margin: 0 12px;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease-in-out;
    border-radius: 5px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}


.navbar-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* =========================================================
   MOBILE NAVBAR ONLY
   Fix opened menu background
   Desktop remains completely unchanged
========================================================= */

@media (max-width: 991px) {

    #mainNav {
        background-color: rgba(255, 255, 255, 0.97);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        box-shadow: 0 8px 25px rgba(157, 78, 221, 0.08);

        z-index: 1050;
    }

    /* Keep the same clean background after scrolling */
    #mainNav.scrolled {
        background-color: rgba(255, 255, 255, 0.97);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        box-shadow: 0 8px 25px rgba(157, 78, 221, 0.10);
    }

    /* Mobile opened menu */
    #navbarNav {
        background-color: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        padding: 12px 20px 18px;

        border-radius: 0 0 20px 20px;

        box-shadow: 0 15px 35px rgba(80, 35, 110, 0.10);
    }
	
	

}

.social-nav-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(157, 78, 221, 0.12);

    color: var(--primary-dark);

    font-size: 19px;

    box-shadow:
        0 6px 18px rgba(157, 78, 221, 0.08);

    transition:
        all 0.3s ease;
}


/* WhatsApp */

.social-nav-icon.whatsapp:hover {
    background: #25D366;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(37, 211, 102, 0.25);
}


/* Instagram */

.social-nav-icon.instagram:hover {
    background: linear-gradient(
        135deg,
        #833AB4,
        #E1306C,
        #F77737
    );

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(225, 48, 108, 0.25);
}

/* Premium Gradient Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 112, 166, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 112, 166, 0.5);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at top left, var(--bg-light-purple) 0%, var(--bg-offwhite) 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.subtitle-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.stat-item i {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Yogastic Blob Shape Image */
.blob-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.blob-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.blob-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    transform: translate(20px, 20px);
    opacity: 0.2;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

/* About Section */
.rounded-custom {
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--bg-offwhite);
}

.experience-box h3 { color: white; margin: 0; font-size: 2rem; }
.experience-box p { margin: 0; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; }


/* =========================================
   NEW: AURA BIRTHING STYLE SERVICE LAYOUT
   (No cards, just floating images and text)
========================================== */
.service-floating-item {
    text-align: center;
    padding: 30px 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.service-floating-item:hover {
    background-color: rgba(255, 255, 255, 0.6); /* Very subtle highlight */
    transform: translateY(-8px);
}

.service-custom-img {
    width: 90px; /* Big custom image size */
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-floating-item:hover .service-custom-img {
    transform: scale(1.1);
}

.service-title-clean {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    transition: color 0.3s;
}

.service-floating-item:hover .service-title-clean {
    color: var(--accent); /* Changes to pink on hover */
}


/* Forms & Inputs */
.form-control, .form-select {
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(157, 78, 221, 0.15);
    background-color: var(--bg-white);
    color: var(--text-main);
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 112, 166, 0.15);
    outline: none;
}

/* Modal Popup */

.modal-content {
    border: none;
    border-radius: 20px;

    box-shadow:
        0 25px 80px rgba(45, 15, 70, 0.25);
}


/* =========================================================
   MODAL IMAGE
   Full image visible - NO CROPPING
========================================================= */

.modal-img-header {
    display: block;

    width: 100%;

    height: 52vh;
    min-height: 300px;
    max-height: 560px;

    object-fit: contain;
    object-position: center;

    background: #f8f4fa;

    border-radius: 20px 20px 0 0;
}



/* =========================================================
   MODAL BODY
========================================================= */

.modal-body {
    overflow-y: auto;

    max-height: 35vh;
}
/* Continuous Scrolling Gallery */
.gallery-marquee-section {
    background-color: var(--bg-white);
    padding: 80px 0; 
    overflow: hidden;
    position: relative;
}

.gallery-marquee-section::before, .gallery-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}
.gallery-marquee-section::before { left: 0; background: linear-gradient(to right, var(--bg-white), transparent); }
.gallery-marquee-section::after { right: 0; background: linear-gradient(to left, var(--bg-white), transparent); }

.marquee-container { display: flex; width: 100%; overflow: visible; position: relative; padding: 20px 0; }
.marquee-track { display: flex; gap: 30px; width: max-content; animation: scroll-marquee 45s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

.marquee-img {
    height: 350px; 
    width: 480px; 
    border-radius: 24px; 
    object-fit: cover; 
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s ease;
    cursor: pointer;
}

.marquee-img:hover {
    transform: scale(1.05) translateY(-5px); 
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Footer */
.footer-section { background-color: var(--primary-dark); padding: 80px 0 0; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px) scale(1.1);
}

/* =========================================================
   MOBILE FLOATING SOCIAL MEDIA ICONS
   WhatsApp + Instagram
   FIXED RIGHT CENTER
========================================================= */

/* Hidden on desktop */
.mobile-floating-socials {
    display: none;
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 991px) {

    .mobile-floating-socials {

        /* Show icons */
        display: flex;

        /* Vertical arrangement */
        flex-direction: column;

        /* Space between icons */
        gap: 10px;

        /* ==========================================
           FIXED POSITION
           Right side + exact vertical center
        ========================================== */

        position: fixed;

        right: 12px;

        top: 50%;

        transform: translateY(-50%);

        /* Always stay above website content */
        z-index: 9999;
    }


    /* =====================================================
       SOCIAL ICON
    ===================================================== */

    .mobile-social {

        width: 44px;
        height: 44px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        text-decoration: none;

        /* Glass effect */
        background: rgba(255, 255, 255, 0.94);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        /* Soft border */
        border: 1px solid rgba(157, 78, 221, 0.15);

        /* Icon size */
        font-size: 20px;

        /* Soft shadow */
        box-shadow:
            0 6px 20px rgba(70, 30, 100, 0.15);

        /* Smooth animation */
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            background 0.3s ease,
            color 0.3s ease;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .mobile-social.whatsapp {

        color: #25D366;
    }


    .mobile-social.whatsapp:hover {

        color: #ffffff;

        background: #25D366;

        transform: scale(1.08);

        box-shadow:
            0 8px 22px rgba(37, 211, 102, 0.30);
    }


    /* =====================================================
       INSTAGRAM
    ===================================================== */

    .mobile-social.instagram {

        color: #C13584;
    }


    .mobile-social.instagram:hover {

        color: #ffffff;

        background:
            linear-gradient(
                135deg,
                #833AB4,
                #E1306C,
                #F77737
            );

        transform: scale(1.08);

        box-shadow:
            0 8px 22px rgba(225, 48, 108, 0.30);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mobile-floating-socials {

        /* Slightly closer to screen edge */
        right: 8px;

        /* Smaller gap */
        gap: 8px;
    }


    .mobile-social {

        width: 40px;
        height: 40px;

        font-size: 18px;
    }

}

      /* =========================================================
   PREMIUM SERVICES SECTION
========================================================= */

.premium-services {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 190, 220, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(184, 155, 255, 0.14),
            transparent 30%
        ),
        #faf7ff;
}


/* =========================================================
   DECORATIVE ORBS
========================================================= */

.service-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.service-orb-one {
    width: 280px;
    height: 280px;
    top: 120px;
    left: -150px;
    background: rgba(255, 123, 178, 0.08);
}

.service-orb-two {
    width: 350px;
    height: 350px;
    right: -180px;
    bottom: 100px;
    background: rgba(147, 112, 219, 0.08);
}


/* =========================================================
   SECTION HEADER
========================================================= */

.services-header {
    max-width: 760px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #e65b9b;
    margin-bottom: 16px;
}

.services-eyebrow span {
    width: 32px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #e65b9b
    );
}

.services-eyebrow span:last-child {
    background: linear-gradient(
        90deg,
        #e65b9b,
        transparent
    );
}


.services-main-title {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 1;
    font-weight: 600;

    color: #32105f;
}

.services-main-title span {
    display: block;

    background: linear-gradient(
        90deg,
        #7c3aa8,
        #e65b9b
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.services-intro {
    max-width: 600px;
    margin: 25px auto 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    line-height: 1.9;

    color: #786b82;
}


/* =========================================================
   CATEGORY
========================================================= */

.service-category {
    position: relative;
    z-index: 2;
    margin-bottom: 90px;
}

.workshops-category {
    margin-top: 30px;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.category-top {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 35px;
}

.category-icon {
    flex-shrink: 0;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(
        145deg,
        #fff,
        #f8eafa
    );

    border: 1px solid rgba(124, 58, 168, 0.1);

    box-shadow:
        0 12px 35px rgba(93, 47, 124, 0.08);
}

.category-icon i {
    font-size: 25px;
    color: #c94c94;
}


.category-number {
    display: block;

    margin-bottom: 2px;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;

    color: #d85a99;
}


.category-top h3 {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;
    font-size: 2.35rem;
    font-weight: 700;

    color: #35105f;
}


.category-top p {
    margin: 4px 0 0;

    font-size: 0.86rem;
    color: #8b7b91;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.services-grid {
    display: grid;
    gap: 24px;
}

.services-grid-three {
    grid-template-columns: repeat(3, 1fr);
}


/* =========================================================
   PREMIUM CARD
========================================================= */

.premium-service-card {
    position: relative;

    min-height: 355px;

    padding: 32px 30px 26px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(255,255,255,0.82)
        );

    border: 1px solid rgba(118, 63, 150, 0.09);

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(76, 31, 102, 0.045);

    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* subtle gradient corner */

.premium-service-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(240, 105, 168, 0.15),
            transparent 70%
        );

    transition: transform 0.5s ease;
}


/* bottom accent */

.premium-service-card::after {
    content: "";

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #e65b9b,
            transparent
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}


.premium-service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(214, 91, 155, 0.22);

    box-shadow:
        0 25px 60px rgba(92, 39, 122, 0.12);
}


.premium-service-card:hover::before {
    transform: scale(1.5);
}

.premium-service-card:hover::after {
    opacity: 1;
}


/* =========================================================
   CARD TOP
========================================================= */

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


.service-icon-box {
     width: 105px;
    height: 105px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #fff1f8,
            #f4e5fb
        );

    border: 1px solid rgba(207, 80, 151, 0.12);

    box-shadow:
        0 12px 30px rgba(201, 76, 145, 0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.service-icon-box i {
    font-size: 40px;
    color: #b74d8f;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}


.premium-service-card:hover .service-icon-box {
    transform: translateY(-3px) rotate(-3deg);

    background:
        linear-gradient(
            145deg,
            #f7d9e9,
            #eadcff
        );
}


.premium-service-card:hover .service-icon-box i {
    transform: scale(1.08);
    color: #8a3e91;
}


.service-number {
    font-family: 'Montserrat', sans-serif;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 2px;

    color: #c5b8ca;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-content {
    flex: 1;
}


.service-content h4 {
    margin: 0 0 12px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.65rem;
    line-height: 1.15;

    font-weight: 700;

    color: #35105f;
}


.service-content p {
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 0.84rem;
    line-height: 1.75;

    color: #817587;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.service-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid rgba(91, 44, 121, 0.07);
}


.service-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: 'Montserrat', sans-serif;

    font-size: 0.72rem;
    font-weight: 700;

    text-decoration: none;

    color: #9a4a9e;

    transition: gap 0.3s ease, color 0.3s ease;
}


.service-details span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #f8eaf5;
}


.service-details i {
    font-size: 10px;
}


.service-details:hover {
    gap: 12px;
    color: #5d2178;
}


/* =========================================================
   PREMIUM BOOK BUTTON
========================================================= */

.premium-book-btn {
    position: relative;

    padding: 10px 21px;

    border-radius: 50px;

    font-family: 'Montserrat', sans-serif;

    font-size: 0.7rem;
    font-weight: 700;

    text-decoration: none;

    color: #fff !important;

   background: linear-gradient(  135deg, #9D4EDD 0%, #FF70A6 100%);

    box-shadow:
        0 8px 20px rgba(224, 91, 157, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.premium-book-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(224, 91, 157, 0.32);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.services-bottom-cta {
    position: relative;
    z-index: 2;

    margin-top: -25px;

    padding: 30px 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            #3b1263,
            #5e237f
        );

    box-shadow:
        0 25px 55px rgba(55, 17, 91, 0.18);
}


.services-bottom-cta span {
    font-family: 'Montserrat', sans-serif;

    font-size: 0.63rem;
    font-weight: 700;

    letter-spacing: 2px;

    color: #ef9ec5;
}


.services-bottom-cta h3 {
    margin: 6px 0 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.8rem;

    color: white;
}


.cta-outline-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;

    font-family: 'Montserrat', sans-serif;

    font-size: 0.72rem;
    font-weight: 700;

    color: white;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.cta-outline-btn:hover {
    color: white;

    background: rgba(255,255,255,0.1);

    transform: translateY(-2px);
}


.cta-outline-btn i {
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .premium-services {
        padding: 90px 0;
    }

    .services-header {
        margin-bottom: 65px;
    }

    .services-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-service-card {
        min-height: 350px;
    }

}


@media (max-width: 767px) {

    .premium-services {
        padding: 70px 0;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .services-main-title {
        font-size: 3rem;
    }

    .services-intro {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .category-top {
        align-items: flex-start;
        gap: 15px;
    }

    .category-icon {
        width: 72px;
		height: 72px;

		flex-shrink: 0;

		display: flex;

		align-items: center;
		justify-content: center;
    }

    .category-icon i {
        font-size: 20px;
    }

    .category-top h3 {
        font-size: 1.9rem;
    }

    .category-top p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .services-grid-three {
        grid-template-columns: 1fr;
    }

    .premium-service-card {
        min-height: 330px;
    }

    .services-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-outline-btn {
        width: 100%;
        justify-content: center;
    }

}


@media (max-width: 480px) {

    .services-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 2.5px;
    }

    .services-main-title {
        font-size: 2.6rem;
    }

    .category-top h3 {
        font-size: 1.7rem;
    }

    .premium-service-card {
        padding: 27px 23px 23px;
        min-height: 315px;
    }

}