/* ============================================
   AyurNails - Luxury Beauty & Wellness Design
   Colors derived from logo: Sage Green & Mauve
   ============================================ */

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

:root {
    --sage: #6b8e7a;
    --sage-light: #8faa9a;
    --sage-pale: #d4e4db;
    --sage-dark: #4a6b56;
    --mauve: #9b7b8a;
    --mauve-light: #c4a6b5;
    --mauve-pale: #e8d8e0;
    --mauve-dark: #7a5c6b;
    --blush: #f5e6ec;
    --cream: #faf7f4;
    --warm-white: #fefcfa;
    --sand: #f0ebe4;
    --rose-gold: #b76e79;
    --charcoal: #2c2c2c;
    --text-dark: #3a3a3a;
    --text-medium: #6b6b6b;
    --text-light: #999;
    --white: #ffffff;
    --gradient-sage: linear-gradient(135deg, #6b8e7a, #8faa9a);
    --gradient-mauve: linear-gradient(135deg, #9b7b8a, #c4a6b5);
    --gradient-mixed: linear-gradient(135deg, #6b8e7a, #9b7b8a);
    --gradient-beauty: linear-gradient(135deg, #e8d8e0, #d4e4db);
    --gradient-footer: linear-gradient(135deg, #4a6b56 0%, #6b8e7a 40%, #9b7b8a 100%);
    --shadow-sm: 0 2px 10px rgba(107,142,122,0.08);
    --shadow-md: 0 8px 30px rgba(107,142,122,0.1);
    --shadow-lg: 0 20px 60px rgba(107,142,122,0.12);
    --shadow-glow-sage: 0 0 30px rgba(107,142,122,0.15);
    --shadow-glow-mauve: 0 0 30px rgba(155,123,138,0.15);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 50px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Container */
.container {
    width: min(90%, 1200px);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background: rgba(250, 247, 244, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(107, 142, 122, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.header.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.7rem;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-medium);
    transition: all var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--gradient-mixed);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--sage);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--sage);
    font-weight: 700;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--sage);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        padding-block: 0.6rem;
    }

    .logo img {
        height: 42px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 101;
    }

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

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    background: var(--gradient-mixed);
    color: var(--white);
    padding: 1.1rem 3rem;
    border-radius: var(--radius-lg);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all var(--transition);
    box-shadow: 0 6px 25px rgba(107, 142, 122, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.7s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(107, 142, 122, 0.4);
    filter: brightness(1.05);
}

.btn:hover::before {
    left: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Ayurvedische-Massage-interlaken.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
    pointer-events: none;
}

.hero-content {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(74,107,86,0.35) 0%, rgba(155,123,138,0.25) 50%, rgba(107,142,122,0.3) 100%);
    z-index: 5;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo img {
    width: 480px;
    height: auto;
    filter: drop-shadow(0 15px 50px rgba(0,0,0,0.2));
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-logo.scrolled {
    position: fixed;
    top: 0.3rem;
    left: 1rem;
    transform: translate(0, 0);
    z-index: 101;
}

.hero-logo.scrolled img {
    width: 50px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    animation: none;
}

.header .logo {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.header .logo.hidden {
    opacity: 0;
}

.hero .tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero .subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* ============================================
   Why Ayurveda Section
   ============================================ */
.why-ayurveda {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream) 100%);
    text-align: center;
    overflow: hidden;
}

.why-ayurveda::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155,123,138,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-ayurveda::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(107,142,122,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-ayurveda .container {
    position: relative;
    z-index: 1;
}

.why-ayurveda h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.why-ayurveda h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1.5px;
    background: var(--gradient-mixed);
    margin: 1.2rem auto 2rem;
    border-radius: 2px;
}

.why-ayurveda p {
    max-width: 720px;
    margin-inline: auto;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 2.1;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.why-ayurveda .cta-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--mauve);
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 5rem 0 7rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.wave-background {
    display: none;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,216,224,0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1.5px;
    background: var(--gradient-mixed);
    margin: 1.2rem auto 3rem;
    border-radius: 2px;
}

.services .container {
    max-width: 1200px;
    width: min(92%, 1200px);
    padding-inline: 1.5rem;
    position: relative;
    z-index: 1;
}

.services .container h2 {
    padding-inline: 0;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.service-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 500px;
    height: 620px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 80px rgba(107,142,122,0.2);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,58,58,0.85) 0%, rgba(58,58,58,0.2) 40%, transparent 100%);
    pointer-events: none;
    transition: all var(--transition);
    border-radius: var(--radius-md);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(58,58,58,0.9) 0%, rgba(58,58,58,0.25) 45%, transparent 100%);
}

.service-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    text-align: center;
    width: 100%;
    transform: translateY(0);
    transition: transform var(--transition);
}

.service-card:hover .service-content {
    transform: translateY(-10px);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 100%;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .service-card {
        width: 100%;
        max-width: 380px;
        height: 480px;
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding-block: 6rem;
    background-color: var(--cream);
    text-align: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
}

.about p {
    max-width: 650px;
    margin-inline: auto;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 2.1;
}

/* ============================================
   Footer (Contact integrated)
   ============================================ */
.contact {
    display: none;
}

.footer {
    background: linear-gradient(160deg, #3d4f44 0%, #4a6b56 30%, #6b8e7a 60%, #7a5c6b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-brand img {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255,255,255,0.7);
    display: block;
}

.footer-section a {
    transition: all var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   Service Pages (Massage, Naildesign, About)
   ============================================ */
.service-page {
    padding: 2rem 0 5rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
}

.service-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(212,228,219,0.3) 0%, rgba(232,216,224,0.2) 100%);
    pointer-events: none;
}

.service-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.service-text {
    padding-block: 3rem 2rem;
}

.service-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
}

.service-text h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 1.5px;
    background: var(--gradient-mixed);
    margin: 1.2rem 0 2rem;
    border-radius: 2px;
}

.service-text .intro {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 2.1;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.service-text .cta-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--mauve);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.service-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
}

.service-text h2::after {
    content: '';
    display: block;
    width: 35px;
    height: 1.5px;
    background: var(--gradient-mixed);
    margin: 0.8rem 0 2rem;
    border-radius: 2px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.service-option {
    padding: 2rem 2.2rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212,228,219,0.5);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-sage);
    border-radius: 4px 0 0 4px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.service-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sage-pale);
}

.service-option:hover::before {
    opacity: 1;
}

.service-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.service-option p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 0.3rem;
}

.service-option .price {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(212,228,219,0.4);
}

.service-option .price span {
    float: none;
    color: var(--sage);
    font-weight: 700;
    font-size: 1.1rem;
}

.quality-note {
    background: linear-gradient(135deg, var(--blush) 0%, var(--white) 100%);
    padding: 2rem 2.2rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(232,216,224,0.5);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.quality-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-mauve);
    border-radius: 4px 0 0 4px;
}

.quality-note p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.quality-note p strong {
    font-weight: 700;
    color: var(--mauve-dark);
}

.quality-note p:last-child {
    margin-bottom: 0;
}

/* About Page Certificate Box */
.about-certificate-box {
    margin-top: 3rem;
    padding: 2rem 2.2rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212,228,219,0.5);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.about-certificate-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-sage);
    border-radius: 4px 0 0 4px;
}

.about-certificate-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.about-certificate-box h2::after {
    display: none;
}

.about-certificate-box img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: var(--radius-sm);
}

.service-image {
    position: sticky;
    top: 80px;
    padding-top: 3rem;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(107,142,122,0.18);
}

@media (max-width: 900px) {
    .service-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-inline: 1.5rem;
    }

    .service-image {
        order: -1;
        position: static;
        padding-top: 1rem;
    }

    .service-image img {
        max-height: 400px;
        object-fit: cover;
    }

    .service-text {
        padding-block: 1rem 2rem;
    }

    .service-text h1 {
        font-size: 2.4rem;
    }
}

/* ============================================
   Animations & Scroll Effects
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }

    .hero-logo img {
        width: 280px;
    }

    .why-ayurveda {
        padding: 5rem 0 6rem;
    }

    .why-ayurveda h2,
    .services h2 {
        font-size: 2.4rem;
    }

    .services {
        padding: 4rem 0 5rem;
    }

    .btn {
        padding: 1rem 2.5rem;
    }

    .footer-content {
        padding: 4rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        width: 220px;
    }

    .why-ayurveda h2,
    .services h2 {
        font-size: 2rem;
    }

    .service-text h1 {
        font-size: 2rem;
    }
}

/* ============================================
   Selection & Scrollbar
   ============================================ */
::selection {
    background: rgba(155, 123, 138, 0.2);
    color: var(--text-dark);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--mauve-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mauve);
}
