/* Aesthetic Treatment Pages Styling */

/* Color Variables */
:root {
    --aesthetic-primary: #FF6B9D;
    --aesthetic-secondary: #E91E63;
    --aesthetic-accent: #F8BBD9;
    --aesthetic-gradient: linear-gradient(135deg, #FF6B9D 0%, #E91E63 50%, #C2185B 100%);
    --aesthetic-glow: 0 0 20px rgba(255, 107, 157, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --brand-gradient-light: linear-gradient(135deg, rgba(248, 187, 217, 0.15) 0%, rgba(244, 143, 177, 0.1) 50%, rgba(252, 228, 236, 0.08) 100%);
}

/* Aesthetic Page Body */
.aesthetic-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Gradient Background */
.gradient-bg {
    background: var(--aesthetic-gradient);
    background-attachment: fixed;
}

/* Aesthetic Hero Section - Full Screen */
.aesthetic-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/aesthetic-graphics/hydrafacial-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Hero Overlay for Text Readability - Lighter */
.aesthetic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.25) 0%, rgba(233, 30, 99, 0.2) 50%, rgba(194, 24, 91, 0.3) 100%);
    z-index: 1;
}

/* Hero Content Positioning */
.aesthetic-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.aesthetic-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90vh;
    text-align: left;
    padding-left: 50px;
}

.aesthetic-hero .hero-text {
    flex: 0 0 700px;
    color: white;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-left: -100px;
    margin-right: auto;
}

.aesthetic-hero .hero-image {
    display: none; /* Hide since we're using it as background */
}

/* Hero Text Elements for Full Screen */
.aesthetic-hero .breadcrumb {
    display: none; /* Remove breadcrumb navigation */
}

.aesthetic-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #C2185B; /* Solid dark pink color */
}

.aesthetic-hero .gradient-text {
    color: #C2185B !important; /* Solid dark pink color */
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #C2185B !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
    font-weight: 700;
}

.aesthetic-hero .hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.aesthetic-hero .hero-highlights {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.aesthetic-hero .highlight {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.aesthetic-hero .highlight:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.aesthetic-hero .highlight i {
    font-size: 1rem;
    color: #FFE4E1;
}

.aesthetic-hero .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.aesthetic-hero .glow-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.aesthetic-hero .glow-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.aesthetic-hero .glow-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #E91E63;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.aesthetic-hero .glow-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.aesthetic-hero .glow-btn.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.aesthetic-hero .glow-btn.secondary:hover {
    background: white;
    transform: translateY(-5px) scale(1.05);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.highlight {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--aesthetic-glow);
}

.highlight i {
    font-size: 1.2rem;
    color: var(--aesthetic-accent);
}

/* Glowing Buttons */
.glow-btn {
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
    transform: translateY(-2px);
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
}

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

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aesthetic-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    filter: brightness(1.1) saturate(1.1);
}

/* Hero Stats Bubbles */
.hero-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.stat-bubble:nth-child(2) {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.stat-bubble:nth-child(3) {
    top: 50%;
    right: -20%;
    animation-delay: 2s;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--aesthetic-accent);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--aesthetic-gradient);
}

.step-visual {
    position: relative;
    margin-bottom: 25px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--aesthetic-gradient);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Removed conflicting step-icon rule - using the circular background version instead */

.step-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.benefit-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit-card .card-icon {
    background: var(--aesthetic-gradient);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.benefit-card .card-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Holistic Section */
.holistic-section {
    background: linear-gradient(135deg, #e3ffe7 0%, #d9e7ff 100%);
    position: relative;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.wellness-category {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.wellness-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.category-header i {
    font-size: 2rem;
    background: var(--aesthetic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Pre & Post Treatment Care Section */
.wellness-tips {
    list-style: none;
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf7fd 0%, #f5e6f2 100%);
    position: relative;
    overflow: hidden;
}

.wellness-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.wellness-tips .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.wellness-tips .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aesthetic-primary);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.1);
}

.wellness-tips .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tips-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.tips-category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tips-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B9D, #E91E63, #FF6B9D);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

.tips-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.15);
}

.tips-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--aesthetic-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tips-category h3 i {
    font-size: 1.5rem;
    color: var(--aesthetic-secondary);
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.tip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF6B9D, #E91E63);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.1);
}

.tip-item:hover::before {
    transform: scaleY(1);
}

.tip-item i {
    color: var(--aesthetic-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(233, 30, 99, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.tip-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(233, 30, 99, 0.2));
    border-color: var(--aesthetic-primary);
}

.tip-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--aesthetic-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tip-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tips-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wellness-tips .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .wellness-tips {
        padding: 60px 0;
    }
    
    .tips-category {
        padding: 30px 25px;
    }
    
    .wellness-tips .section-header h2 {
        font-size: 2rem;
    }
    
    .tips-category h3 {
        font-size: 1.5rem;
    }
    
    .tip-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .tip-item i {
        align-self: center;
    }
}

/* Legacy support for old wellness-tips structure */
.wellness-tips li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.wellness-tips li i {
    color: #28a745;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Wellness CTA */
.wellness-cta {
    margin-top: 60px;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px 40px;
}

.wellness-cta h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.wellness-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Results Section */
.results-section {
    background: #1a1a1a;
    color: white;
    position: relative;
}

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

.result-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--aesthetic-glow);
}

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

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
}

.testimonial-card {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--aesthetic-gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.rating i {
    color: var(--aesthetic-accent);
    margin-right: 3px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--aesthetic-accent);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--aesthetic-accent);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    opacity: 0.8;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--aesthetic-accent);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.card-features i {
    color: var(--aesthetic-accent);
    font-size: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.info-card .card-icon {
    background: var(--aesthetic-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--aesthetic-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aesthetic-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .results-showcase,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .result-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .wellness-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

/* Glow Overlay Effect */
.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: inherit;
    pointer-events: none;
}

/* Overview Visual */
.overview-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ===== HYDRAFACIAL TIMELINE SECTION ===== */

.hydrafacial-process-timeline {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hydrafacial-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b9d" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23a8e6cf" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffd93d" opacity="0.1"/></svg>');
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.timeline-line {
    display: none;
}

.timeline-step {
    position: relative;
    margin: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.timeline-content.reverse {
    flex-direction: row-reverse;
}

.timeline-content::before {
    display: none;
}

.step-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
}

.step-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.4);
}

.treatment-face-img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.step-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(233, 30, 99, 0.3);
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.step-details {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.step-details::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--brand-gradient-light);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-details:hover::before {
    opacity: 0.7;
}

.step-details h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.step-benefits {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.benefit-tag i {
    font-size: 0.9rem;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.step-duration i {
    color: #ff6b9d;
}

/* Results Summary */
.results-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 107, 157, 0.2);
}

.results-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s ease;
}

.results-card:hover::before {
    left: 100%;
}

.results-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.2);
}

.results-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.results-icon i {
    font-size: 1.8rem;
    color: white;
}

.results-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.results-card p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .timeline-container {
        padding: 30px 15px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-content,
    .timeline-content.reverse {
        flex-direction: column;
        gap: 30px;
        padding-left: 60px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .step-image {
        flex: none;
        width: 250px;
        margin: 0 auto;
    }
    
    .step-details {
        padding: 25px;
    }
    
    .step-details h3 {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .results-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .results-card {
        padding: 25px;
    }
    
    /* Full Screen Hero Mobile Responsiveness */
    .aesthetic-hero {
        background-attachment: scroll; /* Fixed backgrounds don't work well on mobile */
    }
    
    .aesthetic-hero .hero-content {
        justify-content: center;
        text-align: center;
    }
    
    .aesthetic-hero .hero-text {
        padding: 40px 30px;
        margin: 20px;
        flex: 1;
        max-width: none;
    }
    
    .aesthetic-hero .hero-highlights {
        justify-content: center;
    }
    
    .aesthetic-hero .hero-buttons {
        justify-content: center;
    }
    
    .aesthetic-hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .aesthetic-hero .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .aesthetic-hero .hero-highlights {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .aesthetic-hero .highlight {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .aesthetic-hero .hero-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .aesthetic-hero .glow-btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 200px;
        justify-content: center;
    }
}

/* Enhanced Wellness Disclaimer */
.wellness-disclaimer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 25px;
    padding: 50px 45px;
    margin: 80px auto 60px;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wellness-disclaimer:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 30, 99, 0.3);
}

.wellness-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, #FF6B9D, #E91E63, #C2185B);
    border-radius: 25px 0 0 25px;
}

.wellness-disclaimer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(233, 30, 99, 0.08), rgba(194, 24, 91, 0.05));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wellness-disclaimer:hover::after {
    opacity: 1;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.disclaimer-icon {
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
    position: relative;
    flex-shrink: 0;
}

.disclaimer-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.3), rgba(233, 30, 99, 0.2));
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes gradient-slide {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Patient Success Stories Section */
.patient-success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.patient-success-stories::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

.patient-success-stories .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.patient-success-stories .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--aesthetic-primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.1);
}

.patient-success-stories .section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B9D, #E91E63, #C2185B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.15);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card.featured {
    border: 2px solid var(--aesthetic-primary);
    box-shadow: 0 25px 70px rgba(255, 107, 157, 0.12);
}

.story-card.featured::before {
    transform: scaleX(1);
    height: 6px;
}

.story-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.story-rating .stars {
    display: flex;
    gap: 5px;
}

.story-rating .stars i {
    color: #FFD700;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rating-text {
    font-weight: 600;
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
}

.story-content {
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.story-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: var(--aesthetic-primary);
    font-family: serif;
    opacity: 0.3;
}

.story-text::after {
    content: '"';
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 3rem;
    color: var(--aesthetic-primary);
    font-family: serif;
    opacity: 0.3;
}

.story-treatment {
    margin-top: 20px;
}

.treatment-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--aesthetic-primary), var(--aesthetic-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.story-author {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
}

.author-details {
    text-align: left;
}

.author-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--aesthetic-primary);
    margin-bottom: 8px;
}

.author-details p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-icon {
    color: #28a745;
    font-size: 0.9rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.story-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.9rem;
}

.story-date i {
    color: var(--aesthetic-primary);
}

/* Success Statistics */
.success-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--aesthetic-primary);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .success-stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .patient-success-stories {
        padding: 80px 0;
    }
    
    .patient-success-stories .section-header h2 {
        font-size: 2.5rem;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-card {
        padding: 30px 25px;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .author-details {
        text-align: center;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.disclaimer-title {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.disclaimer-content {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
    padding-left: 15px;
}

.disclaimer-content strong {
    color: #C2185B;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.1), rgba(173, 20, 87, 0.05));
    padding: 2px 6px;
    border-radius: 4px;
    border-bottom: 2px solid rgba(194, 24, 91, 0.2);
}

/* Skin Care Dos and Don'ts Table Layout - Pink Theme */
.dos-donts-section {
    margin: 40px 0 20px 0;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.dos-card,
.donts-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.dos-card:hover,
.donts-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.dos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
}

.donts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #C2185B, #AD1457);
}

.dos-header,
.donts-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
    position: relative;
}

.dos-icon,
.donts-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dos-icon {
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
}

.donts-icon {
    background: linear-gradient(45deg, #C2185B, #AD1457);
}

.dos-header h3,
.donts-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.dos-content,
.donts-content {
    padding: 25px 30px 30px;
}

.dos-list,
.donts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos-list li,
.donts-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background: rgba(255, 255, 255, 0.3);
}

.dos-list li {
    border-left-color: #FF6B9D;
}

.donts-list li {
    border-left-color: #C2185B;
}

.dos-list li:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(5px);
}

.donts-list li:hover {
    background: rgba(194, 24, 91, 0.1);
    transform: translateX(5px);
}

.dos-list li i {
    color: #FF6B9D;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.donts-list li i {
    color: #C2185B;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.dos-list li span,
.donts-list li span {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dos-donts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dos-header,
    .donts-header {
        padding: 25px 20px 15px;
    }
    
    .dos-icon,
    .donts-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .dos-header h3,
    .donts-header h3 {
        font-size: 1.4rem;
    }
    
    .dos-content,
    .donts-content {
        padding: 20px 20px 25px;
    }
    
    .dos-list li,
    .donts-list li {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .dos-list li span,
    .donts-list li span {
        font-size: 0.9rem;
    }
    
    .wellness-disclaimer {
        padding: 40px 30px;
        margin: 60px 20px 40px;
        max-width: none;
    }
    
    .disclaimer-header {
        gap: 20px;
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .disclaimer-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .disclaimer-content {
        font-size: 1rem;
        text-align: left;
        padding-left: 0;
    }
}

/* Wellness Advice Section */
.wellness-advice {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%) !important;
    padding: 40px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.wellness-advice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b9d" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23a8e6cf" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffd93d" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* Override any pink backgrounds in wellness section */
.wellness-advice .container,
.wellness-advice .section-header,
.wellness-advice .dos-donts-section {
    background: transparent !important;
}

.wellness-advice .section-header h2 {
    background: linear-gradient(45deg, #FF6B9D, #E91E63, #C2185B) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.wellness-advice .section-header p {
    color: #666 !important;
}

/* ===== HYDRAFACIAL TESTIMONIALS CAROUSEL ===== */

.hydrafacial-testimonials {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.hydrafacial-testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hydrafacial-testimonials .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FF6B9D, #E91E63, #C2185B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hydrafacial-testimonials .section-header p {
    color: #666;
    font-size: 1.2rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonials-carousel .testimonial-card {
    display: block !important;
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 700px;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.testimonials-carousel .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonials-carousel .testimonial-rating i {
    color: #FFD700;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonials-carousel .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonials-carousel .testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 107, 157, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonials-carousel .testimonial-text::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 4rem;
    color: rgba(255, 107, 157, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonials-carousel .testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonials-carousel .author-info h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonials-carousel .author-info span {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 157, 0.9);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(233, 30, 99, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(45deg, #FF6B9D, #E91E63);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.indicator:hover:not(.active) {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

/* Footer Contact Items Icon Centering */
.footer .contact-item i {
    width: 35px !important;
    height: 35px !important;
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.footer .contact-item i:hover {
    background: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

/* Mobile Responsiveness for Testimonial Carousel */
@media (max-width: 768px) {
    .hydrafacial-testimonials {
        padding: 60px 0;
    }
    
    .hydrafacial-testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .hydrafacial-testimonials .section-header p {
        font-size: 1rem;
    }
    
    .testimonials-carousel .testimonial-card {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .testimonials-carousel .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonials-carousel .testimonial-text::before,
    .testimonials-carousel .testimonial-text::after {
        font-size: 2.5rem;
    }
    
    .testimonials-carousel .author-info h4 {
        font-size: 1.2rem;
    }
    
    .testimonials-carousel .author-info span {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
    
    .carousel-indicators {
        gap: 10px;
        margin-top: 30px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* ===== TREATMENT-SPECIFIC HERO BACKGROUNDS ===== */

/* Microneedling Treatment Hero Background */
.microneedling-hero {
    background-image: url('../assets/treatment-images/microneedling-hero.jpg') !important;
}

.microneedling-hero .container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.microneedling-hero .hero-content {
    justify-content: flex-end !important;
    padding-right: 50px !important;
    grid-template-columns: none !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
}

.microneedling-hero .hero-text {
    flex: 0 0 700px !important;
    max-width: 700px !important;
    text-align: left !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Responsive overrides for microneedling hero */
@media (max-width: 1200px) {
    .microneedling-hero .container {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .microneedling-hero .hero-content {
        justify-content: flex-end !important;
        display: flex !important;
        grid-template-columns: none !important;
        width: 100% !important;
    }
    .microneedling-hero .hero-text {
        flex: 0 0 600px !important;
        max-width: 600px !important;
    }
}

@media (max-width: 768px) {
    .microneedling-hero .container {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
    }
    .microneedling-hero .hero-content {
        justify-content: center !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .microneedling-hero .hero-text {
        flex: none !important;
        max-width: 100% !important;
        text-align: center !important;
    }
}

/* Chemical Peels Treatment Hero Background */
.chemical-peels-hero {
    background-image: url('../assets/treatment-images/chemical-peels-hero.jpg') !important;
}

.chemical-peels-hero .container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.chemical-peels-hero .hero-content {
    justify-content: flex-start !important;
    padding-left: 120px !important;
    grid-template-columns: none !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
}

.chemical-peels-hero .hero-text {
    flex: 0 0 700px !important;
    max-width: 700px !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Responsive overrides for chemical peels hero */
@media (max-width: 1200px) {
    .chemical-peels-hero .container {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .chemical-peels-hero .hero-content {
        padding-left: 80px !important;
        display: flex !important;
        grid-template-columns: none !important;
        width: 100% !important;
    }
    .chemical-peels-hero .hero-text {
        flex: 0 0 600px !important;
        max-width: 600px !important;
    }
}

@media (max-width: 768px) {
    .chemical-peels-hero .container {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
    }
    .chemical-peels-hero .hero-content {
        justify-content: center !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .chemical-peels-hero .hero-text {
        flex: none !important;
        max-width: 100% !important;
        text-align: center !important;
    }
}

/* Laser Hair Removal Treatment Hero Background */
.laser-hair-removal-hero {
    background-image: url('../assets/treatment-images/laser-hair-removal-hero.jpg') !important;
}

/* HydraFacial Treatment Hero Background (default) */
.hydrafacial-hero {
    background-image: url('../assets/treatment-images/hydrafacial-hero.jpg') !important;
}

.hydrafacial-hero .hero-content {
    padding-left: 0px !important;
    margin-left: -50px !important;
}

/* Mole & Tag Removal Treatment Hero Background */
.mole-tag-removal-hero {
    background-image: url('../assets/treatment-images/mole-tag-removal-hero.jpg') !important;
}

.skin-rejuvenation-hero {
    background-image: url('../assets/treatment-images/skin-rejuvenation-hero.jpg') !important;
}

.laser-qswitch-hero {
    background-image: url('../assets/treatment-images/laser-qswitch-hero.jpg') !important;
}

.acne-scar-treatment-hero {
    background-image: url('../assets/treatment-images/acne-scar-treatment-hero.jpg') !important;
}

/* Laser Hair Removal Consultation Section with Parallax Clinic Background */
.laser-hair-removal-hero ~ .consultation-section {
    background-image: url('../assets/treatment-images/just-clinic-image-1.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.laser-hair-removal-hero ~ .consultation-section .consultation-content {
    background: transparent !important;
}

.laser-hair-removal-hero ~ .consultation-section .consultation-text,
.laser-hair-removal-hero ~ .consultation-section .consultation-form {
    background: transparent !important;
    backdrop-filter: none !important;
}

.laser-hair-removal-hero ~ .consultation-section .contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* HydraFacial Consultation Section with Parallax Clinic Background */
.hydrafacial-hero ~ .consultation-section {
    background-image: url('../assets/treatment-images/clinic-reception-area.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hydrafacial-hero ~ .consultation-section .consultation-content {
    background: transparent !important;
}

.hydrafacial-hero ~ .consultation-section .consultation-text,
.hydrafacial-hero ~ .consultation-section .consultation-form {
    background: transparent !important;
    backdrop-filter: none !important;
}

.hydrafacial-hero ~ .consultation-section .contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Microneedling Consultation Section with Parallax Clinic Background */
.microneedling-hero ~ .consultation-section {
    background-image: url('../assets/treatment-images/clinic-consultation-room.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.microneedling-hero ~ .consultation-section .consultation-content {
    background: transparent !important;
}

.microneedling-hero ~ .consultation-section .consultation-text,
.microneedling-hero ~ .consultation-section .consultation-form {
    background: transparent !important;
    backdrop-filter: none !important;
}

.microneedling-hero ~ .consultation-section .contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Chemical Peels Consultation Section with Parallax Clinic Background */
.chemical-peels-hero ~ .consultation-section {
    background-image: url('../assets/treatment-images/just-clinic-image-2.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.chemical-peels-hero ~ .consultation-section .consultation-content {
    background: transparent !important;
}

.chemical-peels-hero ~ .consultation-section .consultation-text,
.chemical-peels-hero ~ .consultation-section .consultation-form {
    background: transparent !important;
    backdrop-filter: none !important;
}

.chemical-peels-hero ~ .consultation-section .contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Generic Aesthetic Treatment Consultation Section with Parallax Clinic Background */
.aesthetic-hero ~ .consultation-section:not(.laser-hair-removal-hero ~ .consultation-section):not(.hydrafacial-hero ~ .consultation-section):not(.microneedling-hero ~ .consultation-section):not(.chemical-peels-hero ~ .consultation-section) {
    background-image: url('../assets/treatment-images/just-clinic-image-1.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.aesthetic-hero ~ .consultation-section .consultation-content {
    background: transparent !important;
}

.aesthetic-hero ~ .consultation-section .consultation-text,
.aesthetic-hero ~ .consultation-section .consultation-form {
    background: transparent !important;
    backdrop-filter: none !important;
}

.aesthetic-hero ~ .consultation-section .contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mole Education Section Styles */
.mole-education-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f8fafc 100%);
}

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

.education-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.education-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.education-card:nth-child(even) {
    direction: rtl;
}

.education-card:nth-child(even) > * {
    direction: ltr;
}

.education-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.education-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.education-text h3 {
    color: var(--aesthetic-primary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.education-text p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.education-list {
    list-style: none;
    padding: 0;
}

.education-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 15px;
    margin-bottom: 10px;
}

.education-list li i {
    color: var(--aesthetic-primary);
    font-size: 8px;
}

.removal-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.reason-category h4 {
    color: var(--aesthetic-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reason-category ul {
    list-style: none;
    padding: 0;
}

.reason-category ul li {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.reason-category ul li:before {
    content: "•";
    color: var(--aesthetic-primary);
    position: absolute;
    left: 0;
}

/* ABCDE Rule Section */
.abcde-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.abcde-section h3 {
    text-align: center;
    color: var(--aesthetic-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.abcde-section > p {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 40px;
}

.abcde-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.abcde-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(248, 187, 217, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.abcde-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.15);
}

.abcde-letter {
    width: 50px;
    height: 50px;
    background: var(--aesthetic-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.abcde-content h4 {
    color: var(--aesthetic-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.abcde-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Process Images in Timeline */
.timeline-step .step-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.timeline-step .process-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Enhanced Process Step Details */
.step-details {
    display: grid;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(248, 187, 217, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--aesthetic-primary);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.detail-item i {
    color: var(--aesthetic-primary);
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item div {
    flex: 1;
}

.detail-item strong {
    display: block;
    color: var(--aesthetic-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.detail-item span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

/* Enhanced Timeline Step Content */
.timeline-step .step-content h3 {
    color: var(--aesthetic-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.timeline-step .step-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .education-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .education-card:nth-child(even) {
        direction: ltr;
    }
    
    .removal-reasons {
        grid-template-columns: 1fr;
    }
    
    .abcde-grid {
        grid-template-columns: 1fr;
    }
    
    .abcde-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-step .step-image {
        max-width: 100%;
    }
    
    .timeline-step .process-img {
        height: 180px;
    }
    
    .step-details {
        padding: 15px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .detail-item i {
        font-size: 24px;
        margin-top: 0;
    }
}
/* HydraFacial Explanation Section */
.hydrafacial-explanation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7f7 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.hydrafacial-explanation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23f8d7da" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.explanation-block {
    margin-bottom: 60px;
    position: relative;
}

.explanation-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.explanation-block.reverse .explanation-content {
    flex-direction: row-reverse;
}

.explanation-text {
    flex: 1;
    z-index: 2;
}

.explanation-text h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.explanation-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #e91e63, #f8bbd9);
    border-radius: 2px;
}

.explanation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.key-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 12px;
    border-left: 4px solid #e91e63;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(233, 30, 99, 0.12);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #e91e63;
    min-width: 24px;
}

.explanation-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.explanation-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.explanation-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: static;
    margin-top: 15px;
    background: rgba(194, 24, 91, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2E2E2E;
    border: 2px solid rgba(194, 24, 91, 0.2);
    text-align: center;
}

.image-caption i {
    color: #e91e63;
}

/* Treatment Mechanisms */
.treatment-mechanisms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mechanism-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.mechanism-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 30, 99, 0.3);
}

.mechanism-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #f8bbd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mechanism-icon i {
    font-size: 1.5rem;
    color: white;
}

.mechanism-details h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.mechanism-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Candidate Categories */
.candidate-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.candidate-group h4,
.skin-concerns-addressed h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.candidate-group h4 i,
.skin-concerns-addressed h4 i {
    color: #e91e63;
}

.candidate-list {
    list-style: none;
    padding: 0;
}

.candidate-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.candidate-list li i {
    color: #27ae60;
    font-size: 1.1rem;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.concern-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
}

.concern-item i {
    color: #e91e63;
    font-size: 0.8rem;
}

/* Age Groups */
.age-suitability {
    margin-top: 40px;
}

.age-suitability h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-suitability h4 i {
    color: #e91e63;
}

.age-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.age-group {
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.age-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.age-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #f8bbd9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.age-group p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Results Timeline */
.results-timeline {
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding-left: 20px;
    position: relative;
}

.timeline-item::before {
    display: none;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #f8bbd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.timeline-marker i {
    color: white;
    font-size: 1.2rem;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Results Guarantee */
.results-guarantee {
    margin-top: 40px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #fff, #fef7f7);
    border-radius: 20px;
    border: 2px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-badge i {
    font-size: 3rem;
    color: #e91e63;
}

.guarantee-text h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.guarantee-text p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Scientific Evidence */
.scientific-evidence {
    margin-top: 60px;
    padding: 50px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.evidence-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.evidence-header h3 i {
    color: #e91e63;
}

.evidence-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.stat-item {
    padding: 20px;
    border-radius: 15px;
    background: rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e91e63;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.evidence-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.2);
    font-weight: 600;
    color: #27ae60;
}

.cert-item i {
    font-size: 1.3rem;
}

/* Responsive Design for Explanation Section */
@media (max-width: 768px) {
    .hydrafacial-explanation-section {
        padding: 60px 0;
    }
    
    .explanation-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .explanation-block.reverse .explanation-content {
        flex-direction: column;
    }
    
    .explanation-text h3 {
        font-size: 1.8rem;
    }
    
    .candidate-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .age-groups {
        grid-template-columns: 1fr;
    }
    
    .evidence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .evidence-certifications {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .scientific-evidence {
        padding: 30px 20px;
    }
    
    .treatment-mechanisms {
        grid-template-columns: 1fr;
    }
    
    .mechanism-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Updated Immersive Layout Styles */
.block-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #880E4F;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #C2185B, #F48FB1);
    border-radius: 2px;
}

.immersive-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.floating-image-container {
    width: 450px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.floating-image-container.left {
    float: left;
    margin-right: 40px;
    margin-bottom: 30px;
}

.floating-image-container.right {
    float: right;
    margin-left: 40px;
    margin-bottom: 30px;
}

.floating-image-container.center {
    float: none;
    margin: 40px auto;
    text-align: center;
    width: 600px;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lead-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2E2E2E;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: justify;
}

/* Highlight Badges */
.highlight-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    clear: both;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #e91e63;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-item i {
    font-size: 2rem;
    color: #C2185B;
    min-width: 40px;
}

.badge-content strong {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 1.1rem;
    color: #2E2E2E;
    margin-bottom: 5px;
    font-weight: 600;
}

.badge-content span {
    color: #666;
    font-size: 1rem;
}

/* Mechanism Flow */
.mechanism-flow {
    margin: 40px 0;
    clear: both;
}

.mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.mechanism-step:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e91e63, #f8bbd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.step-icon i {
    font-size: 1.8rem;
    color: white;
}

.step-content h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Candidate Showcase */
.candidate-showcase {
    margin: 40px 0;
    clear: both;
}

.showcase-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.showcase-section h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-section h4 i {
    color: #e91e63;
}

.candidate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, #e91e63, #f8bbd9);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.concerns-flow {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.concern-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.concern-tag {
    padding: 10px 18px;
    background: rgba(233, 30, 99, 0.1);
    color: #2c3e50;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 2px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.concern-tag:hover {
    background: rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
}

/* Age Journey */
.age-journey {
    margin-top: 40px;
}

.age-journey h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.age-journey h4 i {
    color: #e91e63;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.journey-step {
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.journey-age {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #f8bbd9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.journey-content strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.journey-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Results Journey */
.results-journey {
    margin: 40px 0;
    clear: both;
}

.result-phase {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.result-phase.immediate {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.05));
    border-left: 5px solid #4caf50;
}

.result-phase.weekly {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 224, 130, 0.05));
    border-left: 5px solid #ffc107;
}

.result-phase.monthly {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(248, 187, 217, 0.05));
    border-left: 5px solid #e91e63;
}

.result-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.phase-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-icon i {
    color: white;
    font-size: 1.3rem;
}

.phase-header h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    font-size: 0.95rem;
    color: #2c3e50;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* Guarantee Callout */
.guarantee-callout {
    margin: 50px 0;
    clear: both;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #fff, #fef7f7);
    border-radius: 25px;
    border: 3px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 4rem;
    color: #e91e63;
}

.guarantee-message h4 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.guarantee-message p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .floating-image-container.left,
    .floating-image-container.right {
        float: none;
        width: 100%;
        margin: 20px auto;
        text-align: center;
    }
    
    .floating-image-container.center {
        width: 100%;
    }
    
    .block-title {
        font-size: 2rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .journey-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .mechanism-step {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .candidate-tags,
    .concern-row {
        justify-content: center;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* Typography Consistency Fixes for HydraFacial Explanation Section */
.hydrafacial-explanation-section {
    font-family: 'Poppins', sans-serif;
}

.hydrafacial-explanation-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #880E4F;
    font-weight: 600;
}

.hydrafacial-explanation-section .section-header p {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    font-size: 1.1rem;
    opacity: 0.8;
}

.hydrafacial-explanation-section h3,
.hydrafacial-explanation-section h4 {
    font-family: 'Playfair Display', serif;
    color: #880E4F;
    font-weight: 600;
}

.hydrafacial-explanation-section p {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    line-height: 1.6;
}

/* Update all pink colors to match website color scheme */
.hydrafacial-explanation-section .step-icon,
.hydrafacial-explanation-section .phase-icon {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.hydrafacial-explanation-section .tag {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.hydrafacial-explanation-section .journey-age {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.hydrafacial-explanation-section .timeline-marker {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.hydrafacial-explanation-section .guarantee-icon i {
    color: #C2185B;
}

.hydrafacial-explanation-section .image-caption i,
.hydrafacial-explanation-section .showcase-section h4 i,
.hydrafacial-explanation-section .age-journey h4 i {
    color: #C2185B;
}

/* Update border and accent colors */
.hydrafacial-explanation-section .badge-item {
    border-left: 5px solid #C2185B;
}

.hydrafacial-explanation-section .result-phase.immediate {
    border-left: 5px solid #4caf50;
}

.hydrafacial-explanation-section .result-phase.weekly {
    border-left: 5px solid #ffc107;
}

.hydrafacial-explanation-section .result-phase.monthly {
    border-left: 5px solid #C2185B;
}

.hydrafacial-explanation-section .guarantee-callout .guarantee-content {
    border: 3px solid rgba(194, 24, 91, 0.2);
}

.hydrafacial-explanation-section .step-overlay {
    color: #C2185B;
    border: 3px solid rgba(194, 24, 91, 0.3);
}

/* Update mechanism step typography */
.hydrafacial-explanation-section .step-content h4,
.hydrafacial-explanation-section .mechanism-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #2E2E2E;
    font-weight: 600;
}

.hydrafacial-explanation-section .journey-content strong,
.hydrafacial-explanation-section .phase-header h4 {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    font-weight: 600;
}

.hydrafacial-explanation-section .guarantee-message h4 {
    font-family: 'Playfair Display', serif;
    color: #880E4F;
    font-weight: 600;
}

/* ===== PROCESS TIMELINE SECTION ===== */
.process-timeline {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.02) 0%, rgba(233, 30, 99, 0.02) 100%);
    z-index: 1;
}

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

.process-timeline .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-timeline .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.process-timeline .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .step-content {
    text-align: right;
}

.timeline-step:nth-child(even) .step-details {
    align-items: flex-end;
}

.timeline-step:nth-child(even) .detail-item {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    flex: 0 0 80px;
    height: 80px;
    background: var(--aesthetic-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 3;
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(248, 187, 217, 0.2);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-step:nth-child(odd) .step-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-step:nth-child(even) .step-content::before {
    right: -30px;
    border-left-color: white;
}

.step-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.step-content > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-details {
    display: grid;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(248, 187, 217, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--aesthetic-primary);
}

.timeline-step:nth-child(even) .step-details {
    border-left: none;
    border-right: 4px solid var(--aesthetic-primary);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    flex: 0 0 40px;
    height: 40px;
    background: var(--aesthetic-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 5px;
}

.detail-item div {
    flex: 1;
}

.detail-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 5px;
}

.detail-item span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Timeline connecting line */
.timeline-container::before {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-step {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
    }
    
    .timeline-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .timeline-step:nth-child(even) .step-details {
        align-items: center;
    }
    
    .timeline-step:nth-child(even) .detail-item {
        flex-direction: row;
        text-align: left;
    }
    
    .step-content::before {
        display: none;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .step-number {
        margin: 0 0 20px 0;
    }
    
    .step-content {
        width: 100%;
        margin-left: 0;
    }
    
    .step-details {
        border-left: 4px solid var(--aesthetic-primary);
        border-right: none;
    }
}


/* Ensure mechanism step icons are properly displayed */
.hydrafacial-explanation-section .mechanism-step .step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C2185B, #F48FB1) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

.hydrafacial-explanation-section .mechanism-step .step-icon i {
    font-size: 1.8rem !important;
    color: white !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure Font Awesome icons are loaded */
.hydrafacial-explanation-section .step-icon::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* ===== MOLE REMOVAL PROCESS TIMELINE ===== */
.mole-process-timeline {
    background: linear-gradient(135deg, #faf8ff 0%, #f0f0ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mole-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b9d" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23e91e63" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23c2185b" opacity="0.1"/></svg>');
    pointer-events: none;
}

.mole-process-timeline .timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.mole-process-timeline .timeline-line {
    display: none;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.mole-process-timeline .timeline-step {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
}

.mole-process-timeline .timeline-step:last-child {
    margin-bottom: 0;
}

.mole-process-timeline .timeline-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.mole-process-timeline .timeline-content.reverse {
    flex-direction: row-reverse;
}

.mole-process-timeline .step-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
}

.mole-process-timeline .step-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.mole-process-timeline .treatment-face-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.mole-process-timeline .step-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--aesthetic-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mole-process-timeline .step-details {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.mole-process-timeline .step-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.mole-process-timeline .step-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mole-process-timeline .step-benefits {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mole-process-timeline .benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(233, 30, 99, 0.05));
    color: #C2185B;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.mole-process-timeline .benefit-tag i {
    font-size: 1rem;
    color: var(--aesthetic-primary);
}

.mole-process-timeline .step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #666;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.mole-process-timeline .step-duration i {
    color: var(--aesthetic-primary);
    font-size: 1rem;
}

/* Responsive design for mole timeline */
@media (max-width: 1024px) {
    .mole-process-timeline .timeline-content {
        gap: 40px;
    }
    
    .mole-process-timeline .step-details {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .mole-process-timeline .timeline-line {
        display: none;
    }
    
    .mole-process-timeline .timeline-content,
    .mole-process-timeline .timeline-content.reverse {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
    }
    
    .mole-process-timeline .step-image,
    .mole-process-timeline .step-details {
        width: 100%;
        max-width: 500px;
    }
    
    .mole-process-timeline .step-details {
        padding: 25px;
    }
    
    .mole-process-timeline .step-benefits {
        justify-content: center;
    }
}


/* Fix icon visibility issue - override background-clip text properties */
.hydrafacial-explanation-section .mechanism-step .step-icon {
    width: 70px !important;
    height: 70px !important;
    background: #C2185B !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3) !important;
}

.hydrafacial-explanation-section .mechanism-step .step-icon i {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    background: none !important;
    background-color: transparent !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Ensure no text gradient effects on these specific icons */
.hydrafacial-explanation-section .mechanism-step .step-icon i::before,
.hydrafacial-explanation-section .mechanism-step .step-icon i::after {
    color: #ffffff !important;
    background: transparent !important;
}


/* Microneedling Explanation Section - Same styling as HydraFacial */
.microneedling-explanation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7f7 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.microneedling-explanation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23f8d7da" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.microneedling-explanation-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #880E4F;
    font-weight: 600;
}

.microneedling-explanation-section .section-header p {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    font-size: 1.1rem;
    opacity: 0.8;
}

.microneedling-explanation-section h3,
.microneedling-explanation-section h4 {
    font-family: 'Playfair Display', serif;
    color: #880E4F;
    font-weight: 600;
}

.microneedling-explanation-section p {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    line-height: 1.6;
}

/* Update all pink colors to match website color scheme */
.microneedling-explanation-section .step-icon,
.microneedling-explanation-section .phase-icon {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.microneedling-explanation-section .tag {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.microneedling-explanation-section .journey-age {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.microneedling-explanation-section .timeline-marker {
    background: linear-gradient(135deg, #C2185B, #F48FB1);
}

.microneedling-explanation-section .guarantee-icon i {
    color: #C2185B;
}

.microneedling-explanation-section .image-caption i,
.microneedling-explanation-section .showcase-section h4 i,
.microneedling-explanation-section .age-journey h4 i {
    color: #C2185B;
}

/* Update border and accent colors */
.microneedling-explanation-section .badge-item {
    border-left: 5px solid #C2185B;
}

.microneedling-explanation-section .result-phase.immediate {
    border-left: 5px solid #4caf50;
}

.microneedling-explanation-section .result-phase.weekly {
    border-left: 5px solid #ffc107;
}

.microneedling-explanation-section .result-phase.monthly {
    border-left: 5px solid #C2185B;
}

.microneedling-explanation-section .guarantee-callout .guarantee-content {
    border: 3px solid rgba(194, 24, 91, 0.2);
}

/* Update mechanism step typography */
.microneedling-explanation-section .step-content h4,
.microneedling-explanation-section .mechanism-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #2E2E2E;
    font-weight: 600;
}

.microneedling-explanation-section .journey-content strong,
.microneedling-explanation-section .phase-header h4 {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    font-weight: 600;
}

.microneedling-explanation-section .guarantee-message h4 {
    font-family: 'Playfair Display', serif;
    color: #880E4F;
    font-weight: 600;
}

/* Ensure mechanism step icons are properly displayed for Microneedling */
.microneedling-explanation-section .mechanism-step .step-icon {
    width: 70px !important;
    height: 70px !important;
    background: #C2185B !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3) !important;
}

.microneedling-explanation-section .mechanism-step .step-icon i {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    background: none !important;
    background-color: transparent !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Q-Switch Process Timeline Styles */
.qswitch-process-timeline {
    background: linear-gradient(135deg, #faf8ff 0%, #f0f0ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.qswitch-process-timeline .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qswitch-process-timeline .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.qswitch-process-timeline .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2E2E2E;
    margin-bottom: 20px;
    position: relative;
}

.qswitch-process-timeline .section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.qswitch-process-timeline .timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    min-height: 800px;
}

.qswitch-process-timeline .timeline-line {
    display: none;
}

.qswitch-process-timeline .timeline-step {
    display: block !important;
    visibility: visible !important;
    position: relative;
    margin: 80px 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.qswitch-process-timeline .timeline-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.qswitch-process-timeline .timeline-step:last-child {
    margin-bottom: 0;
}

.qswitch-process-timeline .timeline-content {
    display: flex !important;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 300px;
}

.qswitch-process-timeline .timeline-content.reverse {
    flex-direction: row-reverse;
}

.qswitch-process-timeline .step-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease;
}

.qswitch-process-timeline .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.qswitch-process-timeline .treatment-face-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.qswitch-process-timeline .step-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.4);
}

.qswitch-process-timeline .step-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(233, 30, 99, 0.3);
    z-index: 3;
}

.qswitch-process-timeline .step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
}

.qswitch-process-timeline .step-details {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.qswitch-process-timeline .step-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2E2E2E;
    margin-bottom: 15px;
}

.qswitch-process-timeline .step-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.qswitch-process-timeline .step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.qswitch-process-timeline .benefit-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--aesthetic-primary), var(--aesthetic-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.qswitch-process-timeline .benefit-tag i {
    font-size: 0.8rem;
}

.qswitch-process-timeline .step-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 15px;
    padding: 12px 20px;
    margin-top: 20px;
    color: var(--aesthetic-primary);
    font-weight: 600;
}

.qswitch-process-timeline .step-duration i {
    font-size: 1rem;
}

.qswitch-process-timeline .step-duration span {
    font-size: 0.95rem;
}

.qswitch-process-timeline .step-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive Design for Q-Switch Timeline */
@media (max-width: 768px) {
    .qswitch-process-timeline {
        padding: 60px 0;
    }
    
    .qswitch-process-timeline .section-header h2 {
        font-size: 2.2rem;
    }
    
    .qswitch-process-timeline .timeline-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .qswitch-process-timeline .timeline-content.reverse {
        flex-direction: column;
    }
    
    .qswitch-process-timeline .timeline-line {
        display: none !important;
    }
    
    .qswitch-process-timeline .step-details {
        padding: 25px;
    }
    
    .qswitch-process-timeline .step-image {
        min-height: 250px;
    }
}

/* ===== CHEMICAL PEEL EXPLANATION SECTION STYLES ===== */
.chemical-peel-explanation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf7fd 0%, #f8e6f1 100%);
}

.chemical-peel-explanation-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.chemical-peel-explanation-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 600;
}

.chemical-peel-explanation-section .section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.chemical-peel-explanation-section .explanation-block {
    margin-bottom: 60px;
    padding: 0 20px;
}

.chemical-peel-explanation-section .block-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.chemical-peel-explanation-section .immersive-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.chemical-peel-explanation-section .floating-image-container {
    flex: 0 0 450px;
    position: relative;
}

.chemical-peel-explanation-section .floating-image-container.left {
    order: 1;
}

.chemical-peel-explanation-section .floating-image-container.right {
    order: 3;
}

.chemical-peel-explanation-section .content-text {
    flex: 1;
    order: 2;
}

.chemical-peel-explanation-section .floating-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(224, 143, 188, 0.2);
    transition: transform 0.3s ease;
}

.chemical-peel-explanation-section .floating-image:hover {
    transform: translateY(-5px);
}

.chemical-peel-explanation-section .image-caption {
    position: static;
    margin-top: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.chemical-peel-explanation-section .content-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.chemical-peel-explanation-section .mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.chemical-peel-explanation-section .mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.chemical-peel-explanation-section .mechanism-step:hover {
    transform: translateX(10px);
}

.chemical-peel-explanation-section .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e08fbc, #c7679f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chemical-peel-explanation-section .step-icon i {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

.chemical-peel-explanation-section .step-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.chemical-peel-explanation-section .step-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.chemical-peel-explanation-section .candidate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.chemical-peel-explanation-section .candidate-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.chemical-peel-explanation-section .candidate-item:hover {
    transform: translateY(-5px);
}

.chemical-peel-explanation-section .candidate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e08fbc, #c7679f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.chemical-peel-explanation-section .candidate-icon i {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

.chemical-peel-explanation-section .candidate-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.chemical-peel-explanation-section .candidate-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.chemical-peel-explanation-section .results-highlight {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.chemical-peel-explanation-section .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(224, 143, 188, 0.1);
    border-radius: 10px;
    border-left: 4px solid #e08fbc;
}

.chemical-peel-explanation-section .highlight-item i {
    color: #e08fbc !important;
    font-size: 1.2rem !important;
}

.chemical-peel-explanation-section .highlight-item span {
    font-family: 'Poppins', sans-serif;
    color: #444;
    font-size: 0.95rem;
}

.chemical-peel-explanation-section .evidence-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.chemical-peel-explanation-section .stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.chemical-peel-explanation-section .stat-item:hover {
    transform: translateY(-5px);
}

.chemical-peel-explanation-section .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e08fbc;
    margin-bottom: 5px;
}

.chemical-peel-explanation-section .stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.chemical-peel-explanation-section .single-column {
    justify-content: center;
}

.chemical-peel-explanation-section .evidence-content {
    max-width: 800px;
}

.chemical-peel-explanation-section .evidence-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chemical-peel-explanation-section .immersive-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .chemical-peel-explanation-section .floating-image-container {
        flex: none;
        order: 1 !important;
    }
    
    .chemical-peel-explanation-section .content-text {
        order: 2 !important;
    }
    
    .chemical-peel-explanation-section .candidate-grid {
        grid-template-columns: 1fr;
    }
    
    .chemical-peel-explanation-section .evidence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .chemical-peel-explanation-section .section-header h2 {
        font-size: 2rem;
    }
    
    .chemical-peel-explanation-section .block-title {
        font-size: 1.5rem;
    }
}

/* ===== LASER HAIR REMOVAL EXPLANATION SECTION STYLES ===== */
.laser-hair-explanation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf7fd 0%, #f8e6f1 100%);
}

.laser-hair-explanation-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.laser-hair-explanation-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 600;
}

.laser-hair-explanation-section .section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.laser-hair-explanation-section .explanation-block {
    margin-bottom: 60px;
    padding: 0 20px;
}

.laser-hair-explanation-section .block-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.laser-hair-explanation-section .immersive-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.laser-hair-explanation-section .floating-image-container {
    flex: 0 0 450px;
    position: relative;
}

.laser-hair-explanation-section .floating-image-container.left {
    order: 1;
}

.laser-hair-explanation-section .floating-image-container.right {
    order: 3;
}

.laser-hair-explanation-section .content-text {
    flex: 1;
    order: 2;
}

.laser-hair-explanation-section .floating-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(224, 143, 188, 0.2);
    transition: transform 0.3s ease;
}

.laser-hair-explanation-section .floating-image:hover {
    transform: translateY(-5px);
}

.laser-hair-explanation-section .image-caption {
    position: static;
    margin-top: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.laser-hair-explanation-section .content-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.laser-hair-explanation-section .mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.laser-hair-explanation-section .mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.laser-hair-explanation-section .mechanism-step:hover {
    transform: translateX(10px);
}

.laser-hair-explanation-section .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e08fbc, #c7679f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.laser-hair-explanation-section .step-icon i {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

.laser-hair-explanation-section .step-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.laser-hair-explanation-section .step-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.laser-hair-explanation-section .candidate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.laser-hair-explanation-section .candidate-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.laser-hair-explanation-section .candidate-item:hover {
    transform: translateY(-5px);
}

.laser-hair-explanation-section .candidate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e08fbc, #c7679f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.laser-hair-explanation-section .candidate-icon i {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

.laser-hair-explanation-section .candidate-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.laser-hair-explanation-section .candidate-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.laser-hair-explanation-section .results-highlight {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.laser-hair-explanation-section .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(224, 143, 188, 0.1);
    border-radius: 10px;
    border-left: 4px solid #e08fbc;
}

.laser-hair-explanation-section .highlight-item i {
    color: #e08fbc !important;
    font-size: 1.2rem !important;
}

.laser-hair-explanation-section .highlight-item span {
    font-family: 'Poppins', sans-serif;
    color: #444;
    font-size: 0.95rem;
}

.laser-hair-explanation-section .evidence-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.laser-hair-explanation-section .stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.laser-hair-explanation-section .stat-item:hover {
    transform: translateY(-5px);
}

.laser-hair-explanation-section .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e08fbc;
    margin-bottom: 5px;
}

.laser-hair-explanation-section .stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.laser-hair-explanation-section .single-column {
    justify-content: center;
}

.laser-hair-explanation-section .evidence-content {
    max-width: 800px;
}

.laser-hair-explanation-section .evidence-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .laser-hair-explanation-section .immersive-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .laser-hair-explanation-section .floating-image-container {
        flex: none;
        order: 1 !important;
    }
    
    .laser-hair-explanation-section .content-text {
        order: 2 !important;
    }
    
    .laser-hair-explanation-section .candidate-grid {
        grid-template-columns: 1fr;
    }
    
    .laser-hair-explanation-section .evidence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .laser-hair-explanation-section .section-header h2 {
        font-size: 2rem;
    }
    
    .laser-hair-explanation-section .block-title {
        font-size: 1.5rem;
    }
}

/* ===== Q-SWITCH TESTIMONIALS SECTION ENHANCED STYLES ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf7fd 0%, #f8e6f1 50%, #fff0f8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(2deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.testimonials-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--aesthetic-primary), var(--aesthetic-secondary));
    border-radius: 2px;
}

.testimonials-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
    font-weight: 400;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.2);
    z-index: 2;
}

.testimonial-card {
    display: none;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
    display: block;
    animation: testimonialFadeIn 0.8s ease-out;
}

@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 120px;
    color: rgba(255, 107, 157, 0.2);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
}

.testimonial-content .stars {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-content .stars i {
    color: #FFD700;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c1810;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 107, 157, 0.2);
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 8px;
    font-weight: 600;
}

.author-info p {
    color: var(--aesthetic-primary);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    font-style: normal;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 3;
}

.testimonial-prev,
.testimonial-next {
    background: linear-gradient(135deg, var(--aesthetic-primary), var(--aesthetic-secondary));
    border: none;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.5);
}

.testimonial-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--aesthetic-primary);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.6);
    transform: scale(1.3);
}

.dot:hover:not(.active) {
    background: rgba(255, 107, 157, 0.6);
    transform: scale(1.1);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ===== Q-SWITCH EXPLANATION SECTION STYLES ===== */
.qswitch-explanation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf7fd 0%, #f8e6f1 100%);
    position: relative;
    overflow: hidden;
}

.qswitch-explanation-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.qswitch-explanation-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 600;
}

.qswitch-explanation-section .section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.qswitch-explanation-section .explanation-block {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.qswitch-explanation-section .block-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.qswitch-explanation-section .immersive-content {
    position: relative;
}

.qswitch-explanation-section .floating-image-container {
    margin: 30px 0;
    text-align: center;
}

.qswitch-explanation-section .floating-image-container.left {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
}

.qswitch-explanation-section .floating-image-container.right {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 300px;
}

.qswitch-explanation-section .floating-image-container.center {
    margin: 30px auto;
    max-width: 500px;
    clear: both;
}

.qswitch-explanation-section .floating-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qswitch-explanation-section .floating-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 107, 157, 0.3);
}

.qswitch-explanation-section .image-caption {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--aesthetic-primary);
    font-weight: 500;
}

.qswitch-explanation-section .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c1810;
    margin-bottom: 25px;
    font-weight: 400;
}

.qswitch-explanation-section .key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
    clear: both;
}

.qswitch-explanation-section .feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.qswitch-explanation-section .feature-highlight:hover {
    transform: translateX(10px);
}

.qswitch-explanation-section .feature-highlight i {
    font-size: 2rem;
    color: var(--aesthetic-primary);
    flex-shrink: 0;
    margin-top: 5px;
}

.qswitch-explanation-section .feature-highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 8px;
    font-weight: 600;
}

.qswitch-explanation-section .feature-highlight p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.qswitch-explanation-section .mechanism-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    clear: both;
}

.qswitch-explanation-section .mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.qswitch-explanation-section .mechanism-step:hover {
    transform: translateY(-5px);
}

.qswitch-explanation-section .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--aesthetic-primary), var(--aesthetic-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qswitch-explanation-section .step-icon i {
    font-size: 1.2rem;
    color: white;
}

.qswitch-explanation-section .step-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 8px;
    font-weight: 600;
}

.qswitch-explanation-section .step-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.qswitch-explanation-section .candidate-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    clear: both;
}

.qswitch-explanation-section .showcase-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.qswitch-explanation-section .candidate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qswitch-explanation-section .tag {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.qswitch-explanation-section .tag:hover {
    transform: scale(1.05);
}

.qswitch-explanation-section .tag.ideal {
    background: linear-gradient(135deg, #e8f5e8, #d4f1d4);
    color: #2d5a2d;
    border: 1px solid #a8d8a8;
}

.qswitch-explanation-section .tag.candidate {
    background: linear-gradient(135deg, #e8f0ff, #d4e4ff);
    color: #2d4a6b;
    border: 1px solid #a8c4e8;
}

.qswitch-explanation-section .tag.consideration {
    background: linear-gradient(135deg, #fff8e8, #ffe8d4);
    color: #6b4a2d;
    border: 1px solid #e8c4a8;
}

.qswitch-explanation-section .results-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    clear: both;
}

.qswitch-explanation-section .result-phase {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--aesthetic-primary);
}

.qswitch-explanation-section .phase-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.qswitch-explanation-section .phase-header i {
    color: var(--aesthetic-primary);
    font-size: 1.2rem;
}

.qswitch-explanation-section .phase-header h4 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin: 0;
    font-weight: 600;
}

.qswitch-explanation-section .result-phase ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qswitch-explanation-section .result-phase li {
    padding: 5px 0;
    color: #555;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.qswitch-explanation-section .result-phase li:before {
    content: '•';
    color: var(--aesthetic-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.qswitch-explanation-section .treatment-expectations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    clear: both;
}

.qswitch-explanation-section .expectation-card {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.qswitch-explanation-section .expectation-card:hover {
    transform: translateY(-5px);
}

.qswitch-explanation-section .expectation-card i {
    font-size: 2.5rem;
    color: var(--aesthetic-primary);
    margin-bottom: 15px;
    display: block;
}

.qswitch-explanation-section .expectation-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.qswitch-explanation-section .expectation-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qswitch-explanation-section .explanation-block {
        padding: 30px 20px;
    }
    
    .qswitch-explanation-section .section-header h2 {
        font-size: 2rem;
    }
    
    .qswitch-explanation-section .block-title {
        font-size: 1.5rem;
    }
    
    .qswitch-explanation-section .floating-image-container.left,
    .qswitch-explanation-section .floating-image-container.right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .qswitch-explanation-section .mechanism-flow {
        grid-template-columns: 1fr;
    }
    
    .qswitch-explanation-section .candidate-showcase {
        grid-template-columns: 1fr;
    }
    
    .qswitch-explanation-section .results-journey {
        grid-template-columns: 1fr;
    }
}

/* ===== ACNE SCAR PROCESS SECTION ===== */
.acne-scar-process-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, 
            rgba(255, 192, 203, 0.02) 0%,
            rgba(255, 255, 255, 0.99) 10%,
            rgba(255, 255, 255, 1) 90%,
            rgba(255, 182, 193, 0.03) 100%
        ),
        radial-gradient(circle at 10% 20%, rgba(255, 192, 203, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 182, 193, 0.04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.acne-scar-process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(255, 192, 203, 0.03) 0deg,
            rgba(255, 182, 193, 0.02) 60deg,
            rgba(255, 218, 225, 0.04) 120deg,
            rgba(255, 228, 230, 0.03) 180deg,
            rgba(255, 192, 203, 0.02) 240deg,
            rgba(255, 182, 193, 0.03) 300deg,
            rgba(255, 192, 203, 0.03) 360deg
        );
    animation: rotate 40s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.acne-scar-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255, 192, 203, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 182, 193, 0.01) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.3;
}

.acne-scar-process-section .container {
    position: relative;
    z-index: 3;
}

.acne-scar-process-section .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    position: relative;
    padding: 40px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 250, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(213, 51, 132, 0.08),
        0 10px 30px rgba(213, 51, 132, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 192, 203, 0.15);
}

.acne-scar-process-section .section-header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(213, 51, 132, 0.1) 0%,
        rgba(233, 30, 99, 0.08) 25%,
        rgba(248, 72, 94, 0.06) 50%,
        rgba(255, 99, 132, 0.08) 75%,
        rgba(213, 51, 132, 0.1) 100%
    );
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.acne-scar-process-section .section-header:hover::before {
    opacity: 1;
}

.acne-scar-process-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #d63384 0%, 
        #e91e63 25%, 
        #f8485e 50%, 
        #ff6384 75%, 
        #d63384 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(213, 51, 132, 0.1);
    animation: gradientShift 6s ease-in-out infinite;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.acne-scar-process-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #d63384 20%, 
        #e91e63 50%, 
        #f8485e 80%, 
        transparent 100%
    );
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

.acne-scar-process-section .section-header p {
    font-size: 1.4rem;
    color: #555;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    padding: 20px 0;
}

.acne-scar-process-section .section-header p::before {
    content: '✨';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.7;
}

.acne-scar-process-section .section-header p::after {
    content: '✨';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Process Block Styling */
.process-block {
    margin-bottom: 140px;
    position: relative;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 248, 250, 0.9) 100%
        );
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 70px 50px;
    box-shadow: 
        0 25px 80px rgba(213, 51, 132, 0.08),
        0 10px 30px rgba(213, 51, 132, 0.05),
        0 2px 10px rgba(213, 51, 132, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 192, 203, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(213, 51, 132, 0.03) 50%, 
        transparent 100%
    );
    transition: left 0.8s ease;
    pointer-events: none;
}

.process-block:hover::before {
    left: 100%;
}

.process-block:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 35px 100px rgba(213, 51, 132, 0.12),
        0 20px 50px rgba(213, 51, 132, 0.08),
        0 8px 25px rgba(213, 51, 132, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 192, 203, 0.4);
}

.process-block:nth-child(even) {
    background: 
        linear-gradient(135deg, 
            rgba(255, 248, 250, 0.95) 0%, 
            rgba(255, 240, 245, 0.9) 100%
        );
}

.process-block:nth-child(even):hover {
    background: 
        linear-gradient(135deg, 
            rgba(255, 248, 250, 0.98) 0%, 
            rgba(255, 240, 245, 0.95) 100%
        );
}

.process-step-number {
    position: absolute;
    top: -25px;
    left: 50px;
    width: 90px;
    height: 90px;
    background: 
        linear-gradient(135deg, #d63384 0%, #e91e63 50%, #f8485e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 
        0 15px 40px rgba(213, 51, 132, 0.3),
        0 8px 20px rgba(213, 51, 132, 0.2),
        0 3px 10px rgba(213, 51, 132, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-block:hover .process-step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 20px 60px rgba(213, 51, 132, 0.4),
        0 10px 30px rgba(213, 51, 132, 0.25),
        0 5px 15px rgba(213, 51, 132, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.process-block:hover .process-step-number::before {
    opacity: 1;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 50px;
    padding-left: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.process-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #d63384, #e91e63);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.process-block:hover .process-title::before {
    height: 100%;
}

.process-title i {
    color: #d63384;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(213, 51, 132, 0.2));
}

.process-block:hover .process-title i {
    transform: scale(1.1) rotate(5deg);
    color: #e91e63;
    filter: drop-shadow(0 4px 8px rgba(213, 51, 132, 0.3));
}

/* Immersive Process Content */
.immersive-process-content {
    position: relative;
    min-height: 400px;
    padding: 20px 0;
}

.floating-process-image {
    position: absolute;
    z-index: 3;
    transition: all 0.4s ease;
}

.floating-process-image.left {
    left: 0;
    top: 0;
    width: 45%;
    max-width: 400px;
}

.floating-process-image.right {
    right: 0;
    top: 0;
    width: 45%;
    max-width: 400px;
}

.floating-process-image .process-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 15px 40px rgba(213, 51, 132, 0.15),
        0 5px 15px rgba(213, 51, 132, 0.1);
    transition: all 0.4s ease;
}

.floating-process-image:hover .process-image {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(213, 51, 132, 0.2),
        0 10px 25px rgba(213, 51, 132, 0.15);
}

.floating-process-image .image-caption {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(213, 51, 132, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-process-image .image-caption i {
    font-size: 0.8rem;
}

/* Process Lead Text */
.process-lead {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    padding-left: 20px;
    border-left: 4px solid #d63384;
    background: rgba(213, 51, 132, 0.02);
    padding: 20px 25px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.floating-process-image.left ~ .process-lead {
    margin-left: 50%;
    padding-left: 40px;
}

.floating-process-image.right ~ .process-lead {
    margin-right: 50%;
    padding-right: 40px;
}

/* Process Details */
.process-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.floating-process-image.left ~ .process-details {
    margin-left: 50%;
    padding-left: 40px;
}

.floating-process-image.right ~ .process-details {
    margin-right: 50%;
    padding-right: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 192, 203, 0.3);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(213, 51, 132, 0.4);
    box-shadow: 0 8px 25px rgba(213, 51, 132, 0.08);
}

.detail-item i {
    font-size: 1.8rem;
    color: #d63384;
    flex-shrink: 0;
    margin-top: 5px;
}

.detail-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.detail-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Treatment Modalities */
.treatment-modalities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.floating-process-image.right ~ .treatment-modalities {
    margin-right: 50%;
    padding-right: 40px;
}

.modality-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 192, 203, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(213, 51, 132, 0.1), transparent);
    transition: left 0.6s ease;
}

.modality-card:hover::before {
    left: 100%;
}

.modality-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(213, 51, 132, 0.5);
    box-shadow: 0 15px 40px rgba(213, 51, 132, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.modality-card i {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 20px;
    display: block;
}

.modality-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.modality-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Treatment Phases */
.treatment-phases {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.floating-process-image.left ~ .treatment-phases {
    margin-left: 50%;
    padding-left: 40px;
}

.phase-step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 192, 203, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.phase-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #d63384, #e91e63);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.phase-step:hover::before {
    transform: scaleY(1);
}

.phase-step:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(213, 51, 132, 0.4);
    box-shadow: 0 8px 25px rgba(213, 51, 132, 0.08);
}

.phase-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d63384, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(213, 51, 132, 0.3);
}

.phase-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.phase-info p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Recovery Timeline */
.recovery-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.floating-process-image.right ~ .recovery-timeline {
    margin-right: 50%;
    padding-right: 40px;
}

.recovery-phase {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 192, 203, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.recovery-phase.immediate {
    border-top: 4px solid #ff6b6b;
}

.recovery-phase.short-term {
    border-top: 4px solid #ffd93d;
}

.recovery-phase.long-term {
    border-top: 4px solid #6bcf7f;
}

.recovery-phase:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(213, 51, 132, 0.12);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(213, 51, 132, 0.4);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 192, 203, 0.2);
}

.phase-header i {
    font-size: 1.5rem;
    color: #d63384;
}

.phase-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.recovery-phase ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recovery-phase li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: #555;
    line-height: 1.5;
}

.recovery-phase li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d63384;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Results Expectations */
.results-expectations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.expectation-milestone {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 192, 203, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expectation-milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d63384, #e91e63, #f8485e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expectation-milestone:hover::before {
    transform: scaleX(1);
}

.expectation-milestone:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(213, 51, 132, 0.4);
    box-shadow: 0 15px 40px rgba(213, 51, 132, 0.12);
}

.expectation-milestone i {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 20px;
    display: block;
}

.expectation-milestone h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.expectation-milestone p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-process-image.left,
    .floating-process-image.right {
        width: 40%;
    }
    
    .floating-process-image.left ~ .process-lead,
    .floating-process-image.left ~ .process-details,
    .floating-process-image.left ~ .treatment-phases {
        margin-left: 45%;
        padding-left: 30px;
    }
    
    .floating-process-image.right ~ .process-lead,
    .floating-process-image.right ~ .treatment-modalities,
    .floating-process-image.right ~ .recovery-timeline {
        margin-right: 45%;
        padding-right: 30px;
    }
}

@media (max-width: 968px) {
    .floating-process-image.left,
    .floating-process-image.right {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .floating-process-image.left ~ .process-lead,
    .floating-process-image.left ~ .process-details,
    .floating-process-image.left ~ .treatment-phases,
    .floating-process-image.right ~ .process-lead,
    .floating-process-image.right ~ .treatment-modalities,
    .floating-process-image.right ~ .recovery-timeline {
        margin: 0;
        padding: 0;
    }
    
    .process-block {
        padding: 40px 30px;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -15px;
        left: 30px;
    }
    
    .process-title {
        font-size: 1.8rem;
        margin: 15px 0 30px;
    }
    
    .treatment-modalities {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .recovery-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .results-expectations {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .acne-scar-process-section {
        padding: 80px 0;
    }
    
    .acne-scar-process-section .section-header {
        margin-bottom: 80px;
        padding: 30px 25px;
        border-radius: 25px;
    }
    
    .acne-scar-process-section .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .acne-scar-process-section .section-header p {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .acne-scar-process-section .section-header p::before,
    .acne-scar-process-section .section-header p::after {
        display: none;
    }
    
    .process-block {
        margin-bottom: 100px;
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .process-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        top: -20px;
        left: 30px;
    }
    
    .process-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin: 25px 0 40px;
        padding-left: 0;
    }
    
    .process-title::before {
        display: none;
    }
    
    .process-title i {
        font-size: 2rem;
    }
    
    .process-lead {
        font-size: 1.1rem;
        padding: 20px 25px;
        border-radius: 15px;
    }
    
    .treatment-phases {
        gap: 20px;
    }
    
    .phase-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
        border-radius: 20px;
    }
    
    .phase-step:hover {
        transform: translateY(-8px);
    }
    
    .phase-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        top: -12px;
        left: 25px;
    }
    
    .process-block {
        padding: 30px 20px;
    }
    
    .modality-card,
    .expectation-milestone,
    .recovery-phase {
        padding: 25px 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .detail-item:hover {
        transform: translateY(-5px);
    }
}
/* End Acne Scar Process Section */

/* ===== TREATMENT BENEFITS SECTION STYLES ===== */
.treatment-benefits {
    padding-top: 160px;
    padding-bottom: 80px;
}

