/* Pink Brand Aesthetic Treatment Pages Styling with Animations */

/* Enhanced Pink Brand Color Variables */
:root {
    --brand-primary: #E91E63;
    --brand-secondary: #F8BBD9;
    --brand-accent: #AD1457;
    --brand-light: #FCE4EC;
    --brand-gradient: linear-gradient(135deg, #E91E63 0%, #F48FB1 50%, #F8BBD9 100%);
    --brand-gradient-alt: linear-gradient(45deg, #AD1457 0%, #E91E63 50%, #F06292 100%);
    --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%);
    --brand-glow: 0 0 30px rgba(233, 30, 99, 0.4);
    --brand-glow-strong: 0 0 50px rgba(233, 30, 99, 0.6);
    --glass-bg: rgba(248, 187, 217, 0.15);
    --glass-border: rgba(248, 187, 217, 0.3);
    --text-dark: #2c3e50;
    --text-light: #666;
    --shadow-light: 0 8px 25px rgba(233, 30, 99, 0.15);
    --shadow-medium: 0 15px 35px rgba(233, 30, 99, 0.2);
    --shadow-strong: 0 20px 40px rgba(233, 30, 99, 0.25);
}

/* Animated Background - Light Version */
.aesthetic-page {
    background: linear-gradient(-45deg, #FFEEF5, #FFF8FC, #F5F5F5, #FAFAFA);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow-x: hidden;
}

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

/* Floating Particles Animation - Light Version */
.aesthetic-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(233, 30, 99, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(248, 187, 217, 0.15), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(233, 30, 99, 0.08), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(173, 20, 87, 0.12), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: breadcrumbSlideIn 0.8s ease-out;
}

@keyframes breadcrumbSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    animation: breadcrumbArrowPulse 2s ease-in-out infinite;
}

@keyframes breadcrumbArrowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
    background: rgba(233, 30, 99, 0.3);
    padding: 5px 15px;
    border-radius: 15px;
    border: 1px solid rgba(233, 30, 99, 0.5);
}

/* Enhanced Hero Section */
.aesthetic-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.aesthetic-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient);
    opacity: 0.05;
    z-index: -1;
}

/* Hero Text Color Override */
.aesthetic-hero .hero-text h1,
.aesthetic-hero .hero-title {
    color: #2c3e50 !important;
    text-shadow: none !important;
}

.aesthetic-hero .hero-description {
    color: #555 !important;
}

.aesthetic-hero .breadcrumb-item a {
    color: #666 !important;
}

.aesthetic-hero .breadcrumb-item.active {
    color: #2c3e50 !important;
    background: rgba(233, 30, 99, 0.1);
}

.aesthetic-hero .highlight {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50 !important;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.aesthetic-hero .highlight i {
    color: var(--brand-primary) !important;
}

/* Updated Color Scheme for Hero Elements */
.hero-title {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.6)); }
}

.gradient-text {
    color: #C2185B !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #C2185B !important;
    background-clip: initial !important;
}

/* Hero Stats Bubbles (floating around entire hero section) */
.aesthetic-hero .hero-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

/* Hero Stats in text area */
.hero-text .hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.hero-stats .stat {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: statFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-stats .stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    animation: statRotate 3s linear infinite;
}

.hero-stats .stat:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--brand-glow-strong);
    border-color: var(--brand-primary);
}

.hero-stats .stat:nth-child(1) { animation-delay: 0s; }
.hero-stats .stat:nth-child(2) { animation-delay: 1s; }
.hero-stats .stat:nth-child(3) { animation-delay: 2s; }

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

@keyframes statRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stat bubbles floating naturally across hero section */
.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(233, 30, 99, 0.2);
    padding: 18px 25px;
    border-radius: 60px;
    text-align: center;
    color: #2c3e50;
    box-shadow: 
        0 8px 32px rgba(233, 30, 99, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1);
    animation: naturalFloat 4s ease-in-out infinite;
    min-width: 120px;
    transform-origin: center center;
    z-index: 5;
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 48px rgba(233, 30, 99, 0.25),
        0 6px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 30, 99, 0.4);
}

/* Different floating patterns for natural movement */
.stat-bubble:nth-child(1) { 
    animation-delay: 0s; 
    animation-duration: 4s;
}
.stat-bubble:nth-child(2) { 
    animation-delay: 1.2s; 
    animation-duration: 3.5s;
}
.stat-bubble:nth-child(3) { 
    animation-delay: 2.1s; 
    animation-duration: 4.5s;
}
.stat-bubble:nth-child(4) { 
    animation-delay: 0.8s; 
    animation-duration: 3.8s;
}
.stat-bubble:nth-child(5) { 
    animation-delay: 1.8s; 
    animation-duration: 4.2s;
}
.stat-bubble:nth-child(6) { 
    animation-delay: 0.3s; 
    animation-duration: 3.9s;
}

/* Natural floating animation */
@keyframes naturalFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) translateX(5px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-8px) translateX(-3px) rotate(-0.5deg); 
    }
    75% { 
        transform: translateY(-20px) translateX(8px) rotate(1.5deg); 
    }
}

.stat-bubble .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 5px;
}

.stat-bubble .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
    font-weight: 600;
}

/* Regular stats in hero text */
.hero-text .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 1;
}

.hero-text .stat-label {
    color: var(--brand-accent);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Enhanced Glowing Buttons */
.glow-btn {
    background: var(--brand-gradient);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--brand-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

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

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--brand-glow-strong);
    filter: brightness(1.1);
}

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

.glow-btn.secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

/* Hero Image Enhancement */
.hero-image {
    position: relative;
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-img {
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient);
    opacity: 0.1;
    border-radius: 30px;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 0px;
    background: var(--brand-gradient);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--brand-glow);
    animation: badgeBounce 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

/* Section Headers with Animation */
.section-header h2 {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.section-header p {
    color: var(--brand-accent);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Overview Cards with Pink Theme */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.6s ease-out;
}

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

.overview-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.overview-card:hover::before {
    opacity: 0.7;
}

.overview-card:nth-child(1) { animation-delay: 0.1s; }
.overview-card:nth-child(2) { animation-delay: 0.2s; }
.overview-card:nth-child(3) { animation-delay: 0.3s; }
.overview-card:nth-child(4) { animation-delay: 0.4s; }

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

.card-icon {
    background: var(--brand-gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--brand-glow);
    transition: all 0.3s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--brand-glow); }
    50% { transform: scale(1.05); box-shadow: var(--brand-glow-strong); }
}

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

.overview-card h3 {
    color: var(--brand-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: processStepAppear 0.8s ease-out;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }

@keyframes processStepAppear {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--brand-gradient);
    border-radius: 25px 25px 0 0;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--brand-primary);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--brand-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--brand-glow);
    animation: numberBounce 2s ease-in-out infinite;
}

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

.step-icon {
    font-size: 3.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: iconWiggle 4s ease-in-out infinite;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.process-step h3 {
    color: var(--brand-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: benefitSlideIn 0.6s ease-out;
}

.benefit-card:nth-child(odd) {
    animation-name: benefitSlideInLeft;
    animation-delay: 0.1s;
}

.benefit-card:nth-child(even) {
    animation-name: benefitSlideInRight;
    animation-delay: 0.3s;
}

@keyframes benefitSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes benefitSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-strong);
}

.benefit-icon {
    background: var(--brand-gradient);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--brand-glow);
    transition: all 0.3s ease;
    animation: benefitIconSpin 8s linear infinite;
}

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

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    animation: benefitIconSpinReverse 8s linear infinite;
}

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

.benefit-card h3 {
    color: var(--brand-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Wellness Cards Enhancement */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wellness-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 35px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: wellnessCardAppear 0.8s ease-out;
}

.wellness-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--brand-secondary);
}

.wellness-icon {
    background: var(--brand-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--brand-glow);
    animation: wellnessIconBreathe 3s ease-in-out infinite;
}

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

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

.wellness-card h3 {
    color: var(--brand-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.wellness-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.wellness-content ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    animation: listItemSparkle 2s ease-in-out infinite;
}

@keyframes listItemSparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Consultation Section Enhancement */
.consultation-section {
    background: var(--brand-gradient);
    position: relative;
    overflow: hidden;
}

.consultation-section::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"><defs><pattern id="consultation-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23consultation-pattern)"/></svg>');
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

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

.consultation-text {
    color: white;
}

.consultation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
    animation: benefitPointSlide 0.6s ease-out;
}

.benefit-point:nth-child(1) { animation-delay: 0.1s; }
.benefit-point:nth-child(2) { animation-delay: 0.2s; }
.benefit-point:nth-child(3) { animation-delay: 0.3s; }

@keyframes benefitPointSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-point i {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 8px;
    color: white;
    font-size: 1.1rem;
}

/* Contact Form Enhancement */
.consultation-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: formSlideIn 0.8s ease-out;
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid var(--brand-light);
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
    background: white;
    outline: none;
}

.submit-btn {
    background: var(--brand-gradient);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    box-shadow: var(--brand-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--brand-glow-strong);
}

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

/* Contact Methods Enhancement */
.contact-methods {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: contactMethodFadeIn 0.6s ease-out;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }

@keyframes contactMethodFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-info {
    color: white;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.contact-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Complete Skin Wellness Section - Same background as HydraFacial Journey */
.wellness-advice {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 100px 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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-grid,
    .process-grid,
    .benefits-grid,
    .wellness-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .glow-btn {
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
    .overview-card,
    .process-step,
    .benefit-card,
    .wellness-card {
        opacity: 0;
        animation-fill-mode: both;
    }
    
    .overview-card.animate-in { animation-name: cardSlideUp; }
    .process-step.animate-in { animation-name: processStepAppear; }
    .benefit-card.animate-in { animation-name: benefitSlideInLeft; }
    .wellness-card.animate-in { animation-name: wellnessCardAppear; }
}