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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff5f8;
}

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

.hero-header {
    position: relative;
    z-index: 1000;
    padding: 60px 20px 50px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/massage-flower-bg.jpg') center/cover;
    opacity: 0.7;
    z-index: -2;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.75), rgba(255, 228, 240, 0.7));
    z-index: -1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #d81b60;
    text-shadow: 
        0 0 20px rgba(216, 27, 96, 0.3),
        0 2px 6px rgba(233, 30, 99, 0.2),
        0 0 10px rgba(236, 64, 122, 0.2);
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 3px 6px rgba(233, 30, 99, 0.2));
    font-family: 'Georgia', 'Times New Roman', serif;
}

.title-line {
    display: block;
    line-height: 1.2;
    font-style: italic;
    position: relative;
    background: linear-gradient(135deg, #d81b60 0%, #ec407a 50%, #f48fb1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f48fb1, #ec407a, #f48fb1, transparent);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.header-tagline {
    color: #d81b60;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
    letter-spacing: 1px;
}

.navbar {
    margin-top: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li a {
    color: #d81b60;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 30px;
    border: 2px solid #ec407a;
    border-radius: 30px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, #ec407a, #f48fb1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    border-color: #f48fb1;
}

.welcome-section {
    background: linear-gradient(to bottom, #ffffff, #fff5f8);
    padding: 80px 20px;
    border-top: 3px solid #ec407a;
    margin: 0;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-left {
    padding: 20px;
    text-align: center;
}

.welcome-title {
    background: linear-gradient(135deg, #d81b60, #ec407a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    border-bottom: 2px solid #ec407a;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.welcome-image-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    border: 3px solid rgba(236, 64, 122, 0.3);
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.welcome-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.welcome-subtitle {
    background: linear-gradient(135deg, #d81b60, #ec407a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.text-box {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.08), rgba(244, 143, 177, 0.05));
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #ec407a;
    border: 1px solid rgba(236, 64, 122, 0.3);
}

.text-box p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.services {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff5f8, #ffe4ec);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d81b60, #ec407a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.08), rgba(244, 143, 177, 0.05));
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(236, 64, 122, 0.3);
    border-left: 4px solid #ec407a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    border-color: #ec407a;
}

.service-card h3 {
    color: #d81b60;
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.15), rgba(244, 143, 177, 0.1));
    border-left: 4px solid #ff6b6b;
}

.service-card.highlight h3 {
    color: #ff4757;
    font-weight: 700;
}

.service-card.special {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.12), rgba(244, 143, 177, 0.08));
    border-left: 4px solid #d81b60;
}

.service-card.special h3 {
    color: #d81b60;
    font-weight: 700;
    font-size: 1.15rem;
}

.pricing {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffe4ec, #fff5f8);
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.08), rgba(255, 255, 255, 0.9));
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(236, 64, 122, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.35);
    border-color: #ec407a;
}

.pricing-card h3 {
    color: #d81b60;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #ec407a;
    padding-bottom: 15px;
}

.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border-left: 4px solid #ec407a;
    transition: all 0.3s ease;
}

.price-list li:hover {
    background: rgba(236, 64, 122, 0.1);
    transform: translateX(5px);
}

.price-list .duration {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-list .amount {
    color: #d81b60;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff5f8, #ffffff);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    color: #d81b60;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

.contact-form h3 {
    color: #d81b60;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(236, 64, 122, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec407a;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, #ec407a, #f48fb1);
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d81b60, #ec407a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.reviews {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #fff5f8);
}

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

.review-card {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.08), rgba(255, 255, 255, 0.9));
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(236, 64, 122, 0.3);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    border-color: #ec407a;
}

.stars {
    color: #ec407a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.reviewer-name {
    color: #d81b60;
    font-weight: 600;
    text-align: right;
}

.shop-gallery {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #fff5f8);
}

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

.gallery-item {
    position: relative;
}

.gallery-frame {
    padding: 15px;
    background: linear-gradient(135deg, #ffe4ec, #ffcdd9);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    pointer-events: none;
}

.gallery-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.35);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #fff, #ffe4ec);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::after {
    content: '🖼️';
    font-size: 3.5rem;
    opacity: 0.3;
    position: absolute;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(236, 64, 122, 0.03) 10px,
        rgba(236, 64, 122, 0.03) 20px
    );
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}

.more-about {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff5f8, #ffe4ec);
}

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

.about-card {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.08), rgba(255, 255, 255, 0.9));
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(236, 64, 122, 0.3);
    border-left: 4px solid #ec407a;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    border-color: #ec407a;
}

.about-card h3 {
    color: #d81b60;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.services-detail {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #fff5f8);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 248, 0.9));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(236, 64, 122, 0.2);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.25);
    border-color: #ec407a;
}

.service-item.special {
    border: 2px solid #ec407a;
    background: linear-gradient(135deg, rgba(255, 228, 236, 0.5), rgba(255, 245, 248, 0.95));
}

.service-item.special:hover {
    box-shadow: 0 10px 35px rgba(233, 30, 99, 0.35);
}

.service-image-placeholder {
    min-width: 280px;
    width: 280px;
    background: linear-gradient(135deg, #ffe4ec, #ffcdd9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image-placeholder::after {
    content: '📸';
    font-size: 3rem;
    opacity: 0.3;
}

.service-image-box {
    min-width: 280px;
    width: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-content {
    padding: 30px 35px;
    flex: 1;
}

.service-content h3 {
    color: #d81b60;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: Georgia, serif;
}

.service-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

footer {
    background-color: #ffe4ec;
    color: #d81b60;
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid #ec407a;
}

footer p {
    margin: 5px 0;
    color: #666;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu li a {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .site-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-header {
        min-height: 400px;
        padding: 40px 20px;
    }
    
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-image-placeholder {
        min-width: 100%;
        width: 100%;
        height: 200px;
    }
    
    .service-image-box {
        min-width: 100%;
        width: 100%;
        height: 200px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .site-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-menu li a {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .hero-header {
        min-height: 350px;
        padding: 30px 15px;
    }
    
    .welcome-section {
        padding: 40px 20px;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .text-box {
        padding: 20px;
    }
    
    .text-box p {
        font-size: 0.95rem;
    }
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.contact-button {
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.85), rgba(216, 27, 96, 0.85));
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Georgia, serif;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(236, 64, 122, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    user-select: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(236, 64, 122, 0.7);
    background: linear-gradient(135deg, rgba(240, 98, 146, 0.9), rgba(236, 64, 122, 0.9));
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 228, 236, 0.8);
}

.floating-contact:hover .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d81b60;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffe4ec;
    font-family: Georgia, serif;
    letter-spacing: 1px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin: 8px 0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff5f8, #ffe4ec);
}

.contact-option:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, #ffe4ec, #ffcdd9);
    box-shadow: 0 4px 15px rgba(236, 64, 122, 0.2);
}

.contact-option .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.call-option {
    border-left: 4px solid #4caf50;
}

.sms-option {
    border-left: 4px solid #2196f3;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .contact-options {
        min-width: 240px;
        padding: 16px;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-options {
        min-width: 220px;
        padding: 14px;
        bottom: 60px;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .contact-option {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}
