/* Base and Variables */
:root {
    --primary: hsl(340, 82%, 65%);
    --primary-light: hsl(340, 80%, 75%);
    --primary-dark: hsl(340, 85%, 55%);
    --secondary: hsl(350, 100%, 88%);
    --accent: hsl(0, 0%, 15%);
    --bg-light: hsl(340, 30%, 98%);
    --white: #ffffff;
    --text-main: hsl(0, 0%, 25%);
    --text-dark: hsl(0, 0%, 18%);
    --text-light: hsl(0, 0%, 45%);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 5px 15px rgba(255, 107, 158, 0.15);
    --shadow-md: 0 12px 30px rgba(255, 107, 158, 0.2);
    --shadow-lg: 0 20px 40px rgba(255, 107, 158, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-padding {
    padding: 6rem 5%;
}

.text-center {
    text-align: center;
}

/* -------------------------------- */
/* ADVANCED ANIMATIONS & EFFECTS    */
/* -------------------------------- */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.85);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.3s;
}

.stagger-3 {
    transition-delay: 0.5s;
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.stagger-wrapper.active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.stagger-wrapper.active .stagger-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-wrapper.active .stagger-item:nth-child(2) {
    transition-delay: 0.3s;
}

.stagger-wrapper.active .stagger-item:nth-child(3) {
    transition-delay: 0.5s;
}

.stagger-wrapper.active .stagger-item:nth-child(4) {
    transition-delay: 0.7s;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(25px, -25px) rotate(5deg);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 158, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 158, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 158, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.floating-slow {
    animation: float1 8s ease-in-out infinite;
}

.floating-fast {
    animation: float2 5s ease-in-out infinite;
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shimmer {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% auto;
    color: var(--white);
    animation: shimmer 3s linear infinite;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* -------------------------------- */
/* UI COMPONENTS                    */
/* -------------------------------- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-glow:hover {
    box-shadow: 0 0 20px var(--primary-light);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.nav-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar .logo {
    font-size: 1.8rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links a.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    margin: 5px 0;
    transition: 0.4s;
}

/* Hero Section */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
    transition: opacity 1.4s ease;
    overflow: hidden;
}

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

/* FULL VIEW VIDEO */
.hero-video,
.hero-slide video,
.hero-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(-50%, -50%);
}

/* REMOVE OVERLAY */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.glass-card {
    max-width: 520px;
    padding: 2.4rem 2rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.badge {
    display: inline-block;
    padding: 0.45rem 1.05rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.glass-title {
    margin: 0.8rem 0 0.8rem;
    font-size: clamp(2.7rem, 4.8vw, 4.6rem);
    line-height: 1.04;
    color: #22131a;
}

.glass-card p {
    max-width: 460px;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #4b3340;
    font-weight: 500;
}

.text-gradient {
    background: linear-gradient(135deg, #e91e63, #ff8bb3, #9d174d);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease infinite;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    filter: blur(2px);
    opacity: 0.65;
    pointer-events: none;
}

.shape-1 {
    width: 260px;
    height: 260px;
    right: 8%;
    top: 18%;
    background: rgba(255, 107, 158, 0.32);
    animation: floatHero 7s ease-in-out infinite;
}

.shape-2 {
    width: 170px;
    height: 170px;
    right: 22%;
    bottom: 16%;
    background: rgba(255, 255, 255, 0.45);
    animation: floatHero 9s ease-in-out infinite reverse;
}

.shape-3 {
    width: 110px;
    height: 110px;
    left: 8%;
    bottom: 10%;
    background: rgba(255, 139, 179, 0.28);
    animation: floatHero 6s ease-in-out infinite;
}

.sparkles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
    animation: sparklePulse 2.2s ease-in-out infinite;
}

.s1 { top: 20%; left: 12%; }
.s2 { top: 18%; right: 18%; animation-delay: 0.4s; }
.s3 { bottom: 26%; left: 28%; animation-delay: 0.8s; }
.s4 { bottom: 22%; right: 12%; animation-delay: 1.2s; }
.s5 { top: 52%; right: 35%; animation-delay: 1.6s; }

.hero-dots {
    position: absolute;
    bottom: 90px;
    left: 5%;
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(233, 30, 99, 0.35);
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-dots .dot.active {
    width: 34px;
    background: var(--primary);
    box-shadow: 0 0 18px rgba(233, 30, 99, 0.45);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-28px) translateX(18px);
    }
}

@keyframes sparklePulse {
    0%, 100% {
        transform: scale(0.6);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Hero Buttons */
.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
}

.secondary-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Headings */
.section-heading {
    margin-bottom: 4rem;
}

.sub-heading {
    color: var(--primary);
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading h2 {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 3px;
}

/* Services */
.services {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(244, 78, 137, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 139, 179, 0.14), transparent 32%),
        linear-gradient(135deg, #fff7fb 0%, #ffffff 50%, #fff1f7 100%);
    overflow: hidden;
}

.services .section-heading h2 {
    color: #251018;
}

.premium-services {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .premium-services {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(244, 78, 137, 0.16);
    box-shadow: 0 22px 60px rgba(244, 78, 137, 0.12);
    transition: all 0.45s ease;
}

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 32px 80px rgba(244, 78, 137, 0.24);
}

.featured-service {
    transform: translateY(-18px);
}

.featured-service:hover {
    transform: translateY(-30px);
}

.card-img-wrapper {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.12);
    filter: brightness(0.85);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(37, 16, 24, 0.78), transparent 60%),
        linear-gradient(135deg, rgba(244, 78, 137, 0.35), transparent 55%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    padding-bottom: 2rem;
    opacity: 0;
    transition: 0.45s ease;
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transform: translateY(18px);
    transition: 0.45s ease;
}

.card-overlay span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(18px);
    transition: 0.45s ease;
}

.service-card:hover .card-overlay i,
.service-card:hover .card-overlay span {
    transform: translateY(0);
}

.card-content {
    padding: 1.8rem;
    text-align: left;
}

.service-tag {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 78, 137, 0.12);
    color: #f52f7c;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-content h3 {
    margin-bottom: 0.6rem;
    font-size: 1.55rem;
    color: #251018;
}

.card-content p {
    margin: 0;
    color: #6b4b5a;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .premium-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-service {
        transform: none;
    }

    .featured-service:hover {
        transform: translateY(-12px);
    }

    .card-img-wrapper {
        height: 300px;
    }
}

/* About Section New Design */
.about {
    position: relative;
    background:
        radial-gradient(circle at 10% 20%, rgba(244, 78, 137, 0.13), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(255, 139, 179, 0.16), transparent 30%),
        linear-gradient(135deg, #fff7fb 0%, #ffffff 48%, #fff1f7 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 620px;
}

.about-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    left: 40px;
    top: 80px;
    background: linear-gradient(135deg, rgba(244, 78, 137, 0.35), rgba(255, 184, 209, 0.35));
    border-radius: 50%;
    filter: blur(45px);
    z-index: 0;
}

.about-main-img {
    position: absolute;
    top: 0;
    right: 20px;
    width: 72%;
    height: 520px;
    border-radius: 34px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 30px 80px rgba(244, 78, 137, 0.22);
    z-index: 2;
}

.about-main-img img,
.about-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-small-img {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 58%;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    z-index: 3;
}

.about-experience {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 220px;
    height: 170px;
    border-radius: 26px;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 25px 60px rgba(244, 78, 137, 0.35);
}

.about-experience h3 {
    font-size: 4rem;
    line-height: 1;
    color: #ffffff;
}

.about-experience p {
    margin-top: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}

.about-tag {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(244, 78, 137, 0.12);
    color: #f52f7c;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.08;
    color: #251018;
}

.about-content h2 span {
    color: #f52f7c;
}

.about-desc {
    max-width: 650px;
    margin-bottom: 2rem;
    font-size: 1.12rem;
    line-height: 1.8;
    color: #4b3340;
}

.about-features-new {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.about-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(244, 78, 137, 0.14);
    box-shadow: 0 14px 35px rgba(244, 78, 137, 0.08);
    transition: 0.35s ease;
}

.about-feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 18px 45px rgba(244, 78, 137, 0.16);
}

.about-feature-box i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature-box h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: #251018;
}

.about-feature-box p {
    margin: 0;
    color: #6b4b5a;
    line-height: 1.5;
}

.about-stats-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.about-stat {
    padding: 1.4rem 1rem;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    border: 1px solid rgba(244, 78, 137, 0.14);
    box-shadow: 0 16px 40px rgba(244, 78, 137, 0.12);
    border-bottom: 5px solid #f52f7c;
}

.about-stat h3 {
    margin-bottom: 0.35rem;
    font-size: 2.1rem;
    color: #f52f7c;
}

.about-stat p {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-visual {
        min-height: 500px;
    }

    .about-main-img {
        right: 0;
        width: 78%;
        height: 410px;
    }

    .about-small-img {
        width: 60%;
        height: 250px;
    }

    .about-experience {
        width: 180px;
        height: 140px;
    }

    .about-experience h3 {
        font-size: 3rem;
    }

    .about-stats-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 4rem 16px;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-main-img {
        width: 82%;
        height: 330px;
        border-radius: 26px;
        border-width: 6px;
    }

    .about-small-img {
        width: 68%;
        height: 210px;
        border-radius: 24px;
        border-width: 6px;
    }

    .about-experience {
        right: 0;
        bottom: 35px;
        width: 150px;
        height: 120px;
        border-radius: 22px;
    }

    .about-experience h3 {
        font-size: 2.5rem;
    }

    .about-experience p {
        font-size: 0.82rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-desc {
        font-size: 1rem;
    }

    .about-feature-box {
        padding: 1rem;
    }
}

/* Slider Styles */
.why-choose-us {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 78, 137, 0.12), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(255, 139, 179, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff7fb 48%, #fff1f7 100%);
    overflow: hidden;
}

.why-beauty-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    position: relative;
    height: 600px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(244, 78, 137, 0.22);
    border: 8px solid #ffffff;
}

.why-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.why-image:hover img {
    transform: scale(1.08);
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(37, 16, 24, 0.42), transparent 58%),
        linear-gradient(135deg, rgba(244, 78, 137, 0.18), transparent 55%);
}

.why-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    width: 170px;
    padding: 1.3rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.why-badge h3 {
    margin: 0;
    font-size: 2.4rem;
    color: #f52f7c;
}

.why-badge p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    color: #6b4b5a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-content {
    display: grid;
    gap: 1.25rem;
}

.why-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(244, 78, 137, 0.16);
    box-shadow: 0 18px 50px rgba(244, 78, 137, 0.10);
    transition: all 0.35s ease;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: 0 26px 70px rgba(244, 78, 137, 0.20);
    border-color: rgba(244, 78, 137, 0.35);
}

.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 14px 32px rgba(244, 78, 137, 0.28);
}

.why-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    color: #251018;
}

.why-card p {
    margin: 0;
    color: #6b4b5a;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .why-beauty-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-image {
        min-height: 430px;
    }

    .why-image img {
        min-height: 430px;
    }

    .why-card:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 4rem 16px;
    }

    .why-image {
        min-height: 360px;
        border-radius: 28px;
        border-width: 6px;
    }

    .why-image img {
        min-height: 360px;
    }

    .why-badge {
        width: 140px;
        left: 16px;
        bottom: 16px;
        padding: 1rem 0.8rem;
    }

    .why-badge h3 {
        font-size: 2rem;
    }

    .why-card {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 1.1rem;
    }

    .why-card h3 {
        font-size: 1.08rem;
    }

    .why-card p {
        font-size: 0.94rem;
    }
}

/* Team Section */
.team {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 158, 0.1);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.team-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-img img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(201, 61, 114, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    padding-bottom: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.team-card:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-overlay a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-overlay a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: var(--accent);
}

.team-info .role {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.info-item:hover {
    background: var(--bg-light);
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary);
    z-index: -1;
    animation: pulseGlow 2s infinite;
    opacity: 0.6;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.info-text p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,107,158,0.1);
}

.input-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-main);
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: var(--transition);
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    font-size: 1rem;
}

.input-group input:focus ~ label, .input-group input:valid ~ label, .input-group textarea:focus ~ label, .input-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.input-group input:focus ~ .input-line, .input-group textarea:focus ~ .input-line, .input-group select:focus ~ .input-line {
    width: 100%;
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.slide-icon {
    transition: transform 0.3s ease;
}

.btn-block:hover .slide-icon {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--accent);
    color: var(--white);
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-col .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-col p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,107,158,0.4);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col a {
    display: block;
    color: #ccc;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-col p {
    color: #ccc;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.footer-col p i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.95rem;
}

/* Responsive */
@media(max-width: 900px) {
    .section-padding {
        padding: 4rem 20px;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .slide {
        height: 450px;
    }

    .slide-content {
        padding: 3rem 1.5rem 1.5rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding-top: 3rem;
        transition: 0.5s ease;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        width: 100%;
        min-height: 100vh;
        padding: 95px 16px 70px;
        overflow: hidden;
    }

    .hero-slider {
        width: 100%;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        justify-content: center;
        text-align: center;
    }

    .glass-card {
        width: 100%;
        max-width: 360px;
        padding: 2.2rem 1.4rem;
        border-radius: 26px;
    }

    .glass-title {
        font-size: 2.45rem;
        line-height: 1.12;
        margin: 1rem 0;
    }

    .glass-card p {
        font-size: 0.98rem;
        margin-bottom: 1.7rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-collage {
        height: 450px;
    }

    .collage-1 {
        width: 70%;
        height: 65%;
        right: 0;
        top: 0;
    }

    .collage-2 {
        width: 60%;
        height: 50%;
        left: 0;
        bottom: 0;
    }

    .collage-3 {
        width: 45%;
        right: 2%;
        bottom: 5%;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .experience-card h3 {
        font-size: 2.2rem;
    }

    .stats-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .glass-card {
        max-width: 340px;
        padding: 2rem 1.2rem;
    }

    .glass-title {
        font-size: 2.25rem;
    }

    .glass-card p {
        font-size: 0.95rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.logo-img {
    height: 100px;
    /* increase size */
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
    }
}


.pricing {
    background:
        radial-gradient(circle at top left, rgba(244, 78, 137, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 139, 179, 0.16), transparent 32%),
        linear-gradient(135deg, #fff7fb 0%, #ffffff 50%, #fff1f7 100%);
}

.pricing-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    position: relative;
    padding: 2.4rem 2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(244, 78, 137, 0.16);
    box-shadow: 0 22px 60px rgba(244, 78, 137, 0.12);
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 32px 85px rgba(244, 78, 137, 0.24);
}

.featured-price {
    transform: translateY(-18px);
    border: 2px solid rgba(245, 47, 124, 0.35);
}

.featured-price:hover {
    transform: translateY(-30px);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 16px 36px rgba(244, 78, 137, 0.32);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #251018;
    margin-bottom: 0.4rem;
}

.pricing-sub {
    color: #6b4b5a;
    margin-bottom: 1.2rem;
}

.pricing-card h2 {
    font-size: 2.8rem;
    color: #f52f7c;
    margin-bottom: 1.4rem;
}

.pricing-card ul {
    margin: 0 0 1.8rem;
    padding: 0;
    list-style: none;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.9rem;
    color: #4b3340;
    font-weight: 600;
}

.pricing-card ul li i {
    color: #f52f7c;
    margin-right: 0.6rem;
}

.price-btn {
    width: 100%;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(244, 78, 137, 0.26);
}

.price-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-price {
        transform: none;
    }

    .featured-price:hover {
        transform: translateY(-12px);
    }
}

.testimonials,
.before-after {
    background:
        radial-gradient(circle at top left, rgba(244, 78, 137, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 139, 179, 0.16), transparent 32%),
        linear-gradient(135deg, #fff7fb 0%, #ffffff 50%, #fff1f7 100%);
}

.testimonial-grid,
.before-after-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card,
.ba-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(244, 78, 137, 0.16);
    box-shadow: 0 22px 60px rgba(244, 78, 137, 0.12);
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card:hover,
.ba-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 32px 85px rgba(244, 78, 137, 0.24);
}

.stars {
    color: #f52f7c;
    font-size: 1.15rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4b3340;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff9abd;
}

.client-info h4 {
    margin: 0;
    color: #251018;
}

.client-info span {
    color: #f52f7c;
    font-size: 0.85rem;
    font-weight: 700;
}

.ba-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ba-card:hover .ba-image img {
    transform: scale(1.1);
}

.ba-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ba-content {
    padding: 1.6rem;
}

.ba-content h3 {
    font-size: 1.4rem;
    color: #251018;
    margin-bottom: 0.5rem;
}

.ba-content p {
    color: #6b4b5a;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .testimonial-grid,
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ba-image {
        height: 300px;
    }
}

.map-section {
    margin-top: 2.5rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.portfolio {
    background:
        radial-gradient(circle at top left, rgba(244, 78, 137, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 139, 179, 0.16), transparent 32%),
        linear-gradient(135deg, #fff7fb 0%, #ffffff 50%, #fff1f7 100%);
    overflow: hidden;
}

.portfolio-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 1.4rem;
}

.portfolio-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 22px 60px rgba(244, 78, 137, 0.16);
    cursor: pointer;
}

.portfolio-card.big {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease, filter 0.9s ease;
}

.portfolio-card:hover img {
    transform: scale(1.12);
    filter: brightness(0.75);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    background:
        linear-gradient(to top, rgba(37, 16, 24, 0.82), transparent 65%),
        linear-gradient(135deg, rgba(244, 78, 137, 0.25), transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    width: fit-content;
    margin-bottom: 0.5rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f52f7c, #ff9abd);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-size: 1.45rem;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .portfolio-card.big {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ================================
   BEAUTY DUTY GALLERY SECTION
================================ */

.bd-gallery-wrapper{
    padding: 120px 8%;
    background: linear-gradient(to bottom, #fff, #fff4f8);
    position: relative;
    overflow: hidden;
}

/* HEADING */

.bd-gallery-top{
    text-align: center;
    margin-bottom: 70px;
}

.bd-gallery-mini-title{
    color: #ff4f8b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 18px;
}

.bd-gallery-title{
    font-size: 62px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: serif;
}

.bd-gallery-title span{
    color: #ff4f8b;
}

.bd-gallery-desc{
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* GALLERY GRID */

.bd-gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* IMAGE CARD */

.bd-gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 280px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 35px rgba(255, 79, 139, 0.12);
    transition: 0.4s ease;
}

.bd-gallery-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 79, 139, 0.25);
}

/* IMAGE */

.bd-gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.bd-gallery-card:hover img{
    transform: scale(1.12);
}

/* OVERLAY */

.bd-gallery-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0,0,0,0.35),
    transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.bd-gallery-card:hover::before{
    opacity: 1;
}

/* ICON */

.bd-gallery-card::after{
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: #ff4f8b;
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.4s ease;
}

.bd-gallery-card:hover::after{
    transform: translate(-50%, -50%) scale(1);
}

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

@media(max-width: 1200px){

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

}

@media(max-width: 992px){

.bd-gallery-wrapper{
    padding: 100px 6%;
}

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

.bd-gallery-title{
    font-size: 48px;
}

.bd-gallery-card{
    height: 240px;
}

}

@media(max-width: 768px){

.bd-gallery-wrapper{
    padding: 90px 5%;
}

.bd-gallery-title{
    font-size: 38px;
}

.bd-gallery-desc{
    font-size: 16px;
}

.bd-gallery-grid{
    gap: 20px;
}

.bd-gallery-card{
    border-radius: 22px;
}

}

@media(max-width: 576px){

.bd-gallery-grid{
    grid-template-columns: 1fr;
}

.bd-gallery-card{
    height: 260px;
}

.bd-gallery-title{
    font-size: 32px;
}

.bd-gallery-mini-title{
    font-size: 13px;
    letter-spacing: 3px;
}

.bd-gallery-desc{
    font-size: 15px;
    line-height: 1.7;
}

}

/* ===================================
   POPUP
=================================== */

.bd-gallery-popup{
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.92);

    display: none;

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

    z-index: 999999;
}

/* IMAGE */

.bd-popup-image{
    width: 500px;
    height: 500px;

    object-fit: contain;

    border-radius: 30px;

    border: 5px solid #ff4f8b;

    background: white;
}

/* CLOSE */

.bd-popup-close{
    position: absolute;

    top: 20px;
    right: 35px;

    font-size: 55px;

    color: white;

    cursor: pointer;
}

/* BUTTONS */

.bd-popup-btn{
    position: absolute;

    width: 70px;
    height: 70px;

    border: none;

    border-radius: 50%;

    background: #ff4f8b;

    color: white;

    font-size: 30px;

    cursor: pointer;
}

/* LEFT */

.bd-popup-prev{
    left: 5%;
}

/* RIGHT */

.bd-popup-next{
    right: 5%;
}

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

.bd-whatsapp-float{
    position: fixed;

    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    background: #25D366;

    border-radius: 50%;

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

    text-decoration: none;

    z-index: 999999;

    box-shadow: 0 10px 25px rgba(37,211,102,0.4);

    animation: whatsappPulse 2s infinite;
}

/* ICON */

.bd-whatsapp-float i{
    color: white;
    font-size: 34px;
}

/* HOVER */

.bd-whatsapp-float:hover{
    transform: scale(1.1);
}

/* PULSE */

@keyframes whatsappPulse{

    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }

    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}

/* MOBILE */

@media(max-width:768px){

.bd-whatsapp-float{

    width: 58px;
    height: 58px;

    bottom: 18px;
    right: 18px;

}

.bd-whatsapp-float i{

    font-size: 30px;

}

}

.hours-list{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-top:10px;
}

.hour-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    background:#fff;

    border:1px solid rgba(255,105,180,0.12);

    border-radius:24px;

    transition:0.35s ease;

    box-shadow:
    0 8px 20px rgba(255,105,180,0.04);
}

.hour-row:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 35px rgba(255,105,180,0.10);
}

.hour-row span{

    font-size:20px;

    font-weight:700;

    color:#2b1a22;
}

.hour-row strong{

    font-size:19px;

    font-weight:700;

    color:#ff4f93;
}

@media(max-width:768px){

    .hours-list{

        gap:16px;
    }

    .hour-row{

        padding:18px 20px;

        border-radius:18px;
    }

    .hour-row span{

        font-size:16px;
    }

    .hour-row strong{

        font-size:15px;
    }
}