/* AOS Custom Animations */
[data-aos="zoom-fade-up"] {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition-property: transform, opacity;
}

[data-aos="zoom-fade-up"].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Shine Effect */
@keyframes shine {
    0% {
        background-position: -100px;
    }
    100% {
        background-position: 300px;
    }
}

.shine-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 50px;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shine 3s infinite linear;
}
/* Treatment Cards Styling */
.treatment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 30px rgba(236, 72, 153, 0.2);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: opacity 0.3s ease;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card:hover .card-image img {
    transform: scale(1.15) rotate(-2deg);
}

.card-content {
    padding: 25px;
    text-align: center;
    position: relative;
    background: white;
}

.price {
    color: var(--bs-primary);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.price::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bs-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.treatment-card:hover .price::after {
    transform: scaleX(1);
}

.book-btn {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
    letter-spacing: 2px;
}
/* Hero Section Styling */
/* Hero Section Layout */
.hero-section {
    position: relative;
    padding: 120px 0;
    margin-bottom: 40px;
    height: 500px;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: gradientShift 3s infinite alternate;
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Decorative Line Animation */
.hero-description::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--bs-primary);
    animation: width-pulse 2s infinite;
}

/* Animations */
@keyframes gradientShift {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes width-pulse {
    0% {
        width: 100px;
    }
    50% {
        width: 150px;
    }
    100% {
        width: 100px;
    }
}
/* Modal Base Styles */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-header {
    border-bottom: 2px solid var(--bs-primary);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--bs-primary);
}

.modal-body {
    padding: 2rem;
}

/* Modal Image */
.modal-body img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.modal-body img:hover {
    transform: scale(1.02);
}

/* Modal Content Animations */
.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.modal-body ul li:nth-child(1) {
    animation-delay: 0.1s;
}
.modal-body ul li:nth-child(2) {
    animation-delay: 0.2s;
}
.modal-body ul li:nth-child(3) {
    animation-delay: 0.3s;
}
.modal-body ul li:nth-child(4) {
    animation-delay: 0.4s;
}

.modal-body ul li::before {
    content: "✓";
    color: var(--bs-primary);
    position: absolute;
    left: 0;
    animation: checkmark 0.3s ease-out forwards;
}

/* Close Button */
.modal .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.modal .close:hover {
    opacity: 1;
}

/* Book Now Button */
.modal-body .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem;
    transform: translateY(0);
    transition: transform 0.2s ease;
}

.modal-body .btn-primary:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes checkmark {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.product-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-gallery img:hover {
    transform: scale(1.02);
}

.thumbSwiper img {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    padding-left: 10px;
}

.feature-list li:before {
    content: "✓";
    color: var(--bs-primary);
    margin-right: 10px;
}

.quantity-selector input {
    width: 80px;
}

.review {
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.1);
}

.rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.specifications-section .accordion-button:not(.collapsed) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.specifications-section .accordion-button:focus {
    border-color: rgba(var(--bs-primary-rgb), 0.5);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.product-info .form-control {
    /* border-radius: 15px; */
    border: 2px solid #ffe4e9;
    padding: 7px 1rem;
    transition: all 0.3s ease;
}
