/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
    background-color: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo .site-logo-link {
    display: block;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

    .main-nav ul {
        display: flex;
        gap: 15px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-nav .mobile-nav-close {
        display: none;
    }

    .main-nav li {
    position: relative;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 100%;
}

.main-nav .current-menu-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media (max-width: 1100px) {
    .main-nav ul {
        gap: 15px;
    }
    .logo .site-title { font-size: 1.2rem; }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 60px 30px 100px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2000;
        overflow-y: auto;
    }

    .main-nav .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 10px;
        display: block;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px; /* Space before CTA */
    }

    .main-nav li {
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a:not(.btn) {
        font-size: 0.9rem;
        display: block;
        padding: 12px 0;
    }

    .header-cta {
        display: none; /* Hide CTA in header on tablet, move to nav if desired */
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav .btn-mobile-cta {
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        padding: 15px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .main-nav .btn-mobile-cta:hover {
        background-color: #b08d4b !important;
        border-color: #b08d4b !important;
        color: var(--white) !important;
        transform: translateY(-2px);
    }

    .mobile-contact-info {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .m-contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: #666;
    }

    .m-contact-item i {
        color: var(--accent-color);
        width: 20px;
        text-align: center;
    }

    .m-contact-item a {
        color: inherit;
        font-size: 0.9rem;
        display: inline;
    }

    .nav-mobile-only {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-mobile-only {
    display: none;
}

/* ============================================
   BREADCRUMBS STYLES
   ============================================ */
.breadcrumbs-nav {
    background-color: #f8f8f8;
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

.breadcrumbs-nav .rank-math-breadcrumb {
    color: #888;
}

.breadcrumbs-nav .rank-math-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-nav .rank-math-breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumbs-nav .rank-math-breadcrumb .separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumbs-nav .rank-math-breadcrumb .last {
    color: #555;
    font-weight: 600;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column address {
    font-style: normal;
    line-height: 1.8;
}

.footer-column address a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

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

.legal-links {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.legal-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* .footer-bottom styles moved to footer.css */

body.menu-open {
    overflow: hidden;
}

/* ============================================
   GLOBAL UTILITIES
   ============================================ */
.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}
.text-center.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

/* ============================================
   HERO STYLES
   ============================================ */
.hero {
    background-size: cover;
    background-position: center;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-tagline {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title,
.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text,
.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: white;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ============================================
   TRUST BAR STYLES
   ============================================ */
.trust-bar {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.trust-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
}

.trust-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* ============================================
   TEASER STYLES
   ============================================ */
.teaser-section {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.teaser-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.teaser-card,
.card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.teaser-card:hover,
.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.teaser-card h3,
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E2A;
}

.teaser-card p,
.card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-link,
.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.card-link:hover,
.link-arrow:hover {
    text-decoration: underline;
}

.card-link i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}

.card-link:hover i {
    margin-left: 10px;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.solution-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.solution-item:hover {
    border-color: var(--accent-color);
}

.sol-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sol-title {
    font-weight: bold;
    font-size: 0.9rem;
    color: #444;
}

/* ============================================
   CEO BANNER
   ============================================ */
.ceo-banner {
    background: linear-gradient(to right, var(--footer-bg), var(--primary-color));
    color: white;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ceo-banner .container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.ceo-content {
    flex: 1;
    padding-right: 50px;
    z-index: 2;
}

.ceo-banner h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.ceo-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ceo-img {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: -20px 20px 0 rgba(197, 160, 89, 0.2);
}

.ceo-banner .btn {
    background: white;
    color: var(--primary-color);
}

.ceo-banner .btn:hover {
    background: var(--accent-color);
    color: white;
}

/* ============================================
   ABOUT SHORT STYLES
   ============================================ */
.about-section {
    padding: 80px 0;
}

.about-grid,
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 4px;
}

.about-text {
    flex: 1;
}

.about-text span {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E2A;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text a {
    color: var(--dark);
    border-bottom: 1px solid var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.about-text a:hover {
    color: var(--accent-color);
}

.image-placeholder {
    background-color: #eee;
    aspect-ratio: 4/5;
    border-radius: 8px;
}

.about-content p {
    margin-bottom: 20px;
}

/* ============================================
   CTA SECTION STYLES
   ============================================ */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ============================================
   PAGE HERO STYLES
   ============================================ */
.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.page-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ============================================
   DRIP SPA STYLES
   ============================================ */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-box {
    background-color: var(--bg-color);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin-top: 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-item {
    background: var(--white);
    padding: 30px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-item {
    border: 1px solid var(--accent-color);
    background-color: rgba(197, 160, 89, 0.03);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.menu-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.recommendation, .package {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--primary-color);
}

.injections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.injection-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.injection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.injection-card .meta {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* ============================================
   AESTHETICS STYLES
   ============================================ */
.visual-placeholder {
    background-color: #f0f0f0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed var(--accent-color);
    color: var(--accent-color);
}

.treatment-list {
    max-width: 900px;
    margin: 0 auto;
}

.treatment-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.treatment-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.treatment-header h3 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.treatment-meta {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.treatment-body .tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: block;
}

.treatment-details {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed #eee;
}

.treatment-details h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 30px;
}

.slider-placeholder {
    background-color: #eee;
    height: 400px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PREMIUM SERVICE PAGE TEMPLATE (V2)
   ============================================ */
.service-hero {
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(107, 127, 104, 0.7); /* Professional greenish overlay */
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 { 
    font-size: 3.5rem; 
    color: white; 
    margin: 0; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); 
}

.service-hero p { 
    font-size: 1.2rem; 
    margin-top: 10px; 
    font-weight: 300; 
    letter-spacing: 1px; 
}

/* 2. QUICK FACTS BAR */
.quick-facts {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-top: -40px; 
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.facts-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.fact-item {
    flex: 1;
    min-width: 150px;
}

.fact-item i { 
    color: var(--accent-color); 
    font-size: 1.5rem; 
    margin-bottom: 8px; 
    display: block;
}

.fact-label { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: #888; 
    display: block; 
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fact-value { 
    font-weight: bold; 
    color: var(--primary-color); 
    font-size: 1.1rem;
}

/* 3. CONTENT & INTRO */
.service-content { padding: 80px 0 40px; }
.intro-text { 
    font-size: 1.25rem; 
    line-height: 1.9; 
    text-align: center; 
    max-width: 850px; 
    margin: 0 auto; 
    color: #444; 
    font-weight: 300;
}

/* 4. APPLICATIONS GRID (V2) */
.applications-section { background: white; padding: 80px 0; }
.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.app-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #fafafa;
    border-radius: 4px;
    transition: 0.3s;
}

.app-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.app-icon { 
    color: var(--accent-color); 
    margin-right: 20px; 
    font-size: 1.2rem;
    margin-top: 3px;
}

.app-text h4 { 
    margin: 0 0 8px 0; 
    color: var(--text-color); 
    font-family: var(--font-body); 
    font-weight: 700;
    font-size: 1.1rem;
}

.app-text p { 
    margin: 0; 
    font-size: 0.95rem; 
    color: #666; 
    line-height: 1.6;
}

/* Content Blocks (for informational sections) */
.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.content-block {
    padding: 35px;
    background: #fafafa;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
    transition: 0.3s;
}

.content-block:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-block h3 {
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block h3 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.content-block p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* 5. PROCESS SECTION (V2) */
.process-section { padding: 80px 0; background: var(--bg-color); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step { 
    background: white; 
    padding: 40px 30px; 
    border-radius: 4px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); 
    text-align: center;
    position: relative;
}

/* Universal Hub Template */
.universal-hub .hub-hero {
    text-align: center;
    padding: 80px 0 60px;
}

.spa-hero {
    text-align: center;
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
}

.spa-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.spa-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section {
    background: white;
    padding: 80px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #444;
}

.intro-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 20px 20px 0 rgba(107, 127, 104, 0.2);
}

.drip-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 80px;
    transition: transform 0.3s ease;
}

.drip-card:nth-child(even) .drip-body {
    flex-direction: row-reverse;
}

.drip-card:hover {
    transform: translateY(-5px);
}

.drip-title {
    font-size: 2rem;
    padding: 40px 50px 10px;
    color: var(--primary-color);
}

.drip-divider {
    height: 2px;
    background: #f4f4f4;
    margin: 0 50px 20px;
}

.drip-body {
    display: flex;
}

.drip-img {
    flex: 0.8;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.drip-content {
    flex: 1.2;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.drip-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.drip-desc p {
    margin-bottom: 15px;
}

.drip-data {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 4px;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-left: 4px solid var(--accent-color);
}

.drip-data .data-item {
    display: flex;
    flex-direction: column;
}

.drip-data .data-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.drip-data .data-value {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.drip-data .data-value small {
    font-weight: normal;
    font-size: 0.85rem;
    color: #666;
}

.btn-drip {
    margin-top: 25px;
    align-self: flex-start;
    padding: 12px 35px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-drip:hover {
    background: var(--primary-color);
    color: white;
}

.injections-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 80px;
}

.injections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.injection-card {
    margin-bottom: 0;
    flex-direction: column;
}

.injection-card .drip-content {
    padding: 40px;
}

.injection-desc {
    font-size: 0.95rem;
    color: #555;
    margin: 15px 0;
}

.injection-data {
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
}

.billing-note {
    background-color: #f9f9f9;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-img {
        margin-top: 30px;
        height: 300px;
        width: 100%;
        box-shadow: none;
    }
    .drip-card {
        flex-direction: column;
    }
    .drip-card:nth-child(even) .drip-body {
        flex-direction: column;
    }
    .drip-title {
        padding: 30px 30px 10px;
    }
    .drip-divider {
        margin: 0 30px 20px;
    }
    .drip-body {
        flex-direction: column;
    }
    .drip-img {
        height: 300px;
        min-height: auto;
    }
    .drip-content {
        padding: 30px;
    }
    .drip-data {
        grid-template-columns: 1fr;
    }
    .injections-grid {
        grid-template-columns: 1fr;
    }
    .injection-data {
        grid-template-columns: 1fr;
    }
}
.universal-hub .hub-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.universal-hub .hub-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 760px;
    margin: 0 auto;
}

.intro-block {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin: 40px 0 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-image {
    flex: 0.8;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-color);
    z-index: 0;
    pointer-events: none;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 80px;
}

.service-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-img {
    flex: 1;
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.card-content {
    flex: 1.2;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-desc p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.key-info {
    background: #f4f4f4;
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
}

.info-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-link {
    align-self: flex-start;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-link:hover {
    background: var(--accent-color);
}

.hub-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hub-card-actions .btn-link {
    flex: 1;
    min-width: 0;
}

.hub-card-actions .btn-link.alt {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.hub-card-actions .btn-link.alt:hover {
    color: #fff;
    background: var(--primary-color);
}

/* Therapy Template */
.therapy-page .hub-hero {
    text-align: center;
    padding: 80px 0 60px;
}

/* Therapy Template (Feature Sections) */
.therapy-page .feature-section {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 80px;
    transition: transform 0.3s ease;
}

.therapy-page .feature-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.therapy-page .feature-section:nth-child(even) {
    flex-direction: row-reverse;
}

.therapy-page .feature-img {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.therapy-page .feature-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.therapy-page .feature-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.therapy-page .feature-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.therapy-page .feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.therapy-page .indication-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.therapy-page .indication-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #444;
}

.therapy-page .indication-item i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
}

.therapy-page .price-box {
    background: #f4f4f4;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    margin-top: auto;
}

.therapy-page .price-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.therapy-page .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}

.therapy-page .price-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.therapy-page .price-label {
    font-size: 0.9rem;
    color: #555;
}

.therapy-page .price-val {
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-body);
}

@media (max-width: 900px) {
    .intro-block {
        flex-direction: column;
        padding: 30px;
    }
    .intro-image {
        width: 100%;
        height: 240px;
        margin-top: 20px;
    }
    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }
    .card-img {
        height: 240px;
    }
    .card-content {
        padding: 30px;
    }
    .therapy-page .feature-section,
    .therapy-page .feature-section:nth-child(even) {
        flex-direction: column;
    }
    .therapy-page .feature-img {
        height: 250px;
        min-height: auto;
    }
    .therapy-page .feature-content {
        padding: 30px;
    }
    .therapy-page .indication-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hub-card-actions {
        flex-direction: column;
    }
    
    .hub-card-actions .btn-link {
        width: 100%;
    }
}

.step-number { 
    background: var(--primary-color); 
    color: white; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 25px; 
    font-weight: bold; 
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* 6. PRICING BOX (V2) */
.pricing-box {
    background: var(--primary-color);
    color: white;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    margin: 80px auto 0;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-box h3 { color: white; margin-bottom: 10px; font-size: 1.8rem; }

.pricing-box::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px; width: 120px; height: 120px;
    background: var(--accent-color); opacity: 0.15; border-radius: 50%;
}

.price-tag { 
    font-size: 3.5rem; 
    font-family: var(--font-heading); 
    margin: 15px 0; 
    color: var(--accent-color); 
    font-weight: 600;
}

.price-note { 
    font-size: 0.95rem; 
    opacity: 0.9; 
    margin-bottom: 30px; 
    line-height: 1.6;
}

.btn-book {
    background: var(--accent-color); 
    color: white; 
    padding: 18px 50px; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-weight: bold; 
    border-radius: 2px; 
    display: inline-block; 
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-book:hover { 
    background: #b08d4b; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive V2 */
@media (max-width: 992px) {
    .app-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .quick-facts { max-width: 90%; }
}

@media (max-width: 768px) {
    .service-hero h1 { font-size: 2.5rem; }
    .facts-grid { flex-direction: column; gap: 15px; }
    .quick-facts { margin-top: -20px; padding: 25px; }
    .price-tag { font-size: 2.5rem; }
}

.slider-overlay {
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* ============================================
   THERAPY STYLES
   ============================================ */
.bg-light {
    background-color: #fcfcfc;
}

.pricing-table-container {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table-container h3 {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-table {
    border: 1px solid #eee;
    background: var(--white);
}

.table-row {
    display: flex;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.col-service {
    flex: 1;
}

.col-price {
    width: 150px;
    text-align: right;
    color: var(--accent-color);
    font-weight: 600;
}

.table-header .col-price {
    color: var(--white);
}

.table-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/* ============================================
   ABOUT & BIO STYLES
   ============================================ */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.bio-content .lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item .image-placeholder {
    aspect-ratio: 3/2;
}

/* ============================================
   CONTACT & BOOKING STYLES
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.amelia-placeholder {
    background: #fdfdfd;
    border: 1px dashed #ddd;
    padding: 100px 40px;
    text-align: center;
    border-radius: 8px;
}

.placeholder-text {
    color: #999;
    margin-top: 20px;
    font-style: italic;
}

.info-group {
    margin-bottom: 40px;
}

.info-group h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.map-placeholder {
    height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* ============================================
   PRICES PAGE STYLES
   ============================================ */
.prices-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-link-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

.price-link-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.price-link-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.price-link-card span {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.insta-section {
    padding: 60px 0;
    text-align: center;
    background-color: white;
}

.insta-section .fab {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.insta-item {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: 0.3s;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-title,
    .hero h1 { font-size: 2.5rem; }
    .about-grid,
    .about-flex,
    .intro-grid,
    .bio-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .ceo-banner .container {
        flex-direction: column;
    }
    .ceo-content {
        padding-right: 0;
    }
    .ceo-img {
        height: 250px;
        width: 100%;
        margin-top: 30px;
    }
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .card-grid,
    .teaser-grid {
        grid-template-columns: 1fr;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    .hero-title,
    .hero h1 {
        font-size: 2rem;
    }
    .hero-text,
    .hero p {
        font-size: 1.1rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .section-title {
        font-size: 2rem;
    }
    .trust-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insta-grid {
        grid-template-columns: 1fr;
    }
    .teaser-section {
        margin-top: -40px;
    }
    
    /* Treatment Cards - Mobile Adjustments */
    .treatment-card.card {
        text-align: left !important;
        padding: 30px 20px;
    }
    
    .treatment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .treatment-header h3 {
        font-size: 1.5rem;
        width: 100%;
    }
    
    .treatment-meta {
        font-size: 0.85rem;
        width: 100%;
    }
    
    .treatment-body {
        text-align: left;
    }
    
    .treatment-body .tagline {
        text-align: left;
    }
    
    .treatment-details {
        text-align: left;
    }
    
    .treatment-details h4 {
        text-align: left;
    }
    
    .check-list {
        text-align: left;
    }
    
    /* Service Page - Mobile Adjustments */
    .service-intro-text {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-item {
        padding: 25px 20px;
    }
    
    .application-item h3 {
        font-size: 1.2rem;
    }
    
    .process-text p,
    .costs-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .costs-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}
