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

:root {
    /* Modern Pink Palette */
    --primary: #ff6b9d;
    --primary-light: #ff8fb3;
    --primary-dark: #e91e63;
    --secondary: #fce4ec;
    --accent: #ff4081;
    --rose-gold: #d4a5a5;
    --gold: #ffd700;
    
    /* Neutral Colors */
    --bg-color: #fff5f7;
    --bg-white: #ffffff;
    --text: #2d3436;
    --text-light: #636e72;
    --text-muted: #b2bec3;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(255, 107, 157, 0.1);
    --shadow-md: 0 8px 30px rgba(255, 107, 157, 0.15);
    --shadow-lg: 0 20px 40px rgba(255, 107, 157, 0.2);
    --glass: rgba(255, 255, 255, 0.85);
    --border: rgba(255, 107, 157, 0.2);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: linear-gradient(135deg, #fff5f7 0%, #ffeef2 100%);
    overflow-x: hidden;
}

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

h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;          /* ← Add this line */
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Modern Header - Glassmorphism */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}

/* Modern Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

/* Modern Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 64, 129, 0.1) 0%, transparent 50%),
        url('images/placeholder.png') center/cover;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
    background: none;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section - Modern Cards */
.services-section {
    padding: 6rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.service-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::after {
    transform: scaleX(1);
}

.service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials - Glass Cards */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 64, 129, 0.05) 100%);
    z-index: -1;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3rem;
    max-width: 800px;
    margin: 0 10px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 12rem;
    color: rgba(255, 107, 157, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.9), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

/* Forms - Modern Input */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

select.form-control {
    cursor: pointer;
}

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

/* Footer - Dark Modern */
footer {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.footer-column h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column p {
    color: #b2bec3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #636e72;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--glass);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0 1rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Services Page - Modern Cards */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text);
}

.filter-chip:hover,
.filter-chip.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.price-info {
    flex: 1;
}

.price-info h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.price-info p {
    color: var(--text-light);
    max-width: 600px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* Gallery - Masonry Style */
.gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: white;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.9), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

#lightbox.active {
    display: flex;
}

#lightboxImg {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Contact Page - Modern Layout */
.contact-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.contact-hero h2 {
    -webkit-text-fill-color: white;
    color: white;
    font-size: 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.contact-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.contact-card h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #fff0f3 100%);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-md);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .price-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* COLOR COORDINATION FIXES */

/* 1. Hero Section - White text on pink gradient background */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9) 0%, rgba(255, 64, 129, 0.85) 100%), 
                url('images/placeholder.png') center/cover;
}

.hero-content h2 {
    font-size: 4rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* 2. Section Headers - Dark text on light pink background */
.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* 3. Services Page - Dark text on white/light cards */
.service-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.price-info h3 {
    font-size: 1.4rem;
    color: #2d3436;  /* Dark gray for contrast */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-info p {
    color: #636e72;  /* Medium gray */
    line-height: 1.6;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);  /* Dark pink */
    background: none;
    -webkit-text-fill-color: var(--primary-dark);
}

.category-filter .filter-chip {
    color: var(--text);
    background: white;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.category-filter .filter-chip.active {
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: transparent;
}

/* Category badges */
.service-category-badge {
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 4. Gallery - White text on pink gradient overlay */
.gallery-overlay {
    background: linear-gradient(to top, rgba(233, 30, 99, 0.95) 0%, rgba(255, 107, 157, 0.8) 50%, transparent 100%);
    padding: 2rem;
    color: #ffffff;  /* Pure white */
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

/* Filter buttons */
.gallery-filter .filter-btn {
    color: var(--text);
    background: white;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.gallery-filter .filter-btn.active {
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* 5. Contact Page - White text on pink hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.contact-hero h2 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Contact cards - Dark text on glass white */
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.contact-card h4 {
    color: var(--primary-dark);  /* Dark pink */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #636e72;  /* Gray */
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

/* Form labels */
.contact-form-wrapper label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* 6. Footer - Light text on dark background */
footer {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
}

.footer-column h3 {
    color: var(--primary-light);  /* Light pink */
    font-size: 1.3rem;
}

.footer-column p {
    color: #b2bec3;  /* Light gray */
}

.footer-column ul li {
    color: #dfe6e9;  /* Off-white */
}

.footer-column a {
    color: #dfe6e9;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.copyright {
    color: #636e72;  /* Gray */
}

/* 7. Navigation - Dark text on white/glass header */
.nav-menu a {
    color: #2d3436;  /* Dark gray */
    font-weight: 500;
}

.nav-menu a.active {
    color: var(--primary-dark);  /* Dark pink */
}

/* 8. Buttons - White text on pink gradient */
.btn {
    color: #ffffff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.btn-outline {
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* 9. Service Cards CTA - Pink text on light pink bg */
.cta-box {
    background: linear-gradient(135deg, #fff0f3 0%, #fff5f7 100%);
    border: 2px dashed rgba(255, 107, 157, 0.3);
}

.cta-box h3 {
    color: var(--primary-dark);
}

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

/* 10. Lightbox - White text on black bg */
#lightboxCaption {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 11. Testimonials - Dark text on glass white */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-card p {
    color: #2d3436;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 12. Form inputs - Dark text */
.form-control {
    color: #2d3436;
    background: #ffffff;
}

.form-control::placeholder {
    color: #b2bec3;
}

/* 13. Links */
a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

/* 14. Price tags in services */
.service-meta .price {
    color: var(--primary-dark);
    font-weight: 700;
}

.service-meta .duration {
    color: #636e72;
}
/* MODERN HERO WITH VIDEO/PHOTO BACKGROUND */

.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Options */
.hero-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.85) 0%, rgba(255, 64, 129, 0.75) 50%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 4.5rem;
    color: #ffffff !important;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

/* Messaging Buttons */
.hero-messaging {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-messenger {
    background: linear-gradient(135deg, #0084FF 0%, #00C6FF 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-messenger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.3);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h2 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .floating-badge { display: none; }
    .hero-messaging { flex-direction: column; }
}
/* Hide SMS button on desktop/tablet */
.btn-sms {
    display: none;
}

/* Show SMS button only on mobile */
@media (max-width: 768px) {
    .btn-sms {
        display: inline-flex;
    }
}
