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

:root {
    --sky-blue: #87CEEB;
    --light-blue: #B0E0E6;
    --dark-blue: #4682B4;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --text-gray: #666666;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #87CEEB 0%, #E0F6FF 25%, #B0E0E6 50%, #E0F6FF 75%, #87CEEB 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 20px 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.content-wrapper {
    max-width: 1500px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 0 80px rgba(135, 206, 235, 0.3),
        0 10px 40px rgba(135, 206, 235, 0.15),
        inset 0 0 120px rgba(135, 206, 235, 0.05);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    outline: 1px solid rgba(135, 206, 235, 0.3);
}

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

/* Header & Navigation */
.navbar {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 180px;
    width: auto;
}

.nav-menu-left, .nav-menu-right {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu-left a, .nav-menu-right a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.book-now-btn {
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    padding: 10px 20px !important;
    border-radius: 25px;
    color: var(--white) !important;
    text-shadow: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

.nav-menu-left a:hover, .nav-menu-right a:hover {
    color: var(--text-dark);
}

.nav-menu-left a::after, .nav-menu-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--sky-blue);
    transition: width 0.3s ease;
}

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

.book-now-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('images/1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--dark-blue);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.1);
    border-left: 4px solid var(--sky-blue);
}

.feature h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.3);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(135, 206, 235, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details {
    margin-bottom: 20px;
}

.service-details p {
    margin-bottom: 8px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-details strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
}

.view-details-btn {
    display: inline-block;
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--sky-blue);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--sky-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

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

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
}

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

.gallery-item {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 500px;
}

.gallery-item blockquote {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 500px !important;
}

.follow-us-section {
    text-align: center;
    margin-top: 50px;
}

.follow-us-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.follow-us-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

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

.map-container {
    width: 100%;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.info-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--sky-blue);
}

.info-item h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-size: 1.3rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
}

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

.contact-form button {
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info {
    text-align: right;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('images/3.jpg') center/cover no-repeat;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }
    
    .nav-menu-left, .nav-menu-right {
        display: none;
    }
    
    .nav-menu-left.active, .nav-menu-right.active {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
        text-align: center;
        padding: 120px 20px 20px;
        gap: 20px;
        z-index: 999;
        justify-content: flex-start;
        align-items: center;
    }
    
    .nav-menu-left a, .nav-menu-right a {
        font-size: 1.5rem;
        padding: 15px;
        color: var(--white) !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
        width: 100%;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo img {
        height: 120px;
    }
    
    .nav-container {
        height: 140px;
        justify-content: center;
        padding: 0 20px;
        position: relative;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        padding: 0 30px;
        line-height: 1.3;
        word-break: keep-all;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
        padding: 0 20px;
        line-height: 1.2;
        word-break: keep-all;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Services Detail Page */
.services-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-category {
    padding: 80px 0;
}

.service-category:nth-child(even) {
    background: var(--light-gray);
}

.service-category h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

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

.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.1);
    border-left: 4px solid var(--sky-blue);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li span:first-child {
    color: var(--dark-gray);
    font-weight: 500;
}

.service-list li span:last-child {
    color: var(--dark-blue);
    font-weight: 600;
    background: rgba(135, 206, 235, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price-note {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 30px;
}

/* Spa Section */
.spa-section {
    background: linear-gradient(rgba(135, 206, 235, 0.05), rgba(176, 224, 230, 0.05));
}

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

.spa-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.spa-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.kemon-info {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--sky-blue);
}

.kemon-info h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.spa-services {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spa-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.1);
    text-align: center;
}

.spa-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.spa-item p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.price-tag {
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

/* Specialty Section */
.specialty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.specialty-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.1);
}

.specialty-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.specialty-item:nth-child(even) .specialty-image {
    order: 2;
}

.specialty-item:nth-child(even) .specialty-content {
    order: 1;
}

.specialty-image {
    border-radius: 15px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.specialty-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.specialty-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.specialty-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.specialty-content ul li {
    color: var(--dark-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.specialty-content ul li::before {
    content: '•';
    color: var(--sky-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.inquiry-price {
    background: rgba(135, 206, 235, 0.2);
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

/* Booking CTA Section */
.booking-cta {
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.booking-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--white);
    color: var(--dark-blue);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Active nav link */
.nav-menu-left a.active, .nav-menu-right a.active {
    color: var(--text-dark) !important;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Responsive for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .spa-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specialty-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specialty-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .specialty-item:nth-child(even) .specialty-image,
    .specialty-item:nth-child(even) .specialty-content {
        order: initial;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Service Detail Page Styles */
.service-detail-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    color: var(--white);
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}


.back-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.service-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-detail-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-detail-content {
    padding: 80px 0;
}

.service-detail-content {
    display: block;
}

.service-detail-image {
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.2);
}

/* Service Hero Image (from service cards) */
.service-hero-image {
    margin-bottom: 40px;
    text-align: center;
}

.service-hero-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.2);
}

.service-detail-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-detail-info > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-categories, .spa-features, .extension-types, .specialty-services {
    margin-bottom: 40px;
}

.category, .package, .extension-item, .specialty-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--sky-blue);
}

.category h4, .package h4, .extension-item h5, .specialty-item h5 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--dark-gray);
    font-weight: 500;
}

.price-item span:last-child {
    color: var(--dark-blue);
    font-weight: 600;
    background: rgba(135, 206, 235, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    color: var(--dark-gray);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    color: var(--sky-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-price {
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
}

.kemon-info, .consultation-info, .process-info, .consultation-note {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.1);
    margin-bottom: 30px;
}

.kemon-info h4, .consultation-info h4, .process-info h4, .consultation-note h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.pricing-info, .price-note {
    background: rgba(135, 206, 235, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.price-note p, .pricing-info p {
    color: var(--dark-blue);
    margin: 0;
    font-size: 0.95rem;
}

/* Price Table Styles - Excel-like appearance */
.price-table-section {
    margin-bottom: 30px;
}

.price-table-section h4 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
}

/* Real table styling for Excel-like appearance */
table.price-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 20px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #d0d0d0;
}

table.price-table thead tr:first-child th {
    background: #4a90e2;
    color: white;
    font-size: 1.05rem;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #3a7bc8;
}

table.price-table thead tr:nth-child(2) th {
    background: #f0f0f0;
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    border: 1px solid #d0d0d0;
    font-size: 0.95rem;
}

table.price-table thead tr:nth-child(2) th:first-child {
    text-align: left;
    width: 70%;
}

table.price-table thead tr:nth-child(2) th:last-child {
    text-align: center;
    width: 30%;
    background: #e8f4f8;
}

table.price-table tbody tr {
    transition: background-color 0.2s ease;
}

table.price-table tbody tr:hover {
    background: #f9f9f9;
}

table.price-table tbody tr:nth-child(even) {
    background: #fafafa;
}

table.price-table tbody td {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

table.price-table tbody td:first-child {
    text-align: left;
    color: #333;
}

table.price-table tbody td.price {
    text-align: center;
    font-weight: 600;
    color: #2c5aa0;
    background: #f0f8ff;
}

.section-header {
    font-size: 1rem;
}

/* Service Navigation */
.service-navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-navigation .back-link {
    color: var(--dark-blue);
    padding: 10px 20px;
    border: 1px solid var(--dark-blue);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-navigation .back-link:hover {
    background: var(--dark-blue);
    color: var(--white);
    opacity: 1;
}

.other-services h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1rem;
}

.service-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-link {
    display: inline-block;
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.service-link.active {
    background: var(--sky-blue);
    color: var(--white);
    border-color: var(--sky-blue);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.05), rgba(70, 130, 180, 0.05));
}

.menu-image {
    text-align: center;
}

.menu-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.error-content {
    text-align: center;
    padding: 60px 20px;
}

.error-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Responsive for Service Detail */
@media (max-width: 768px) {
    .service-detail-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-image {
        position: static;
    }
    
    .service-detail-image img {
        height: 250px;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    /* Mobile table styles */
    table.price-table {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 15px;
    }
    
    table.price-table thead tr:first-child th {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    table.price-table thead tr:nth-child(2) th {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    table.price-table tbody td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    table.price-table tbody td.price {
        font-size: 0.9rem;
    }
    
    .service-navigation {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .other-services {
        text-align: center;
    }
    
    .service-links {
        justify-content: center;
        gap: 8px;
    }
    
    .service-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

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

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

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}