

:root {
    --primary-color: #D03374;      /* Main Pink */
    --secondary-color: #8c1f4d;    /* Darker Pink */
    --accent-color: #f4a6c1;       /* Light Pink */
    --light-color: #fdf2f7;        /* Soft Background */
    --dark-color: #333333;
    --text-color: #555555;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    min-height: calc(100vh - 500px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-weight: 700;
}



.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */

.hero-section {
    background: linear-gradient(rgba(140, 31, 77, 0.85), rgba(208, 51, 116, 0.8)), 
                url('ladies photo\cover.png') no-repeat center center/cover;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--accent-color);
}

/* Book Now Buttons */
.book-now-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.transformation-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.transformation-text strong {
    display: block;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--light-color);
}

/* Carousel Styles */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    padding: 20px;
}

.review-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.review-actions {
    position: relative;
}

.review-action-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.review-action-btn:hover {
    background-color: var(--gray-light);
}

.review-action-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    min-width: 120px;
}

.review-action-menu button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 15px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.review-action-menu button:hover {
    background-color: var(--gray-light);
}

.review-action-menu button i {
    margin-right: 8px;
    width: 16px;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    line-height: 1.7;
}

.review-content p.truncated {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.review-content p.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, white);
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 10px;
    text-decoration: underline;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-btn {
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--accent-color);
    color: var(--white);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
}

/* Review Form */
.add-review-form {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

/* Form actions container */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Cancel button for edit mode */
.cancel-btn {
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid #ddd;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

/* Highlight form when in edit mode */
.add-review-form.edit-mode {
    border: 2px solid var(--accent-color);
    position: relative;
}

.add-review-form.edit-mode::before {
    content: 'Editing Review';
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Rating hint */
.rating-hint {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

/* No reviews message */
.no-reviews {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.no-reviews p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Star rating hover effect */
.star-rating i {
    transition: all 0.2s ease;
    cursor: pointer;
}

.star-rating i:hover {
    transform: scale(1.3);
}

.add-review-form h3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 1.8rem;
    cursor: pointer;
}

.star-rating i {
    transition: transform 0.2s ease;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.form-counter {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #777;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Edit Modal */
.edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 30px;
    text-align: center;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.save-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    background-color: var(--secondary-color);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
}

/* Booking Section */
.booking-section {
    text-align: center;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.booking-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}


@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .tagline {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .book-now-buttons {
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }
    
    .service-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .tagline {
        font-size: 1rem;
    }
    
    .service-btn {
        width: 180px;
        padding: 12px 20px;
    }
}