/* ============================================
   Adonia Beauty Salon - Custom CSS
   Glassmorphic Pink & White Theme
   ============================================ */

/* ---- Root Variables ---- */
:root {
    --pink-primary: #E91E8C;
    --pink-light: #F48FB1;
    --pink-dark: #880E4F;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(233, 30, 140, 0.15);
    --gradient-hero: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 40%, #F48FB1 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 50%, #FFF5F9 100%);
    min-height: 100vh;
}

/* ---- Glassmorphism Utilities ---- */
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.12);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.2);
    border-color: rgba(233, 30, 140, 0.3);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 30, 140, 0.1);
    box-shadow: 0 4px 24px rgba(233, 30, 140, 0.08);
}

.glass-dark {
    background: rgba(136, 14, 79, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---- Gradient Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, #E91E8C, #C2185B);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.5);
}

.btn-outline {
    background: transparent;
    color: #E91E8C;
    border: 2px solid #E91E8C;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: #E91E8C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.35);
}

/* ---- Section Headings ---- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #4a0e29;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #E91E8C;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-desc {
    color: #6b4a5a;
    line-height: 1.8;
    max-width: 600px;
}

/* ---- Decorative Divider ---- */
.pink-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin: 0.75rem auto;
}

.pink-divider::before,
.pink-divider::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #E91E8C, transparent);
    max-width: 80px;
}

.pink-divider span {
    color: #E91E8C;
    font-size: 1.2rem;
}

/* ---- Hero Section ---- */
.hero-bg {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 50%, #FFDDE7 100%);
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* ---- Star Rating ---- */
.stars {
    color: #FBBF24;
    letter-spacing: 0.1em;
}

/* ---- Service Icon Circle ---- */
.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E91E8C;
    transition: all 0.3s ease;
    border: 2px solid rgba(233, 30, 140, 0.2);
}

.glass-card:hover .service-icon {
    background: linear-gradient(135deg, #E91E8C, #C2185B);
    color: white;
    transform: rotate(10deg) scale(1.1);
    border-color: transparent;
}

/* ---- Scroll Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Gallery Lightbox ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---- Toast Notifications ---- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 350px;
}

.toast-success {
    background: linear-gradient(135deg, #E91E8C, #C2185B);
    color: white;
}

.toast-error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Form Inputs ---- */
.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(233, 30, 140, 0.2);
    border-radius: 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #4a0e29;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #E91E8C;
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.form-input::placeholder {
    color: #c09dac;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #FCE4EC;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#E91E8C, #C2185B);
    border-radius: 3px;
}

/* ---- Badge ---- */
.badge-pink {
    display: inline-block;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(233, 30, 140, 0.05));
    color: #E91E8C;
    border: 1px solid rgba(233, 30, 140, 0.25);
    padding: 0.25rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 500;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-green 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ---- Price Tag ---- */
.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #E91E8C;
}

/* ---- Category Filter Tabs ---- */
.filter-tab {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid rgba(233, 30, 140, 0.3);
    background: transparent;
    color: #9d174d;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(135deg, #E91E8C, #C2185B);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.35);
}

/* ---- Scrolling Marquee ---- */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: white;
    border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    padding: 0.75rem 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
    color: #be185d;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-item i {
    color: #ec4899;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- Modern Cutout Interior ---- */
.cutout-wrapper {
    position: relative;
    padding: 4rem 0;
}

.cutout-frame {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cutout-frame.large {
    height: 500px;
    z-index: 2;
}

.cutout-frame.small {
    height: 300px;
    width: 80%;
    margin-top: -150px;
    margin-left: auto;
    z-index: 3;
    border: 8px solid white;
}

.cutout-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.interior-badge {
    position: absolute;
    top: -2rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    background: #E91E8C;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3);
    z-index: 10;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ---- Swiper Customization ---- */
.swiper-pagination-bullet-active {
    background: #E91E8C !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #E91E8C !important;
}

.testimonials-swiper {
    padding: 2rem 1rem 4rem !important;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cutout-frame.large {
        height: 400px;
    }

    .cutout-frame.small {
        height: 250px;
        margin-top: -100px;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }

    .cutout-frame.large {
        height: 300px;
    }

    .cutout-frame.small {
        height: 200px;
        margin-top: -80px;
        width: 90%;
    }
}