/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5f0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: #4a3520;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 90px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4b78f;
}

/* Hero Section */
.hero {
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 2rem;
    margin-top: 70px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #c0392b;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #a93226;
}

/* Promotion Section */
.promotion {
    padding: 5rem 2rem;
    background-color: #fff;
}

.promotion-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.promotion-left, .promotion-right {
    flex: 1;
    min-width: 300px;
}

.promotion h2 {
    font-size: 2.2rem;
    color: #4a3520;
    margin-bottom: 1.5rem;
    text-align: center;
}

.activity-time {
    background-color: #4a3520;
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: inline-block;
}

.price-tag {
    text-align: center;
    margin-bottom: 2rem;
}

.price-tag h3 {
    font-size: 1.5rem;
    color: #4a3520;
    margin-bottom: 0.5rem;
}

.price-note {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #c0392b;
    line-height: 1;
}

.services-list {
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f9f5f0;
    border-radius: 5px;
}

.service-number {
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #4a3520;
}

.service-name {
    flex: 1;
    font-weight: 500;
}

.service-duration, .service-price {
    padding: 0 1rem;
    color: #666;
}

.bonus-offer {
    text-align: center;
    color: #c0392b;
    font-weight: 500;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.benefit-section {
    margin-bottom: 2rem;
}

.benefit-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.circle-icon {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
}

.benefit-title h3 {
    color: #4a3520;
    font-size: 1.3rem;
}

.benefit-content p {
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.before-after {
    margin-bottom: 2rem;
}

.before-after-row {
    margin-bottom: 1.5rem;
    display: flex;
}

.before-after-label {
    background-color: #8c7356;
    color: #fff;
    padding: 0.5rem;
    writing-mode: vertical-lr;
    text-orientation: upright;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    font-weight: bold;
    margin-right: 10px;
}

.before-after-images {
    display: flex;
    flex: 1;
    gap: 10px;
}

.comparison-img {
    width: 48%;
    height: auto;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.comparison-img:hover {
    transform: scale(1.02);
}

/* Therapy note image container */
.therapy-note-container {
    margin-top: 2rem;
    text-align: center;
}

.therapy-note-image {
    width: 100%;
    max-width: 600px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: #f9f5f0;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    color: #4a3520;
    margin-bottom: 3rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card h3 {
    color: #4a3520;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-time, .service-price {
    font-weight: 700;
    color: #4a3520;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: #fff;
}

.about h2 {
    font-size: 2.2rem;
    color: #4a3520;
    margin-bottom: 3rem;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.about-image, .about-content {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-bottom: 1rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: #f9f5f0;
}

.contact h2 {
    font-size: 2.2rem;
    color: #4a3520;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.contact-info {
    flex: 2;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: #d4b78f;
    margin-right: 1.5rem;
}

.contact-text h3 {
    color: #4a3520;
    margin-bottom: 0.5rem;
}

.whatsapp-container {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whatsapp-container h3 {
    color: #4a3520;
    margin-bottom: 0.5rem;
}

.whatsapp-container p {
    margin-bottom: 1rem;
    color: #666;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    margin-right: 8px;
    /* No filter needed as we want to keep the original WhatsApp icon */
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #4a3520;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.footer-logo, .footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-logo .logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links h3, .footer-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
    color: #d4b78f;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #4a3520;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #d4b78f;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.call-button {
    background-color: #4a3520;
    color: white;
}

.call-button:hover {
    background-color: #5d4429;
    transform: scale(1.05);
}

.whatsapp-button-float {
    background-color: #25d366;
    color: white;
}

.whatsapp-button-float:hover {
    background-color: #20bd5a;
    transform: scale(1.05);
}

/* Make the button icons match their background */
.button-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Make phone icon white */
.call-button .button-icon {
    filter: brightness(0) invert(1); /* This makes the icon white */
}

/* Icons */
.icon-head-massage {
    background-image: url('head-massage-icon.png');
}

.icon-scalp {
    background-image: url('scalp-icon.png');
}

.icon-premium {
    background-image: url('premium-icon.png');
}

.icon-phone:before {
    content: "📞";
}

.icon-location:before {
    content: "📍";
}

.icon-time:before {
    content: "🕒";
}

.icon-wechat:before {
    content: "💬";
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero {
        height: auto;
        padding: 5rem 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .promotion-left, .promotion-right {
        flex: 100%;
    }
    
    .service-item {
        flex-wrap: wrap;
    }
    
    .service-name {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .before-after-row {
        flex-direction: column;
    }
    
    .before-after-label {
        writing-mode: horizontal-tb;
        width: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .before-after-images {
        flex-wrap: wrap;
    }
    
    .comparison-img {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .therapy-note-image {
        max-width: 100%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
    
    .button-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .price {
        font-size: 3rem;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .whatsapp-button {
        width: 100%;
        max-width: 250px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-button {
        width: 60px;
        height: 60px;
    }
    
    .button-icon {
        width: 35px;
        height: 35px;
    }
}

/* Animation classes */
.service-card, .promotion-left, .promotion-right, .about-image, .about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #4a3520;
        padding: 1rem;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
}

/* VIP Membership Section */
.vip-section {
    padding: 5rem 2rem;
    background-color: #f9f5f0;
    text-align: center;
  }
  
  .vip-section h2 {
    font-size: 2.5rem;
    color: #4a3520;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .vip-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
  }
  
  .vip-table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
  }
  
  .vip-table-header {
    display: flex;
    border-bottom: 2px dashed #ccc;
    font-weight: bold;
    color: #4a3520;
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  
  .vip-table-row {
    display: flex;
    border-bottom: 1px dashed #ccc;
    padding: 1rem 0;
  }
  
  .vip-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }
  
  .vip-table-row:nth-child(odd) {
    background-color: #f9f5f0;
  }
  
  .vip-notes {
    text-align: left;
    padding: 1rem;
    background-color: #f9f5f0;
    border-radius: 8px;
  }
  
  .vip-notes h3 {
    color: #4a3520;
    margin-bottom: 1rem;
  }
  
  .vip-notes ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .vip-notes li {
    margin-bottom: 0.5rem;
  }
  
  .vip-disclaimer {
    text-align: center;
    font-weight: bold;
    color: #4a3520;
    margin-top: 1rem;
  }
  
  /* Responsive styles for VIP section */
  @media (max-width: 768px) {
    .vip-container {
      padding: 1rem;
    }
    
    .vip-table-header, .vip-table-row {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .vip-section h2 {
      font-size: 2rem;
    }
    
    .vip-table-header, .vip-table-row {
      font-size: 1rem;
    }
  }