/*!
Theme Name: Uwell
Theme URI: https://uwell.com
Author: Uwell Development
Author URI: https://uwell.com
Description: Dynamic wellness theme with backend color management and page editing
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uwell
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.2
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    line-height: 1.6;
    color: var(--text, #333333);
    background-color: var(--background, #ffffff);
}

h1, h2, h3 {
    font-family: var(--font-heading, serif);
    color: var(--text, #333333);
}

h4, h5, h6 {
    font-family: var(--font-subheading, sans-serif);
    color: var(--text, #333333);
}

p {
    font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    color: var(--text-light, #666666);
}

button, .button, a.button {
    font-family: var(--font-button, sans-serif);
    background-color: var(--primary, #007bff);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover, a.button:hover {
    background-color: var(--secondary, #6c757d);
}

a {
    color: var(--primary, #007bff);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ========================
   HEADER STYLES
   ======================== */

.uwell-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
}

.uwell-navbar {
    max-width: 100%;
    margin: 0 auto;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.navbar-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-link,
.logo-text {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover,
.logo-text:hover {
    opacity: 0.8;
}

.logo-image {
    max-width: 150px;
    height: auto;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a2a;
    font-family: 'Playfair Display', serif;
}

/* Navigation Menu */
.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.nav-link:hover {
    color: #ff69b4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff69b4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.navbar-cta {
    flex: 0 0 auto;
    margin-left: 20px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff69b4;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.25);
    border: none;
    cursor: pointer;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.35);
    background-color: #f054a3;
}

.btn-header:active {
    transform: translateY(0);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
    margin-right: 15px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .uwell-navbar {
        padding: 0 10px;
    }
    
    .navbar-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .logo-image {
        max-width: 100px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding: 12px 0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar-cta {
        margin-left: 0;
    }
    
    .btn-header {
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .navbar-logo {
        flex: 1;
    }
    
    .logo-image {
        max-width: 120px;
    }
    
    .btn-header {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ========================
   HERO SECTION
   ======================== */

.wellness-hero {
    --primary-pink: var(--primary, #ff69b4);
    --soft-pink: rgba(255, 105, 180, 0.15);
    --dark-green: #2d4a3e;
    --primary-green: #3a5a40;
    --body-text: var(--text, #555555);
    --bg-cream: #fff9f6;
    
    font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    background-size: contain;
    background-position: left center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px;
    box-sizing: border-box;
}

.wellness-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
    width: 100%;
}

.wellness-content {
    flex: 0 1 400px;
    max-width: 35%;
    padding: 35px 30px;
    max-height: 75vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-right: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: var(--soft-pink);
    color: var(--primary-pink);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.wellness-hero h1 {
    font-size: 28px;
    color: var(--dark-green);
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-weight: 700;
    font-family: var(--font-heading);
}

.highlight-pink {
    color: var(--primary-pink);
    position: relative;
    display: inline-block;
}

.underline-svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    opacity: 0.4;
}

.wellness-hero p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 500px;
    font-family: var(--font-body);
}

.button-group {
    display: flex;
    gap: 15px;
}

.btn-pink {
    background-color: #f64d9f;
    color: white;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(246, 77, 159, 0.3);
    transition: transform 0.3s ease;
    font-family: var(--font-button);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    font-family: var(--font-button);
    background: transparent;
}

.btn-pink:hover { transform: translateY(-3px); }
.btn-outline:hover { background: rgba(58, 90, 64, 0.05); }

.wellness-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-blob-bg {
    position: absolute;
    inset: -15px;
    background: linear-gradient(45deg, var(--soft-pink), #e0f2f1);
    border-radius: 40px;
    transform: rotate(3deg);
    opacity: 0.6;
}

.main-photo-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.main-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #e6f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34a853;
    font-size: 20px;
}

.support-card p { margin: 0; font-size: 12px; text-transform: uppercase; color: #888; letter-spacing: 1px;}
.support-card h4 { margin: 0; font-size: 16px; color: var(--dark-green); font-family: var(--font-subheading); }

@media (max-width: 991px) {
    .wellness-container { flex-direction: column; align-items: center; text-align: center; justify-content: center; }
    .wellness-hero h1 { font-size: 32px; }
    .wellness-hero p { margin-left: auto; margin-right: auto; }
    .button-group { justify-content: center; }
    .wellness-content { max-width: 90%; margin-right: 0; margin-bottom: 30px; padding: 40px 30px; }
    .support-card { left: 50%; transform: translateX(-50%); bottom: -20px; animation: none; }
}

/* ========================
   ABOUT SECTION
   ======================== */

.uwell-about-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: var(--font-body);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-column {
    text-align: left;
}

.about-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    font-weight: 600;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 105, 180, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.uwell-about-section h2 {
    font-size: 36px;
    color: #2d4a3e;
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    text-align: left;
}

.icon-wrapper .leaf-icon {
    color: var(--primary, #ff69b4);
    font-size: 24px;
}

.about-text-content {
    margin-bottom: 40px;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 25px;
    font-weight: 300;
    font-family: var(--font-body);
    text-align: left;
}

.about-text-content .highlight-quote {
    color: #10b981;
    font-style: italic;
    font-weight: 500;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary, #ff69b4);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 105, 180, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.learn-more-link:hover .arrow-circle { transform: scale(1.1); }
.learn-more-link:hover { color: #e05599; }

@media (max-width: 991px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text-column {
        text-align: center;
    }
    .about-text-column .icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    .uwell-about-section h2 {
        text-align: center;
    }
    .about-text-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .uwell-about-section { padding: 60px 20px; }
    .uwell-about-section h2 { font-size: 28px; }
    .about-text-content p { font-size: 16px; }
}

/* ========================
   SERVICES SECTION
   ======================== */

.uwell-services-section {
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    font-family: var(--font-body);
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: radial-gradient(#FF4FA3 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    color: #2d4a3e;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.services-header p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.2);
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 600;
}

.service-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pink-icon { background-color: rgba(255, 105, 180, 0.15); color: var(--primary, #ff69b4); }
.green-icon { background-color: #e6f7f1; color: #10b981; }

.service-card:hover .pink-icon { background-color: var(--primary, #ff69b4); color: white; }
.service-card:hover .green-icon { background-color: #10b981; color: white; }

.service-card h3 {
    font-size: 20px;
    color: #2d4a3e;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.service-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-body);
}

.services-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2d4a3e;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    font-family: var(--font-button);
}

.btn-view-all:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    background: #fcfcfc;
}

.btn-view-all span {
    color: var(--primary, #ff69b4);
    font-size: 20px;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-header h2 { font-size: 28px; }
    .uwell-services-section { padding: 60px 20px; }
}

/* ========================
   FOUNDER SECTION
   ======================== */

.uwell-founder-section {
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    font-family: var(--font-body);
    overflow: hidden;
}

.founder-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.founder-image-column {
    flex: 1;
    position: relative;
}

.image-arch-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
}

.image-arch-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 30px 30px;
}

.blob-pink {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.blob-green {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: #e6f7f1;
    border-radius: 50%;
    z-index: -1;
}

.founder-content {
    flex: 1.5;
}

.meet-tag {
    color: var(--primary, #ff69b4);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.founder-content h2 {
    font-size: 36px;
    color: #1a3a2a;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.sub-headline {
    color: #10b981;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--font-subheading);
}

.bio-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 25px;
    font-weight: 300;
    font-family: var(--font-body);
}

.btn-founder {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1a3a2a;
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(26, 58, 42, 0.2);
    font-family: var(--font-button);
}

.btn-founder:hover {
    background-color: #244d38;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 58, 42, 0.3);
}

.btn-founder span {
    color: rgba(255, 105, 180, 0.15);
    font-size: 20px;
}

@media (max-width: 991px) {
    .founder-container { flex-direction: column; text-align: center; gap: 50px; }
    .image-arch-wrapper { margin: 0 auto; }
    .meet-tag { margin-top: 20px; }
}

@media (max-width: 640px) {
    .founder-content h2 { font-size: 28px; }
    .sub-headline { font-size: 16px; }
}

/* ========================
   PROGRAMS SECTION
   ======================== */

.uwell-programs-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: var(--font-body);
}

.uwell-programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a3a2a;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.section-header p {
    font-family: var(--font-body);
    color: #666666;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.program-card {
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-pink { background-color: #fff5f8; border: 1px solid #fce7ef; }
.blob-top-right {
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 0 0 0 100%;
    opacity: 0.6;
}

.card-green { background-color: #eef9f5; border: 1px solid #e0f2ec; }
.blob-bottom-right {
    position: absolute;
    bottom: 0; right: 0;
    width: 180px; height: 180px;
    background: white;
    border-radius: 100% 0 0 0;
    opacity: 0.4;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    font-family: var(--font-body);
}
.badge-pink { color: var(--primary, #ff69b4); }
.badge-green { color: #10b981; }

.program-card h3 {
    font-size: 28px;
    color: #1a3a2a;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.program-card p {
    font-family: var(--font-body);
    color: #666666;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #10b981;
    margin: 20px 0 40px 0;
}
.price-tag span { color: #666666; font-weight: 400; font-size: 18px; }

.product-list { list-style: none; padding: 0; margin: 0 0 30px 0; }
.product-item {
    background: rgba(255,255,255,0.7);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-family: var(--font-body);
}
.item-icon {
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pink-bg { background: #ffeef5; color: var(--primary, #ff69b4); }
.green-bg { background: #e3f8ef; color: #10b981; }

.btn-card {
    margin-top: auto;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
    display: inline-block;
    width: fit-content;
    font-family: var(--font-button);
}
.btn-pink { background: #f64d9f; color: white; }
.btn-green { background: #10b981; color: white; }
.btn-card:hover { opacity: 0.9; transform: scale(1.02); }

@media (max-width: 991px) {
    .programs-grid { grid-template-columns: 1fr; }
    .program-card { padding: 35px; }
    .section-header h2 { font-size: 28px; }
}

/* ========================
   CTA SECTION
   ======================== */

.uwell-cta-section {
    position: relative;
    padding: 120px 20px;
    background-color: #E89EB8;
    font-family: var(--font-body);
    text-align: center;
    overflow: hidden;
}

.cta-blur-1 {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: white;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    pointer-events: none;
}

.cta-blur-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: #10b981;
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-container h2 {
    font-size: 36px;
    color: #1a3a2a;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: var(--font-heading);
}

.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-pink {
    background-color: var(--primary, #ff69b4);
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    font-family: var(--font-button);
}

.btn-cta-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
    background-color: #f64d9f;
}

.btn-cta-white {
    background-color: #ffffff;
    color: #1a3a2a;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--font-button);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
    .cta-container h2 { font-size: 28px; }
    .uwell-cta-section { padding: 80px 20px; }
    .btn-cta-pink, .btn-cta-white { width: 100%; max-width: 300px; }
}

/* ======================== */
/* SERVICES PAGE STYLES     */
/* ======================== */

/* SERVICES HEADER */
.uwell-services-header {
    position: relative;
    padding: 120px 20px;
    background-color: #E89EB8;
    text-align: center;
    overflow: hidden;
    font-family: var(--font-body);
}

.header-blob-pink {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: var(--soft-pink, #fde4ef);
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 1;
    mix-blend-mode: multiply;
}

.header-blob-green {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 35%;
    height: 50%;
    background: var(--soft-green, #eef9f5);
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 1;
    mix-blend-mode: multiply;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.header-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--dark-green, #1a3a2a);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.header-content p {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text, #555555);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

/* PRICING SECTION */
.uwell-pricing-section {
    padding: 100px 20px;
    background-color: var(--white, #ffffff);
    font-family: var(--font-body);
}

.uwell-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.support-tag {
    display: inline-block;
    background: var(--soft-pink, #ffeef5);
    color: var(--primary-pink, #ff69b4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-header h2 {
    font-size: 36px;
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-header p {
    color: var(--text, #555555);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.card-featured {
    position: relative;
    border-color: rgba(255, 105, 180, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-pink, #ff69b4);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-pink, #ffeef5);
    color: var(--primary-pink, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
}

.pricing-card h3 {
    font-size: 22px;
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 10px;
    font-weight: 700;
}

.card-sub {
    color: var(--text, #555555);
    font-size: 16px;
    margin-bottom: 30px;
}

.card-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 40px;
    margin-top: auto;
}

.card-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text, #555555);
}

.btn-pricing {
    background: var(--primary-pink, #ff69b4);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: block;
    transition: opacity 0.3s;
}

.btn-pricing:hover {
    opacity: 0.9;
}

.virtual-note {
    text-align: center;
    color: var(--text, #555555);
    font-size: 14px;
    font-style: italic;
}

.virtual-note span {
    color: var(--primary-pink, #ff69b4);
    margin-right: 8px;
}

/* THRIVE PROGRAM SECTION */
.uwell-thrive-section {
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    font-family: var(--font-body);
    overflow: hidden;
}

.thrive-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: white;
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    pointer-events: none;
}

.thrive-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.thrive-content { flex: 1; }
.thrive-image-box { flex: 1; }

.tagline {
    color: var(--primary-pink, #ff69b4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.thrive-content h2 {
    font-size: 36px;
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 10px;
    font-weight: 700;
}

.thrive-content h3 {
    font-size: 20px;
    color: var(--primary-green, #10b981);
    margin-bottom: 25px;
    font-weight: 600;
}

.thrive-description {
    font-size: 16px;
    color: var(--text, #555555);
    line-height: 1.6;
    margin-bottom: 35px;
}

.includes-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.includes-card h4 {
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 20px;
    font-size: 20px;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text, #555555);
    font-size: 15px;
}

.check-icon { 
    color: var(--primary-green, #10b981); 
    font-weight: bold; 
}

.thrive-action-bar {
    display: flex;
    align-items: center;
    gap: 25px;
}

.investment-box {
    background: white;
    padding: 10px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.investment-label { 
    font-size: 12px; 
    color: var(--text, #555555); 
    display: block; 
}

.investment-price { 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--dark-green, #1a3a2a); 
}

.btn-enroll {
    background: var(--primary-pink, #ff69b4);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
    transition: transform 0.3s;
}

.btn-enroll:hover { 
    transform: translateY(-3px); 
}

.thrive-img {
    width: 100%;
    border-radius: 40px;
}

/* WORKSHOPS SECTION */
.uwell-workshops {
    padding: 100px 20px;
    background-color: var(--white, #ffffff);
    font-family: var(--font-body);
}

.workshops-container {
    max-width: 1200px;
    margin: 0 auto;
}

.workshops-header {
    text-align: center;
    margin-bottom: 60px;
}

.workshops-header h2 {
    font-size: 36px;
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 15px;
    font-weight: 700;
}

.workshops-header p {
    font-size: 18px;
    color: var(--text, #555555);
    max-width: 600px;
    margin: 0 auto;
}

.workshops-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.topics-title {
    font-size: 20px;
    color: var(--dark-green, #1a3a2a);
    margin-bottom: 30px;
    font-weight: 700;
}

.topic-item {
    background: var(--cream, #fffaf7);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.topic-item:hover { 
    transform: translateX(5px); 
}

.topic-icon {
    width: 45px;
    height: 45px;
    background: var(--soft-pink, #ffeef5);
    color: var(--primary-pink, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.topic-text { 
    font-weight: 600; 
    color: var(--text, #555555); 
}

.pricing-column .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-column .pricing-card {
    background: white;
    border: 1px solid #f0f0f0;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pricing-column .pricing-card h4 {
    color: var(--dark-green, #1a3a2a);
    font-size: 18px;
    margin-bottom: 15px;
}

.price-range {
    color: var(--primary-pink, #ff69b4);
    font-size: 22px;
    font-weight: 800;
}

.workshops-footer {
    text-align: center;
}

.travel-note {
    font-size: 14px;
    color: var(--text, #555555);
    font-style: italic;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-workshop {
    background: var(--primary-pink, #ff69b4);
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
    transition: all 0.3s;
}

.btn-workshop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 105, 180, 0.3);
}

/* SERVICES CTA SECTION */
.uwell-cta-section-services {
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    font-family: var(--font-body);
    text-align: center;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 168, 107, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-container h2 {
    font-size: 48px;
    color: var(--dark-green, #1a3a2a);
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
}

.btn-cta-main {
    background: var(--primary-pink, #ff69b4);
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.25);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.35);
}

/* ========================
   CONTACT PAGE SECTIONS
   ======================== */

/* CONTACT HERO SECTION */
.uwell-contact-hero {
    --uwell-cream-blush: #fffaf9;
    --uwell-soft-pink: #ffeef5;
    --uwell-soft-green-tint: #e9f5f0;
    --uwell-dark-green: #1a3a2a;
    --uwell-body-text: #555555;
    
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-color: #E89EB8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 40vh;
    text-align: center;
    font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

.decor-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.orb-pink {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--uwell-soft-pink);
}

.orb-green {
    top: 80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--uwell-soft-green-tint);
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.contact-hero-content h1 {
    font-size: 42px;
    color: var(--uwell-dark-green);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.contact-hero-content p {
    font-size: 18px;
    color: var(--uwell-body-text);
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-body);
}

/* CONTACT FORM SECTION */
.uwell-form-section {
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-soft-pink: #ffeef5;
    --uwell-border-pink: rgba(255, 105, 180, 0.3);
    --uwell-body-text: #555555;
    
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--uwell-border-pink);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.form-card::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: var(--uwell-soft-pink);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-header h2 {
    font-size: 28px;
    color: var(--uwell-dark-green);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.form-header p {
    color: var(--uwell-body-text);
    font-weight: 300;
    font-family: var(--font-body);
}

.uwell-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--uwell-dark-green);
    margin-left: 15px;
    font-family: var(--font-body);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-textarea {
    border-radius: 20px;
    min-height: 150px;
    resize: vertical;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--uwell-primary-pink);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
}

.btn-submit {
    display: block;
    width: 250px;
    margin: 30px auto 0;
    background: var(--uwell-primary-pink);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
    font-family: var(--font-button);
}

.btn-submit:hover {
    background: #f059a1;
    transform: translateY(-3px);
}

/* CONSULTATION SECTION */
.uwell-consultation-section {
    --uwell-soft-pink: #ffeef5;
    --uwell-primary-pink: #ff69b4;
    --uwell-dark-green: #1a3a2a;
    --uwell-body-text: #555555;
    --uwell-cream-blush: #fffaf9;
    
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
    text-align: center;
    overflow: hidden;
}

.consult-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.orb-white {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: #ffffff;
    opacity: 0.4;
}

.orb-pink-deep {
    bottom: 40px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: var(--uwell-primary-pink);
    opacity: 0.1;
}

.consult-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon-circle i {
    color: var(--uwell-primary-pink);
    font-size: 32px;
}

.consult-container h2 {
    font-size: 36px;
    color: var(--uwell-dark-green);
    margin-bottom: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.consult-container p {
    font-size: 18px;
    color: var(--uwell-body-text);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    font-family: var(--font-body);
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--uwell-dark-green);
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    font-family: var(--font-button);
}

.btn-consult:hover {
    background: var(--uwell-cream-blush);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.disclaimer-text {
    font-size: 13px;
    font-style: italic;
    color: #FF0000 !important;
    margin-top: 40px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRODUCTS PAGE ===== */

/* PRODUCTS HERO SECTION */
.uwell-products-hero {
    --uwell-cream-blush: #fffaf9;
    --uwell-dark-green: #1a3a2a;
    --uwell-soft-pink: #fce4ec;
    --uwell-soft-green: #f0f7f4;
    --uwell-body-text: #555555;
    
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-color: #E89EB8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 40vh;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Decorative Background Elements */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: multiply;
}

.blob-top-right {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--uwell-soft-pink);
}

.blob-mid-left {
    top: 20%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--uwell-soft-green);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 42px);
    color: var(--uwell-dark-green);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--uwell-body-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .uwell-products-hero { padding: 80px 20px; }
}

/* SKIN KIT SECTION */
.uwell-skin-kit-section {
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-primary-green: #2d5a43;
    --uwell-soft-pink-bg: rgba(255, 105, 180, 0.08);
    --uwell-body-text: #555555;
    --uwell-cream-blush: #fffaf9;
    
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.kit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

/* Product Image Styling */
.kit-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.kit-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content Styling */
.kit-content {
    flex: 1;
}

.kit-content h2 {
    font-size: 36px;
    color: var(--uwell-dark-green);
    margin-bottom: 20px;
    line-height: 1.1;
}

.kit-description {
    font-size: 18px;
    color: var(--uwell-body-text);
    margin-bottom: 35px;
}

.includes-box {
    background-color: var(--uwell-soft-pink-bg);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 40px;
}

.includes-box h4 {
    font-size: 20px;
    color: var(--uwell-dark-green);
    margin-bottom: 20px;
}

.kit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--uwell-body-text);
    font-size: 17px;
}

.icon-dot {
    width: 28px;
    height: 28px;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-dot i {
    color: var(--uwell-primary-pink);
    font-size: 12px;
}

/* Pricing and Button */
.kit-action-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.kit-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--uwell-primary-green);
}

.btn-shop {
    background: var(--uwell-primary-pink);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
    background: #f054a3;
}

@media (max-width: 992px) {
    .kit-container { flex-direction: column; text-align: center; }
    .kit-list li { justify-content: flex-start; text-align: left; }
    .kit-action-area { flex-direction: column; gap: 20px; }
    .btn-shop { width: 100%; text-align: center; }
    .kit-content h2 { font-size: 28px; }
}

/* HAIR KIT SECTION */
.uwell-hair-kit-section {
    --uwell-soft-pink: #ffeef5;
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-primary-green: #2d5a43;
    --uwell-body-text: #555555;
    
    padding: 100px 20px;
    background-color: #E89EB8;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hair-kit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

/* Product Image Styling */
.hair-kit-image {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.hair-kit-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content Styling */
.hair-kit-content {
    flex: 1;
}

.hair-kit-content h2 {
    font-size: 36px;
    color: var(--uwell-dark-green);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hair-kit-description {
    font-size: 18px;
    color: var(--uwell-body-text);
    margin-bottom: 35px;
}

.hair-includes-box {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 40px;
}

.hair-includes-box h4 {
    font-size: 20px;
    color: var(--uwell-dark-green);
    margin-bottom: 20px;
}

.hair-kit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hair-kit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--uwell-body-text);
    font-size: 17px;
}

.hair-icon-dot {
    width: 28px;
    height: 28px;
    background: rgba(45, 90, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hair-icon-dot i {
    color: var(--uwell-primary-green);
    font-size: 12px;
}

/* Action Area */
.hair-action-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hair-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--uwell-primary-green);
}

.btn-shop-hair {
    background: var(--uwell-primary-pink);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.btn-shop-hair:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
    background: #f054a3;
}

@media (max-width: 992px) {
    .hair-kit-container { flex-direction: column; text-align: center; }
    .hair-kit-list li { justify-content: flex-start; text-align: left; }
    .hair-action-area { flex-direction: column; gap: 20px; }
    .btn-shop-hair { width: 100%; text-align: center; }
    .hair-kit-content h2 { font-size: 28px; }
}

/* ADDITIONAL PRODUCTS SECTION */
.uwell-additional-products {
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-soft-pink: #ffeef5;
    --uwell-body-text: #555555;
    --uwell-cream-blush: #fffaf9;
    
    padding: 100px 20px;
    background-color: #ffffff;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center;
}

.additional-container {
    max-width: 800px;
    margin: 0 auto;
}

.uwell-additional-products h2 {
    font-size: 36px;
    color: var(--uwell-dark-green);
    margin-bottom: 40px;
    font-weight: 700;
}

.placeholder-box {
    background-color: var(--uwell-cream-blush);
    border: 2px dashed rgba(255, 105, 180, 0.3);
    border-radius: 40px;
    padding: 60px 40px;
    transition: transform 0.3s ease;
}

.placeholder-box:hover {
    transform: scale(1.02);
}

.icon-wrapper-box {
    width: 80px;
    height: 80px;
    background-color: var(--uwell-soft-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.icon-wrapper-box i {
    font-size: 32px;
    color: var(--uwell-primary-pink);
}

.placeholder-box p {
    font-size: 20px;
    color: var(--uwell-body-text);
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 768px) {
    .uwell-additional-products h2 { font-size: 28px; }
    .placeholder-box { padding: 40px 20px; }
}

/* PRODUCT CTA SECTION */
.uwell-product-cta {
    --uwell-soft-green-tint: #f0f7f4;
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-primary-green: #2d5a43;
    --uwell-soft-pink: #ffeef5;
    
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    text-align: center;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Decorative Background Shapes */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.blob-center-left {
    top: 40%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: #ffffff;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.blob-bottom-right {
    bottom: -50px;
    right: 5%;
    width: 350px;
    height: 350px;
    background: var(--uwell-primary-green);
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-inner {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--uwell-dark-green);
    line-height: 1.2;
    margin-bottom: 48px;
    font-weight: 700;
}

.cta-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary-shop {
    background-color: var(--uwell-primary-pink);
    color: #ffffff;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary-consult {
    background-color: #ffffff;
    color: var(--uwell-dark-green);
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid var(--uwell-soft-pink);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-primary-shop:hover, .btn-secondary-consult:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary-shop:hover {
    background-color: #f054a3;
}

.btn-secondary-consult:hover {
    background-color: var(--uwell-soft-pink);
}

@media (max-width: 640px) {
    .cta-button-group { flex-direction: column; }
    .btn-primary-shop, .btn-secondary-consult { width: 100%; justify-content: center; }
}

/* CONTACT INFO SECTION */
.uwell-contact-info-section {
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-soft-pink: rgba(255, 105, 180, 0.3);
    --uwell-body-text: #555555;
    --uwell-cream-blush: #fffaf9;
    
    padding: 100px 20px;
    background-color: #ffffff;
    border-top: 1px solid var(--uwell-soft-pink);
    font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.founder-image-wrapper {
    flex: 0 0 40%;
    max-width: 450px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-details {
    flex: 1;
    max-width: 600px;
}

.info-header h2 {
    font-size: 32px;
    color: var(--uwell-dark-green);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.info-header .credentials {
    font-size: 18px;
    color: var(--uwell-primary-pink);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
    font-family: var(--font-body);
}

.info-header .bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--uwell-body-text);
    margin-bottom: 32px;
    font-family: var(--font-body);
}

.contact-card {
    background: var(--uwell-cream-blush);
    border-radius: 30px;
    padding: 35px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.icon-box i {
    color: #2d5a43;
    font-size: 18px;
}

.item-content h4 {
    font-size: 16px;
    color: var(--uwell-dark-green);
    margin-bottom: 4px;
    font-weight: 700;
    font-family: var(--font-body);
}

.item-content p, .item-content a {
    font-size: 14px;
    color: var(--uwell-body-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.item-content a:hover {
    color: var(--uwell-primary-pink);
}

.tag-virtual {
    font-size: 14px;
    color: var(--uwell-primary-pink);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* BOOKING CTA SECTION */
.uwell-booking-cta {
    --uwell-soft-green-tint: #f0f7f4;
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-primary-green: #2d5a43;
    
    position: relative;
    padding: 100px 20px;
    background-color: #E89EB8;
    text-align: center;
    overflow: hidden;
    font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.shape-left {
    top: 20%;
    left: -50px;
    width: 300px;
    height: 300px;
    background: #ffffff;
    opacity: 0.4;
}

.shape-right {
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: var(--uwell-primary-green);
    opacity: 0.1;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--uwell-dark-green);
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--uwell-primary-pink);
    color: #ffffff;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-button);
}

.btn-booking:hover {
    background-color: #f054a3;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .uwell-services-header { padding: 80px 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .card-featured { transform: none; margin: 40px 0; }
    .thrive-container { flex-direction: column; text-align: center; }
    .check-grid { grid-template-columns: 1fr; text-align: left; }
    .thrive-action-bar { flex-direction: column; width: 100%; }
    .btn-enroll { width: 100%; }
    .workshops-grid { grid-template-columns: 1fr; }
    .pricing-column .pricing-grid { grid-template-columns: 1fr; }
    .thrive-content h2 { font-size: 36px; }
    .workshops-header h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .uwell-services-header { padding: 60px 20px; }
    .header-content h1 { font-size: 28px; }
    .pricing-header h2 { font-size: 36px; }
    .thrive-content h2 { font-size: 32px; }
    .cta-container h2 { font-size: 32px; }
    .btn-cta-main { width: 100%; padding: 18px 30px; }
    
    /* Contact Page Responsive */
    .uwell-contact-hero { padding: 80px 20px; }
    .contact-hero-content h1 { font-size: 42px; }
    .contact-hero-content p { font-size: 18px; }
    .uwell-form-section { padding: 60px 20px; }
    .form-card { padding: 30px 20px; border-radius: 30px; }
    .form-row { flex-direction: column; gap: 0; }
    .btn-submit { width: 100%; }
    .uwell-consultation-section { padding: 80px 20px; }
    .consult-container h2 { font-size: 32px; }
    .consult-container p { font-size: 18px; }
    .btn-consult { width: 100%; justify-content: center; }
    .uwell-contact-info-section { padding: 80px 20px; }
    .contact-info-container { flex-direction: column; text-align: center; }
    .founder-image-wrapper { width: 100%; max-width: 400px; flex: 0 0 auto; }
    .contact-item { text-align: left; }
    .uwell-booking-cta { padding: 80px 20px; }
    .btn-booking { width: 100%; justify-content: center; padding: 20px 30px; }
    
    /* FOOTER RESPONSIVE */
    .footer-main-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-column { text-align: center; }
    .footer-logo-section .footer-logo { max-width: 120px; }
    .footer-social-icons { justify-content: center; margin-top: 15px; }
    .footer-section-heading { font-size: 18px; margin-bottom: 15px; }
    .footer-contact-item { font-size: 14px; }
    .footer-location-text { font-size: 14px; }
    .footer-service-note { font-size: 13px; }
    .footer-bottom-links { flex-direction: column; gap: 10px; }
    .footer-link-separator { display: none; }
}

/* ===== FOOTER SECTION ===== */
.uwell-footer-final {
    --uwell-dark-green: #1a3a2a;
    --uwell-primary-pink: #ff69b4;
    --uwell-soft-pink: #fce4ec;
    --uwell-white-transparent: rgba(255, 255, 255, 0.8);
    --uwell-border-transparent: rgba(255, 255, 255, 0.2);
    
    background-color: #00A86B;
    color: #ffffff;
    padding: 80px 20px 40px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
}

.footer-main-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--uwell-border-transparent);
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.footer-logo-wrap:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-logo-wrap:hover .footer-logo-icon {
    background: var(--uwell-primary-pink);
}

.footer-logo-icon i {
    font-size: 24px;
}

.footer-logo-image {
    max-height: 60px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-brand-col p {
    color: var(--uwell-white-transparent);
    font-size: 18px;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 30px;
}

.social-links-row {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--uwell-primary-pink);
    transform: translateY(-3px);
}

/* Info Columns */
.footer-info-col h4 {
    color: var(--uwell-soft-pink);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--uwell-white-transparent);
    font-size: 16px;
    line-height: 1.6;
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--uwell-primary-pink);
}

.footer-list i {
    color: var(--uwell-soft-pink);
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Bottom Bar */
.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    gap: 30px;
}

.footer-bottom-bar p {
    margin: 0;
    color: #ffffff !important;
}

.bottom-legal {
    display: flex;
    gap: 30px;
}

.bottom-legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }
    
    .footer-info-col {
        align-items: flex-start;
    }
    
    .footer-info-col h4 {
        text-align: left;
    }
    
    .footer-list {
        align-items: flex-start;
    }
    
    .footer-list li {
        justify-content: flex-start;
    }
    
    .footer-list li span {
        order: 2;
    }
    
    .footer-list li i {
        order: 1;
    }
}

@media (max-width: 768px) {
    .uwell-footer-final {
        padding: 50px 15px 25px;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 25px;
        margin-bottom: 15px;
    }
    
    .footer-brand-col p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-logo-wrap {
        margin-bottom: 12px;
    }
    
    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-icon i {
        font-size: 20px;
    }
    
    .footer-brand-name {
        font-size: 22px;
    }
    
    .footer-logo-image {
        max-height: 50px;
    }
    
    .social-links-row {
        gap: 12px;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-info-col h4 {
        font-size: 17px;
        margin-bottom: 15px;
        text-align: left !important;
    }
    
    .footer-list {
        justify-content: flex-start !important;
    }
    
    .footer-list li {
        font-size: 14px;
        gap: 10px;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 12px;
    }
    
    .footer-bottom-bar p {
        font-size: 12px;
    }
    
    .bottom-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .bottom-legal a {
        font-size: 12px;
    }
}
