* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D99DA2; /* Rose Gold */
    --primary-dark: #C48B91; /* Darker Rose Gold */
    --dark: #FDF6F9; /* Very Light Blush */
    --dark-light: #FFFFFF; /* Pure White */
    --light: #FFFFFF; /* Pure White */
    --accent: #3A2D5E; /* Deep Plum */
    --accent-light: #F6E5E9; /* Soft Pink */
    --text: #3A2D5E; /* Deep Plum */
    --text-light: #7A6B7D; /* Medium Plum */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 246, 249, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(217, 157, 162, 0.2);
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.logo {
    color: #3A2D5E;
}

.nav-link {
    color: #3A2D5E;
}

.nav-link:hover {
    color: #D99DA2;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo h1 {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.5rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.rating-badge {
    position: absolute;
    top: 120px;
    right: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 229, 233, 0.8) 100%);
    border: 2px solid rgba(217, 157, 162, 0.3);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    z-index: 20;
    animation: slideInRight 0.8s ease-out forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rating-badge .stars {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
    animation: twinkle 2s ease-in-out infinite;
}

.rating-badge .rating-text {
    font-size: 2rem;
    font-weight: 800;
    color: #3A2D5E;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.rating-label {
    font-size: 0.8rem;
    color: #4E3D58;
    font-weight: 500;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 157, 162, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(58, 45, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -1px;
}

.title-word {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
}

.cta-button {
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(58, 45, 94, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(58, 45, 94, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(217, 157, 162, 0.12);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(58, 45, 94, 0.1);
    bottom: 0;
    right: 0;
    animation-delay: 1s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: rgba(217, 157, 162, 0.08);
    bottom: 50px;
    left: 50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-banner-image {
    width: 100%;
    max-width: 340px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    object-fit: cover;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

@media (max-width: 900px) {
    .hero-banner-image {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .hero-banner-image {
        max-width: 220px;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.emoji-large {
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 13px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 6px;
    background: var(--primary);
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ========== SERVICES SECTION ========== */
.services,
.pricing,
.contact {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 30px;
}

.hero-title,
.section-header h2,
.service-card h3,
.category-title,
.contact .section-header h2,
.footer p {
    color: var(--text) !important;
    opacity: 1 !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.title-word {
    display: block;
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 229, 233, 0.9) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(217, 157, 162, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 245, 220, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.15) 0%, rgba(212, 176, 138, 0.1) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.card-lashes .service-icon { animation-delay: 0s; }
.card-nails .service-icon { animation-delay: 0.2s; }
.card-hair .service-icon { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 15px auto 0;
    border-radius: 12px;
    display: block;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ========== PRICING SECTION ========== */
.pricing {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 229, 233, 0.8) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(217, 157, 162, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.pricing-category {
    background: linear-gradient(135deg, rgba(246, 229, 233, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(217, 157, 162, 0.2);
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lashes-category { animation-delay: 0.1s; }
.nails-category { animation-delay: 0.2s; }
.hair-category { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-title {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.price-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(217, 157, 162, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-name {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.price {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-subcategory {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
}

.pricing-subcategory:last-child {
    border-bottom: none;
}

.subcategory-name {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    padding: 0 5px;
}

.terms-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed rgba(245, 245, 220, 0.2);
}

.term-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(245, 245, 220, 0.08);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.term-icon {
    font-size: 2rem;
}

.term-item p {
    color: var(--text);
    line-height: 1.6;
}

.term-item strong {
    color: var(--primary);
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 229, 233, 0.8) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(217, 157, 162, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-icon {
    font-size: 2rem;
    color: var(--primary);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-container {
    background: rgba(245, 245, 220, 0.08);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(245, 245, 220, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.gallery-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gallery-item p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.gallery-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

.gallery-image {
    width: 100%;
    max-width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(217, 157, 162, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* ========== BOOKING FORM ========== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    background: var(--accent-light);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--light);
    box-shadow: 0 0 20px rgba(212, 175, 85, 0.2);
}

/* Date Input Styling */
.form-group input[type="date"] {
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.3);
    cursor: pointer;
}

/* Select Dropdown Styling */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 10px 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.time-slot:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.time-slot.available {
    cursor: pointer;
}

.time-slot.booked {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 100, 100, 0.3);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary) 0%, #f0c868 100%);
    border-color: var(--primary);
    color: #000;
    font-weight: 700;
}

/* File Input */
.file-input {
    padding: 15px !important;
    cursor: pointer;
}

.file-input::file-selector-button {
    background: linear-gradient(135deg, var(--primary) 0%, #f0c868 100%);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px;
}

.file-input::file-selector-button:hover {
    opacity: 0.9;
}

/* Image Preview */
.image-preview {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.image-preview img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    object-fit: cover;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(90, 74, 58, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
    margin-top: -10px;
}

/* ========== OPTIONAL LABEL STYLING ========== */
.optional-label {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85rem;
}

/* ========== PRICE SUMMARY STYLING ========== */
.price-summary {
    background: rgba(217, 157, 162, 0.1);
    border-left: 4px solid var(--primary);
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-top: 10px;
    display: none;
}

.price-summary.show {
    display: block;
}

#priceBreakdown {
    color: var(--text);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--accent-light);
    color: var(--text);
    text-align: center;
    padding: 30px;
    border-top: 2px solid var(--primary);
    margin-top: 40px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

/* ========== ANIMATIONS ========== */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .rating-badge {
        top: 90px;
        right: 20px;
        padding: 15px 20px;
    }

    .rating-badge .stars {
        font-size: 1.2rem;
    }

    .rating-badge .rating-text {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-image-placeholder {
        font-size: 8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 20px;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .services-grid,
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .services,
    .pricing,
    .contact {
        padding: 50px 1rem;
    }

    .floating-circle {
        opacity: 0.05;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}