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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e1bee7 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 192, 203, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 228, 225, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37,211,102,0.28);
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 3px solid #fff;
    animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
    box-shadow: 0 12px 32px rgba(37,211,102,0.35);
    transform: translateY(-2px) scale(1.04);
}

.whatsapp-float .whatsapp-icon,
.whatsapp-float span {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
    text-align: center;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
    50% { transform: scale(1.06); box-shadow: 0 10px 28px rgba(37,211,102,0.36); }
    100% { transform: scale(1); box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
}

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

/* Homepage Styles */
body:has(.logo-container) {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.logo-container {
    margin-bottom: 60px;
}

.logo h1 {
    font-size: 3.5rem;
    color: #d81b60;
    margin: 20px 0 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.subtitle {
    color: #8e24aa;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Lotus Flower Logo */
.lotus-flower {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.petal {
    position: absolute;
    background: linear-gradient(145deg, #f48fb1, #e91e63);
    border-radius: 50% 10% 50% 10%;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.petal-1 { width: 40px; height: 60px; top: 0; left: 40px; transform: rotate(0deg); }
.petal-2 { width: 40px; height: 60px; top: 15px; left: 65px; transform: rotate(72deg); }
.petal-3 { width: 40px; height: 60px; top: 45px; left: 55px; transform: rotate(144deg); }
.petal-4 { width: 40px; height: 60px; top: 45px; left: 25px; transform: rotate(216deg); }
.petal-5 { width: 40px; height: 60px; top: 15px; left: 15px; transform: rotate(288deg); }
.petal-center {
    width: 30px;
    height: 30px;
    top: 45px;
    left: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #fce4ec);
    transform: none;
}

/* Main Buttons */
.main-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.main-btn {
    display: block;
    text-decoration: none;
    background: linear-gradient(145deg, #ffffff, #fce4ec);
    border: none;
    padding: 25px 50px;
    border-radius: 20px;
    box-shadow: 
        0 8px 25px rgba(233, 30, 99, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    text-align: center;
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(233, 30, 99, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: #8e24aa;
    margin-bottom: 5px;
}

.btn-subtext {
    display: block;
    font-size: 0.9rem;
    color: #ad1457;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 300;
    color: #d81b60;
    text-decoration: none;
}

/* Logo image sizing for navbar */
.nav-logo-img {
    height: 64px;
    width: 64px;
    display: block;
    object-fit: contain;
}

.mini-lotus {
    width: 30px;
    height: 30px;
    background: linear-gradient(145deg, #f48fb1, #e91e63);
    border-radius: 50%;
    position: relative;
}

.mini-lotus::before {
    content: '🌸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #8e24aa;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d81b60;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 30px;
}

.page-header h2 {
    font-size: 2.5rem;
    color: #d81b60;
    margin-bottom: 15px;
    font-weight: 300;
}

.page-header p {
    color: #8e24aa;
    font-size: 1.1rem;
}

/* Services */
.services-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #ad1457;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-img {
    width: 100%;
    max-width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 auto 16px;
    display: block;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.12);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h4 {
    color: #d81b60;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8e24aa;
    margin-bottom: 20px;
}

.service-btn {
    background: linear-gradient(145deg, #e91e63, #d81b60);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Additional Services */
.additional-services {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.additional-services h4 {
    text-align: center;
    color: #d81b60;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.additional-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.additional-card h5 {
    color: #8e24aa;
    margin-bottom: 10px;
    font-size: 1rem;
}

.additional-price {
    font-weight: bold;
    color: #d81b60;
    font-size: 1.2rem;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(145deg, #f48fb1, #e91e63);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    position: relative;
}