:root {
    --bs-primary: #ec4899;
    --bs-primary-rgb: 236, 72, 153;
}
body {
    font-family: "Axiforma", sans-serif;
}
.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #be185d;
    --bs-btn-hover-border-color: #be185d;
    --bs-btn-active-bg: #be185d;
    --bs-btn-active-border-color: #be185d;
}

.text-primary {
    color: var(--bs-primary) !important;
}

/* Desktop Navigation */
.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 1rem !important;
}

.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.dropdown-item:hover {
    background-color: var(--bs-primary);
    color: white;
}

/* Mobile Offcanvas Styles */
.offcanvas {
    width: 320px !important;
}

/* Hide accordion on desktop */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.mobile-nav .list-group-item {
    padding: 1rem 1.25rem;
}

.mobile-nav .list-group-item:hover {
    background-color: #f8f9fa;
}
@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: 100%;
    }
}
/* Hero Styles */
.hero {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    min-height: 100vh;
    padding: 120px 0;
}

.hero__overlay {
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

/* Floating Images */
.hero__images {
    position: relative;
    height: 600px;
}

.hero__image-1,
.hero__image-2,
.hero__image-3 {
    position: absolute;
    max-width: 300px;
    border: 8px solid white;
}

.hero__image-1 {
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.hero__image-2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite;
}

.hero__image-3 {
    bottom: 0;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

/* Features */
.hero__feature {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.hero__feature:hover {
    transform: translateY(-5px);
}

.hero__feature i {
    font-size: 2rem;
    color: var(--bs-primary);
}

/* Animated Shapes */
.hero__shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--bs-primary);
    top: -150px;
    right: -150px;
    animation: morphShape 20s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: 50%;
    left: -100px;
    animation: morphShape 15s linear infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--bs-primary);
    bottom: -125px;
    right: 10%;
    animation: morphShape 18s linear infinite;
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes morphShape {
    0%,
    100% {
        border-radius: 50%;
    }
    25% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    75% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    }
}

/* Marquee Styles */
.marquee-section {
    background: var(--bs-light);
    overflow: hidden;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    --gap: 2rem;
    --duration: 30s;
    --scroll-start: 0;
    --scroll-end: -50%;
}

.marquee-track {
    display: flex;
    gap: var(--gap);
    position: relative;
    animation: scroll-left var(--duration) linear infinite;
    width: fit-content;
}

.marquee-item {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.marquee-image {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.marquee-item:hover .marquee-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll-left {
    from {
        transform: translateX(var(--scroll-start));
    }
    to {
        transform: translateX(var(--scroll-end));
    }
}

/* Pause on Hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Services Section Styles */
.services-section {
    background: #fef2fc;
    position: relative;
    overflow: hidden;
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--bs-primary);
    margin: 0 auto;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--bs-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.service-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.4)
    );
}

/* Content */
.service-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
}

.learnMoreBtn {
    background: var(--bs-primary);
    color: #fff !important;
    border: none;
    transition: all 0.5s;
    &:hover {
        transform: translate3d(0px, 0%, 0px) scale3d(1.2, 1.2, 1.2)
            rotateX(0deg) rotateY(0deg) rotateZ(5deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        transition: all 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    }
}
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 80px 0;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
    border-radius: 20px;
}

.pricing-card:hover::before {
    opacity: 0.1;
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff1f1 0%, #ffe4e9 100%);
}

.pricing-card.popular::before {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    opacity: 0.15;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background: #ff758c;
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-body {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.package-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff758c;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #ff758c;
    margin-right: 10px;
}

.btn-book {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.4);
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: white;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.pricing-card {
    animation: float 6s ease-in-out infinite;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-section {
        padding: 40px 0;
    }

    .card-body {
        padding: 2rem 1.5rem;
    }
}
/* Appointment section styles */
.appointment-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #fff5f6 0%, #fff9fa 100%);
    overflow: hidden;
}

.appointment-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 117, 140, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 40px;
}

.appointment-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 15px;
    border: 2px solid #ffe4e9;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff758c;
    box-shadow: 0 0 0 0.25rem rgba(255, 117, 140, 0.25);
}

.service-option {
    cursor: pointer;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #ffe4e9;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.service-option:hover {
    transform: translateY(-3px);
    border-color: #ff758c;
}

.service-option.selected {
    background: linear-gradient(135deg, #fff1f1 0%, #ffe4e9 100%);
    border-color: #ff758c;
}

.submit-btn {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.4);
}
/* Appointment animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.form-floating {
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.form-floating:nth-child(1) {
    animation-delay: 0.1s;
}
.form-floating:nth-child(2) {
    animation-delay: 0.2s;
}
.form-floating:nth-child(3) {
    animation-delay: 0.3s;
}
.form-floating:nth-child(4) {
    animation-delay: 0.4s;
}

.service-option {
    opacity: 0;
    animation: scaleIn 0.5s ease forwards;
}

.service-option:nth-child(1) {
    animation-delay: 0.5s;
}
.service-option:nth-child(2) {
    animation-delay: 0.6s;
}
.service-option:nth-child(3) {
    animation-delay: 0.7s;
}

.submit-btn {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.8s;
}
/* Testimonial section styles */
.testimonials-section {
    position: relative;
    /* min-height: 100vh; */
    /* padding: 80px 0; */
    background: transparent;
}

.testimonial-card {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.2);
}

.testimonial-content {
    text-align: center;
    position: relative;
}

.stars {
    color: #ec4899;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
    position: relative;
}

.client-name {
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-role {
    color: #be185d;
    font-size: 0.9rem;
    font-weight: 500;
}

.reviews-counter {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ec4899;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-item p {
    color: #be185d;
    font-weight: 500;
    margin: 0;
}
/* Enhanced Card Effects */
.testimonial-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ec4899, #be185d);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #ec489966, #be185d66);
    top: 0;
    left: 0;
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}
/* Offers Section Layout */
.offers-section {
    position: relative;
    /* padding: 6rem 0; */
    overflow: hidden;
}

.offers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offers-title {
    color: #be185d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offers-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.limited-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fdf2f8, #fbcfe8);
    color: #be185d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
/* Offer Cards Styling */
.offer-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    margin: 1rem 0;
}

.offer-price span {
    font-size: 1rem;
    color: #be185d;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.offer-features li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.offer-features li i {
    color: #ec4899;
    margin-right: 0.5rem;
}

.offer-btn {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}
/* Card Hover Effects */
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    75% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.6);
    }
}

@keyframes borderFlow {
    0% {
        border-image-source: linear-gradient(45deg, #ec4899, #be185d, #ec4899);
    }
    50% {
        border-image-source: linear-gradient(180deg, #be185d, #ec4899, #be185d);
    }
    100% {
        border-image-source: linear-gradient(315deg, #ec4899, #be185d, #ec4899);
    }
}

@keyframes priceJump {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Apply animations to elements */
.offer-card {
    animation: float 6s ease-in-out infinite;
}

.offer-card:hover {
    animation: glow 2s ease-in-out infinite;
}

.shine-effect {
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

.offer-price {
    display: inline-block;
    animation: priceJump 2s ease-in-out infinite;
    animation-play-state: paused;
}

.offer-card:hover .offer-price {
    animation-play-state: running;
}

.offer-features li {
    opacity: 0;
    transform: translateX(-20px);
}

.offer-card:hover .offer-features li {
    animation: checkmarkPop 0.5s ease-out forwards;
}

.offer-features li:nth-child(1) {
    animation-delay: 0.1s;
}
.offer-features li:nth-child(2) {
    animation-delay: 0.2s;
}
.offer-features li:nth-child(3) {
    animation-delay: 0.3s;
}
.offer-features li:nth-child(4) {
    animation-delay: 0.4s;
}

.offer-badge {
    animation: glow 2s ease-in-out infinite;
}

.offer-btn {
    position: relative;
    overflow: hidden;
}

.offer-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-btn:hover::after {
    opacity: 1;
}
/* Footer Styles */
.footer {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), #9333ea);
}

.footer-heading {
    color: var(--bs-primary);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--bs-primary);
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: #fff;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: none;
}

.newsletter-button {
    background: var(--bs-primary);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #d61f69;
    transform: translateY(-2px);
}
/* Base styles */
.why-choose-us {
    background: linear-gradient(135deg, #fff5f7 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(236, 72, 153, 0.1),
        rgba(147, 51, 234, 0.1)
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bs-primary), #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.icon-wrapper::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--bs-primary), #9333ea);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Stats Counter */
.stats-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--bs-primary),
        #9333ea,
        var(--bs-primary)
    );
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.stat-item {
    position: relative;
    padding: 1rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.counter::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--bs-primary);
    animation: width-pulse 2s infinite;
}

/* Background animations */
.why-choose-us::before,
.why-choose-us::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(236, 72, 153, 0.1),
        rgba(147, 51, 234, 0.1)
    );
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite;
}

.why-choose-us::before {
    top: -150px;
    right: -150px;
}

.why-choose-us::after {
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes width-pulse {
    0% {
        width: 30px;
    }
    50% {
        width: 50px;
    }
    100% {
        width: 30px;
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}
/* Modal Animations */
.fade-enter {
    animation: fadeIn 0.3s ease-out;
}

.slide-up {
    animation: slideUp 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Styling */
.auth-form {
    transition: all 0.3s ease;
}

.auth-form.hidden {
    display: none;
}

.social-login-btn {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.social-login-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span {
    padding: 0 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}
.hidden {
    display: none;
}
.fade-enter {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Gallery */
.product-gallery {
    /* background: #fff; */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
}

.mainSwiper {
    width: 100%;
    height: 400px;
}

.mainSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.mainSwiper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbSwiper {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumbSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Product Info */
.product-info {
    padding: 20px;
}

.rating {
    color: #ffc107;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* Reviews */
.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Animations for elements */
.animate-delay-1 {
    animation-delay: 0.2s;
}
.animate-delay-2 {
    animation-delay: 0.4s;
}
.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Cart Section */
.quantity-selector input {
    border-radius: 5px;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Specifications Accordion */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}
.hidden {
    display: none;
}
.profile-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.large-initials {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
    margin: 0 auto;
}

.profile-dropdown {
    position: absolute;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 200px;
    z-index: 1000;
}

.profile-dropdown.show {
    display: block;
}

.dropdown-item {
    padding: 10px 20px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: var(--bs-primary);
}

.profile-section {
    display: none;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(236, 72, 153, 0.1);
}

.service-card.selected {
    border: 2px solid var(--bs-primary);
}

.time-slot {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.time-slot:hover {
    background-color: var(--bs-primary);
    color: white;
}

.time-slot.selected {
    background-color: var(--bs-primary);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.form-control:focus {
    box-shadow: none !important;
}
