/* CSS Variables */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #E8B4CB;
    --primary-dark: #D4A5C0;
    --secondary-color: #F8E8F0;
    --accent-color: #F0C2D4;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --light-gray: #FDF9FB;
    --shadow: 0 4px 20px rgba(232, 180, 203, 0.15);
    --shadow-hover: 0 8px 30px rgba(232, 180, 203, 0.25);
    --pink-gradient: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    --pink-accent: #ec4899;
    --pink-light: #f472b6;
    --pink-lighter: #f9a8d4;
    --pink-dark: #831843;
    --pink-darker: #9d174d;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 232, 240, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(232, 180, 203, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(248, 232, 240, 0.95);
    box-shadow: 0 4px 30px rgba(232, 180, 203, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-contact a {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.nav-contact a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--pink-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f9a8d4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--pink-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.personal-intro {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--pink-darker);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--pink-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-dark);
    border: 2px solid var(--pink-light);
}

.btn-secondary:hover {
    background: var(--pink-light);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-accent);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--pink-darker);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
}

/* Enhanced Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--pink-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--pink-darker);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-accent), var(--pink-light), var(--pink-lighter));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
    border-color: rgba(244, 114, 182, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--pink-accent);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--pink-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--pink-light);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--pink-gradient);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-text-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.1);
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.feature h4 {
    color: var(--pink-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(236, 72, 153, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--pink-gradient);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f9a8d4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-accent), var(--pink-light), var(--pink-lighter));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
    border-color: rgba(244, 114, 182, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-stars .star {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.2));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--pink-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 3rem;
    color: var(--pink-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 114, 182, 0.2);
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--pink-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author-location {
    display: block;
    font-size: 0.9rem;
    color: var(--pink-darker);
    margin-bottom: 3px;
}

.author-service {
    display: block;
    font-size: 0.85rem;
    color: var(--pink-light);
    font-weight: 500;
    background: rgba(244, 114, 182, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--pink-dark);
    margin-bottom: 20px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--pink-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(244, 114, 182, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    color: var(--pink-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p, .contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--pink-accent);
}

/* Enhanced Contact Form */
.contact-form {
    background: var(--pink-gradient);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
}

.contact-form h3 {
    color: var(--pink-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form input,
.form select,
.form textarea {
    padding: 15px;
    border: 2px solid rgba(244, 114, 182, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--pink-light);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
    transform: translateY(-2px);
}

.form textarea {
    resize: vertical;
    min-height: 120px;
}

.form button {
    background: var(--pink-accent);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.form button:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.form button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--pink-darker);
    margin-top: 10px;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    color: var(--pink-dark);
    margin-bottom: 20px;
}

.location-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.location-details {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
}

.location-details h3 {
    color: var(--pink-accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.location-details p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-features {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pink-darker);
    font-weight: 500;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Enhanced Footer */
.footer {
    background: var(--pink-gradient);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--pink-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--pink-accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.footer-social a:hover {
    background: var(--pink-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 114, 182, 0.2);
    padding-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Header Mobile */
    .nav {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
        padding: 8px 0 !important;
    }
    
    .nav h1 {
        font-size: 1.2rem !important;
        margin: 0 !important;
        line-height: 1.1 !important;
    }
    
    .nav-contact a {
        width: 100% !important;
        max-width: 180px !important;
        margin: 0 auto !important;
        padding: 6px 12px !important;
        font-size: 0.85rem !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 50px !important;
        text-align: center !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-image {
        order: 2 !important;
        width: 100% !important;
    }
    
    .hero-image img {
        width: 100% !important;
        max-width: 350px !important;
        height: 350px !important;
        object-fit: cover !important;
        border-radius: 15px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .hero-text {
        order: 1 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .personal-intro {
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 15px 20px !important;
        text-align: center !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .service-card {
        padding: 30px 20px !important;
        margin: 0 10px !important;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    .about-text {
        padding: 20px !important;
        margin: 10px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .feature {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px !important;
        margin: 10px 0 !important;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
    }
    
    .gallery-item {
        width: 100% !important;
        height: 150px !important;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    
    .testimonial-card {
        padding: 20px 15px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    /* Contact Mobile */
    .contact-content,
    .location-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-form {
        padding: 25px 20px !important;
        margin: 0 10px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
    }
    
    /* Location Mobile */
    .location-map {
        height: 300px !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .location-map {
        height: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Success/Error Messages */
.message {
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--accent-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.nav-brand span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.phone-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    position: relative;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.personal-intro {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    white-space: pre-line;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        max-width: 300px;
        height: 400px;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8B4B8C;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 75, 140, 0.1), rgba(139, 75, 140, 0.05));
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--secondary-color) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.3rem;
    color: #8B4B8C;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight i {
    font-size: 1.5rem;
    color: #8B4B8C;
}

.highlight span {
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B4B8C;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #8B4B8C;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4B8C;
    box-shadow: 0 0 0 3px rgba(139, 75, 140, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--accent-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.hero-img {
    animation: fadeInUp 1s ease-out;
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 4/5;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 18px;
    font-weight: 600;
}



/* Location Map Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.location-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #BE185D;
    margin-bottom: 20px;
}

.address {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.address i {
    color: #E8B4CB;
    margin-right: 10px;
    font-size: 1.2rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature i {
    color: #E8B4CB;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature span {
    color: #374151;
    font-weight: 500;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(232, 180, 203, 0.3);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive for Location Section */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .location-details h3 {
        font-size: 1.8rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .location-features {
        justify-content: center;
        align-items: center;
    }
    
    .feature {
        justify-content: center;
    }
}



/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f9a8d4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #831843;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials .section-header p {
    font-size: 1.1rem;
    color: #9d174d;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(219, 39, 119, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #f472b6, #f9a8d4);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(219, 39, 119, 0.15);
    border-color: rgba(244, 114, 182, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-stars .star {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(219, 39, 119, 0.2));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #f472b6;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 3rem;
    color: #f472b6;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 114, 182, 0.2);
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #831843;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author-location {
    display: block;
    font-size: 0.9rem;
    color: #9d174d;
    margin-bottom: 3px;
}

.author-service {
    display: block;
    font-size: 0.85rem;
    color: #f472b6;
    font-weight: 500;
    background: rgba(244, 114, 182, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Mobile Responsiveness for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .testimonial-text {
        padding: 0 10px;
    }
}


/* Add Review Section */
.add-review-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px dashed rgba(244, 114, 182, 0.3);
    transition: all 0.3s ease;
}

.add-review-section:hover {
    border-color: rgba(244, 114, 182, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

.add-review-content {
    max-width: 500px;
    margin: 0 auto;
}

.add-review-text {
    font-size: 1.1rem;
    color: var(--pink-darker);
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-add-review {
    background: var(--pink-accent);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-add-review:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.review-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.review-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.review-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(244, 114, 182, 0.2);
    background: var(--pink-gradient);
    border-radius: 20px 20px 0 0;
}

.review-modal-header h3 {
    color: var(--pink-dark);
    font-size: 1.5rem;
    margin: 0;
}

.review-modal-close {
    font-size: 2rem;
    color: var(--pink-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.review-modal-close:hover {
    background: rgba(244, 114, 182, 0.1);
    color: var(--pink-dark);
}

/* Review Form */
.review-form {
    padding: 30px;
}

.review-form-group {
    margin-bottom: 25px;
}

.review-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--pink-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(244, 114, 182, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.review-form-group input:focus,
.review-form-group select:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--pink-light);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
}

.review-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive Star Rating */
.star-rating-responsive {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.star-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.star-btn:hover {
    background-color: rgba(236, 72, 153, 0.1);
    transform: scale(1.05);
}

.star-btn.active {
    color: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.star-btn:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

.rating-display {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 10px;
    font-style: italic;
}

/* Form Actions */
.review-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 114, 182, 0.2);
}

.btn-cancel {
    background: transparent;
    color: var(--pink-darker);
    border: 2px solid rgba(244, 114, 182, 0.3);
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(244, 114, 182, 0.1);
    border-color: rgba(244, 114, 182, 0.5);
}

.btn-submit {
    background: var(--pink-accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-submit:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success Message */
.review-success {
    text-align: center;
    padding: 40px 30px;
    color: var(--pink-dark);
}

.review-success h3 {
    color: var(--pink-accent);
    margin-bottom: 15px;
}

.review-success p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .add-review-section {
        margin-top: 30px;
        padding: 30px 15px;
    }
    
    .review-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .review-modal-header {
        padding: 20px;
    }
    
    .review-form {
        padding: 20px;
    }
    
    .review-form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .add-review-text {
        font-size: 1rem;
    }
    
    .btn-add-review {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .star-btn {
        min-width: 48px;
        min-height: 48px;
        font-size: 1.8rem;
    }
}


/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.image-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: var(--pink-light);
}

.image-modal-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Gallery item hover effect for clickability */
.gallery-item img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Desktop-only spacing for feature boxes */
@media (min-width: 768px) {
    .feature {
        padding-right: 30px;
    }
}

/* Responsive styles for about section */
@media (max-width: 768px) {
    .about-text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .feature {
        max-width: 300px;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

