* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.spa-container {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #e8e3d9 0%, #d9d3c7 100%);
    color: #2a2a2a;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(232, 227, 217, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 117, 0.3);
    transition: all 0.4s ease;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #c9a875;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c9a875;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a875;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #c9a875;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0dbd1 0%, #d4cfc3 50%, #c9c4b8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(201, 168, 117, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) scale(1.05);
        opacity: 0.5;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
    padding: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #c9a875;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeIn 1.5s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    animation: fadeInUp 1.5s ease-out 0.5s backwards;
}

.hero-title strong {
    font-weight: 600;
    color: #c9a875;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out 0.7s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #c9a875 0%, #b8926a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 168, 117, 0.3);
    animation: fadeInUp 1.5s ease-out 0.9s backwards;
    position: relative;
    overflow: hidden;
}

.cta-button::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: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 117, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #c9a875, transparent);
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    position: relative;
    background: linear-gradient(180deg, #e8e3d9 0%, #e0dbd1 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #c9a875;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #3a3a3a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f5f0e6;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(201, 168, 117, 0.25);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a875, #e6d5b8);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 168, 117, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.service-description {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(218, 199, 175, 0.3);
}

.service-detail {
    text-align: center;
}

.service-detail-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.service-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #c9a875;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #d9d4ca 0%, #e0dbd1 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 117, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.about-text p {
    color: #5a5a5a;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #a68a5a;
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 3px solid #c9a875;
    background: rgba(201, 168, 117, 0.08);
    border-radius: 0 10px 10px 0;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a875, #e6d5b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.feature-text p {
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.3) 0%, transparent 100%);
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6d5b8 0%, #c9a875 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #c9a875;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #ccc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 117, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a875;
}

.contact-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #c9a875;
}

.contact-item p {
    margin: 0;
    color: #ddd;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 117, 0.2);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.day {
    color: #c9a875;
    font-weight: 500;
}

.time {
    color: #ddd;
}

.footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 168, 117, 0.2);
    margin-top: 4rem;
}

.footer p {
    color: #999;
    margin: 0;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 3%;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .about-content {
        gap: 3rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(232, 227, 217, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .services {
        padding: 5rem 5%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }

    .about {
        padding: 5rem 5%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about-image {
        height: 350px;
        order: -1;
    }

    .contact {
        padding: 5rem 5%;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .contact-content p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .contact-info {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

/* Responsive Small Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1rem;
    }
    .service-title {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
}