/* ===== CSS Variables ===== */
:root {
    --color-black: #1a1a1a;
    --color-eggshell: #f5f5f0;
    --color-gold: #c9a962;
    --color-gold-light: #d4b978;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e8e3;
    --color-white: #ffffff;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-black);
    background-color: var(--color-eggshell);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-secondary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 55%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.4s ease, 
                backdrop-filter 0.4s ease,
                border-bottom 0.3s ease;
}

.header.scrolled {
    width: 100%;
    background-color: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: padding 0.4s ease;
}

.header.scrolled .nav {
    padding: 1rem 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    min-width: auto;
    width: auto;
    transition: height 0.4s ease, min-height 0.4s ease, max-height 0.4s ease;
    object-fit: contain;
}

.header.scrolled .logo img {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 1;
    flex-wrap: nowrap;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    background-size: 100% 300%;
    background-position: 0% var(--gold-line-position, 50%);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.7), 0 0 40px rgba(201, 169, 98, 0.4), 0 0 60px rgba(201, 169, 98, 0.2);
    transition: background-position 0.1s ease-out;
    z-index: 10;
    transform: translateX(-50%);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 4rem 4rem 4rem;
    background-color: var(--color-eggshell);
    position: relative;
}


.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo img {
    height: 80px;
    width: auto;
}

.hero-tagline {
    font-size: clamp(0.55rem, 1.5vw, 0.7rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: clamp(0.2em, 2vw, 0.4em);
    color: var(--color-gold);
    margin-bottom: 1rem;
    word-spacing: 0.1em;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-black);
    margin: 1.5rem auto 2rem;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-gray);
    max-width: 420px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-text {
    color: var(--color-black);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--color-gold);
}

.btn-text svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-text:hover svg {
    transform: translateX(5px);
}

.hero-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.hero-contact-phone {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.hero-contact-phone:hover {
    color: var(--color-gold);
}

/* Behandlungen Button - Eye-catching style */
.btn-treatments {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    transition: all 0.4s ease;
}

.btn-treatments svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-treatments:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-treatments:hover svg {
    transform: translateX(5px);
}

/* Golden glow effect when scrolled */
.btn-treatments.glow {
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
    border-color: var(--color-gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.7), 0 0 60px rgba(201, 169, 98, 0.4);
    }
}

/* Hero Right - Image Side */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 100%);
}

.hero-features {
    display: flex;
    gap: clamp(0.75rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.hero-feature {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-feature-icon {
    color: var(--color-gold);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
}

.hero-feature h4 {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-white);
}

.hero-feature p {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background-color: var(--color-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-eggshell), transparent);
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.about-text h2 {
    color: var(--color-black);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--color-gray);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
}

.feature-icon {
    color: var(--color-gold);
    font-size: 1.4rem;
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 0 5rem;
    background-color: var(--color-eggshell);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    pointer-events: none;
}

.services h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-gray);
    font-size: 1.1rem;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: transparent;
    color: var(--color-gray);
    border: 1px solid var(--color-gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-black);
}

.filter-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.service-card.filter-hidden {
    display: none;
}

.service-card.filter-show {
    display: block;
}

.service-card.hidden {
    display: none !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.services-show-more {
    display: none;
    margin-top: 2rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.2);
    animation: btn-glow 2s ease-in-out infinite;
}

.services-show-more:hover {
    background-color: var(--color-gold-light);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.3);
    color: var(--color-black);
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.35);
    }
}

.services .container {
    text-align: center;
}

.service-card {
    display: block;
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card.animate-in {
    animation: cardJumpGlow 0.6s ease forwards;
}

@keyframes cardJumpGlow {
    0% {
        opacity: 0;
        transform: translateY(30px);
        box-shadow: none;
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.15);
    }
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta {
    padding: 5rem 0 0;
    background-color: #C8BD9F;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--color-eggshell) 0%, #d8d3c0 40%, #C8BD9F 100%);
    pointer-events: none;
    z-index: 1;
}


.cta h2 {
    color: var(--color-black);
}

.cta p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact Section ===== */
.contact {
    padding: 4rem 0 6rem;
    background-color: #C8BD9F;
    position: relative;
    margin-top: -1px;
}


.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--color-black);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-black);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--color-black);
}

.contact-item p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.contact-item a {
    color: #4a4a4a;
}

.contact-item a:hover {
    color: var(--color-gold);
}

.contact-map {
    border: 1px solid var(--color-gray-light);
}

.contact-map iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-black);
    color: var(--color-gray-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--color-gray);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-gray);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-left {
        padding: 12rem 2rem 3rem;
        min-height: 60vh;
    }
    
    .hero-left::after {
        display: none;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
    }
    
    .hero-right {
        min-height: 40vh;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1100px) {
    .header {
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-eggshell);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 20px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-left {
        padding: 10rem 1.5rem 2rem;
        min-height: 60vh;
    }
    
    .hero-right {
        min-height: 40vh;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .hero-features {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .hero-feature {
        flex: 1;
        min-width: 0;
    }
    
    .hero-feature h4 {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .hero-feature p {
        font-size: 0.6rem;
        line-height: 1.3;
    }
    
    .hero-image-overlay {
        padding: 1rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.mobile-hidden {
        display: none;
    }
    
    .services-show-more {
        display: inline-block;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .services {
        padding-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* ===== Smooth Scroll Offset for Fixed Header ===== */
section[id] {
    scroll-margin-top: 100px;
}

/* ===== Service Page Styles ===== */
.header-service {
    width: 100%;
    background-color: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
}

.service-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    background-size: 100% 300%;
    background-position: 0% 50%;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.7), 0 0 40px rgba(201, 169, 98, 0.4), 0 0 60px rgba(201, 169, 98, 0.2);
    z-index: 10;
    transform: translateX(-50%);
}

.service-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 4rem 4rem 4rem;
    background-color: var(--color-eggshell);
    position: relative;
}

.service-hero-right {
    position: relative;
    overflow: hidden;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.service-hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-gray);
    max-width: 420px;
    margin: 0 auto 2.5rem;
}

.service-hero-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-hero-phone {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.05em;
}

/* Service Details */
.service-details {
    padding: 8rem 0;
    background-color: var(--color-white);
    position: relative;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-eggshell), transparent);
    pointer-events: none;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.service-info h2 {
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.service-info h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-black);
    font-size: 1.3rem;
}

.service-info p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.benefit-icon {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.treatment-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.area-tag {
    background-color: var(--color-eggshell);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 2px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.service-card-info {
    background-color: var(--color-eggshell);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.service-card-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-black);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.info-value {
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-cta-card {
    background-color: var(--color-gold);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.4s ease;
}

.service-cta-card.glow {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.3);
}

.service-cta-card h3 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-cta-card p {
    color: var(--color-black);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-cta-card .btn {
    width: 100%;
    margin-bottom: 1rem;
    background-color: var(--color-black);
    color: var(--color-white);
}

.service-cta-card .btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.cta-phone {
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Service FAQ */
.service-faq {
    padding: 5rem 0;
    background-color: var(--color-eggshell);
}

.service-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: var(--color-white);
    padding: 2rem;
}

.faq-item h4 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Service Page Responsive */
@media (max-width: 992px) {
    .service-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-hero::after {
        display: none;
    }
    
    .service-hero-left {
        padding: 8rem 2rem 3rem;
        order: 1;
    }
    
    .service-hero-right {
        order: 2;
        height: 50vh;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero-left {
        padding: 7rem 1.5rem 2rem;
    }
    
    .service-hero-right {
        height: 300px;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-sidebar {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        padding: 3rem 0;
    }
    
    .service-faq {
        padding: 3rem 0;
    }
}
