/* Total Muscle Harmony - Shared Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;500&display=swap');

/* CSS Variables */
:root {
    --blush: #F8F0F0;
    --blush-deep: #F0E4E4;
    --blush-rose: #F5E6E0;
    --sage: #B8C4B8;
    --sage-light: #D4DCD4;
    --warm-cream: #FAF8F5;
    --soft-white: #FEFDFB;
    --charcoal: #4A4A48;
    --warm-gray: #8B8680;
    --terracotta: #C9A89A;
    --terracotta-light: #E8D5CD;
    --rose: #D4A5A5;
    --rose-light: #E8D5D5;
    --mothers-pink: #F0E0E0;
    --mothers-rose: #E8D0D0;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scroll offset for anchor links */
#mothersday { scroll-margin-top: 100px; }
#welcome { scroll-margin-top: 100px; }
#services { scroll-margin-top: 120px; }
#about { scroll-margin-top: 100px; }
#contact { scroll-margin-top: 100px; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--warm-cream);
    color: var(--charcoal);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    width: 100%;
}

.nav-container.scrolled {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0.4rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-container.scrolled .logo img {
    height: 140px;
    filter: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-container.scrolled .nav-links a {
    color: var(--charcoal);
    text-shadow: none;
}

.nav-links a.active {
    color: var(--terracotta);
}

.book-btn {
    background: var(--terracotta);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1003;
}

.book-btn:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1003;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-container.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
    box-shadow: none;
}

.social-links {
    display: none;
    align-items: center;
    gap: 0.8rem;
    margin-right: 1rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-container.scrolled .social-btn {
    background: transparent;
    border-color: var(--terracotta);
}

.nav-container.scrolled .social-btn svg {
    fill: var(--charcoal);
}

.nav-container.scrolled .social-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.nav-container.scrolled .social-btn:hover svg {
    fill: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #6B5B4F;
    background-image: linear-gradient(rgba(74, 74, 72, 0.4), rgba(74, 74, 72, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 12rem 5% 5rem;
    overflow: hidden;
    width: 100%;
}

.hero-logo-large {
    margin-bottom: 2rem;
}

.hero-logo-large img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 span {
    font-style: italic;
    color: var(--rose-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    width: 80%;
    max-width: 280px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    width: 80%;
    max-width: 280px;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

/* Sections */
.section {
    padding: 4rem 5%;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 2.5rem;
}

.section-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.8rem;
    display: block;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.3;
}

.section-intro {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    padding: 0 1rem;
}

/* Mother's Day Section */
.mothers-day {
    background: linear-gradient(135deg, var(--blush-deep) 0%, var(--mothers-pink) 50%, var(--blush) 100%);
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.mothers-day::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mothers-day::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200, 168, 154, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

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

.mothers-day-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mothers-day-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
    display: block;
}

.mothers-day h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.mothers-day-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.mothers-packages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.mothers-card {
    background: var(--soft-white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(201, 168, 154, 0.12);
    border: 1px solid rgba(232, 213, 205, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mothers-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta-light), var(--rose), var(--terracotta-light));
}

.mothers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 168, 154, 0.18);
}

.mothers-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--blush-deep);
}

.mothers-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mothers-duration {
    font-size: 0.85rem;
    color: var(--terracotta);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mothers-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.mothers-includes li {
    padding: 0.6rem 0;
    color: var(--warm-gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--blush);
}

.mothers-includes li:last-child {
    border-bottom: none;
}

.mothers-includes li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-size: 0.8rem;
}

.mothers-bonus {
    background: linear-gradient(135deg, var(--blush) 0%, var(--rose-light) 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-style: italic;
}

.mothers-price-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.mothers-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--terracotta);
    font-weight: 500;
}

.mothers-total {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.mothers-cta {
    text-align: center;
    margin-top: 2rem;
}

.mothers-btn {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--rose) 100%);
    color: white;
    padding: 1.2rem 4rem;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(201, 168, 154, 0.4);
    position: relative;
    z-index: 2;
}

.mothers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 154, 0.5);
}

.mothers-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: italic;
}

/* Welcome */
.welcome {
    background: var(--soft-white);
    text-align: center;
}

.welcome-content {
    max-width: 100%;
    margin: 0 auto;
}

.welcome-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rose);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.welcome-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    font-style: italic;
}

/* Remedial Priority */
.remedial-priority {
    background: linear-gradient(135deg, var(--blush-deep) 0%, var(--terracotta-light) 100%);
    padding: 5rem 5%;
}

.remedial-priority-content {
    max-width: 1200px;
    margin: 0 auto;
}

.remedial-priority .section-header {
    margin-bottom: 3rem;
}

.remedial-priority h2 {
    font-size: 2.2rem;
}

.priority-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.priority-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.priority-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.priority-content > p {
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.priority-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.priority-feature {
    background: var(--soft-white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.priority-feature span {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.priority-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-large {
    background: var(--terracotta);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 30px rgba(201, 168, 154, 0.3);
    position: relative;
    z-index: 2;
}

.btn-large:hover {
    background: var(--sage);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    padding: 1.2rem 3rem;
    border: 2px solid var(--terracotta);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: var(--terracotta);
    color: white;
}

/* Services Preview */
.services-preview {
    background: var(--blush);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.service-card {
    background: var(--soft-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: var(--terracotta-light);
}

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

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* About */
.about {
    background: var(--warm-cream);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    order: -1;
}

.about-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    margin-top: 1.5rem;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.credentials {
    background: var(--soft-white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--sage);
}

.credentials h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.credentials ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.credentials li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.credentials li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sage);
}

/* Testimonials */
.testimonials {
    background: var(--soft-white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--blush);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--terracotta);
    opacity: 0.3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 500;
    color: var(--terracotta);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Services Full */
.services-full {
    background: var(--warm-cream);
}

.service-category {
    margin-bottom: 3rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.treatments-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.treatment-card {
    background: var(--soft-white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--blush-deep);
}

.treatment-card.featured {
    border: 2px solid var(--terracotta);
    position: relative;
}

.treatment-card.featured::before {
    content: 'Primary Service';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--terracotta);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
    font-family: 'Lato', sans-serif;
}

.treatment-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--blush);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.treatment-card.featured .treatment-header {
    padding-top: 2rem;
}

.treatment-header h4 {
    font-size: 1.2rem;
    color: var(--charcoal);
}

.duration-badge {
    background: var(--sage-light);
    color: var(--charcoal);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.treatment-body {
    padding: 1.2rem 1.5rem;
}

.treatment-body p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.treatment-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--terracotta);
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.book-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 2px;
    position: relative;
    z-index: 2;
}

.book-link:hover {
    color: var(--terracotta);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--blush);
    font-size: 0.95rem;
    color: var(--charcoal);
}

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

.pricing-list .time {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

/* Head Spa Detail */
.head-spa-detail-section {
    background: var(--blush);
}

.head-spa-highlight {
    background: linear-gradient(135deg, var(--blush) 0%, var(--terracotta-light) 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
    margin: 2rem auto 0;
    text-align: center;
}

.head-spa-highlight h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.head-spa-highlight > p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.head-spa-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.head-spa-card {
    background: var(--soft-white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
}

.head-spa-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.head-spa-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.head-spa-card .price {
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* Contact */
.contact {
    background: var(--blush);
}

.contact-container {
    max-width: 100%;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-method {
    padding: 1.5rem;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--soft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.contact-method p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-method a {
    color: var(--terracotta);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.hours-box {
    background: var(--soft-white);
    padding: 1.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    display: inline-block;
    width: 100%;
    max-width: 320px;
}

.hours-box h4 {
    margin-bottom: 0.8rem;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.hours-box p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.8);
    padding: 3rem 5% 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--terracotta);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--soft-white);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 1.2rem;
}

.mobile-nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--blush);
}

.mobile-nav-links a.active {
    color: var(--terracotta);
}

.mobile-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--blush);
}

.mobile-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--blush);
    border: 1px solid var(--terracotta-light);
}

.mobile-social-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--charcoal);
    transition: all 0.3s ease;
}

.mobile-social-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.mobile-social-btn:hover svg {
    fill: white;
}

.close-menu {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Header for Inner Pages */
.page-header {
    background: linear-gradient(135deg, var(--blush-deep) 0%, var(--terracotta-light) 100%);
    padding: 10rem 5% 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .hero-logo-large {
        display: none !important;
    }

    #mothersday { scroll-margin-top: 120px; }
    #welcome { scroll-margin-top: 120px; }
    #services { scroll-margin-top: 120px; }
    #about { scroll-margin-top: 120px; }
    #contact { scroll-margin-top: 120px; }

    .nav-container {
        padding: 0.8rem 5%;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .nav-container.scrolled {
        padding: 0.4rem 5%;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .logo img {
        height: 200px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }

    .nav-container.scrolled .logo img {
        height: 160px;
        filter: none;
    }

    .mobile-menu-btn span {
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    .nav-container.scrolled .mobile-menu-btn span {
        background: var(--charcoal);
        box-shadow: none;
    }

    .nav-links {
        display: flex !important;
    }

    .social-links {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .hero {
        background-attachment: fixed;
        padding: 10rem 5% 5rem;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        width: auto;
        max-width: none;
    }

    .section h2 {
        font-size: 2.5rem;
    }

    .mothers-day h2 {
        font-size: 2.8rem;
    }

    .mothers-packages {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .mothers-card {
        padding: 3rem 2.5rem;
    }

    .priority-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .priority-image {
        height: 450px;
    }

    .priority-cta {
        flex-direction: row;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-image {
        height: 220px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-image {
        height: 500px;
        order: 0;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .treatments-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .treatment-card.featured {
        grid-column: 1 / -1;
    }

    .head-spa-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .page-header {
        padding: 8rem 5% 4rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

/* Mobile Specific */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .nav-container {
        padding: 0.4rem 4% 0.4rem 3%;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .logo img {
        height: 140px;
        filter: none;
    }

    .mobile-menu-btn span {
        background: var(--charcoal);
        box-shadow: none;
    }

    .book-btn {
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    .social-links {
        display: none !important;
    }

    .hero-logo-large {
        display: none;
    }

    .hero-content {
        padding-top: 2rem;
    }
}
