/* Landing Page New - Clean & Modern Design with Beauty Theme */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* Beauty/Stylist Theme Colors */
    --beauty-gold: #E99F4C;
    --beauty-rose: #FF8FA3;
    --beauty-mint: #4CAF50;
    --beauty-sky: #2196F3;
    --beauty-cream: #EDDCD9;
    --beauty-peach: #FFE5D9;
    --beauty-sage: #DCFFE4;
    --beauty-seafoam: #E8F2FF;
    --beauty-charcoal: #264143;
    --beauty-charcoal-light: rgba(38, 65, 67, 0.8);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #EDDCD9;
    border-bottom: 2px solid #264143;
    box-shadow: 0 2px 0px 0px #E99F4C;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #264143;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #264143;
}

.nav-logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: #EDDCD9;
    border: 1px solid #264143;
    box-shadow: 1px 2px 0px 0px #E99F4C;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #264143;
    font-size: 18px;
}

.nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #264143;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Navbar Auth Cards */
.nav-auth-cards {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-auth-card {
    background: var(--beauty-cream);
    border: 2px solid var(--beauty-charcoal);
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(233, 159, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.nav-auth-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 16px rgba(233, 159, 76, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: var(--beauty-charcoal-light);
}

.nav-login-card {
    background: linear-gradient(135deg, var(--beauty-gold) 0%, var(--beauty-rose) 100%);
    border-color: var(--beauty-gold);
    opacity: 0.8;
}

.nav-login-card:hover {
    opacity: 1;
    background: linear-gradient(135deg, var(--beauty-rose) 0%, var(--beauty-gold) 100%);
}

.nav-register-card {
    background: linear-gradient(135deg, var(--beauty-gold) 0%, var(--beauty-rose) 100%);
    border-color: var(--beauty-gold);
}

.nav-register-card:hover {
    box-shadow:
        0 6px 16px rgba(233, 159, 76, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-auth-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--beauty-charcoal);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-auth-card-link:hover {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

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

/* Responsive adjustments for nav cards */
@media (max-width: 768px) {
    .nav-auth-cards {
        gap: 6px;
    }

    .nav-auth-card-link {
        padding: 6px 8px;
        font-size: 12px;
    }

    .nav-auth-card-link span {
        display: none;
    }

    .nav-auth-card-link i {
        font-size: 14px;
    }
}

.btn, .btn-nav {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 1px solid var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    background:
        radial-gradient(circle at 20% 50%, rgba(237, 220, 217, 0.3), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 159, 76, 0.2), transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 229, 217, 0.2), transparent 50%),
        linear-gradient(135deg, #fef7f5 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 143, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 2px 3px 0px 1px #E99F4C;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-1px);
    box-shadow: 3px 4px 0px 2px #E99F4C;
}

.hero-badge i {
    color: #E99F4C;
}

/* Hero Buttons */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #EDDCD9;
    color: #264143;
    border: 2px solid #264143;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 3px 4px 0px 1px #E99F4C;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 4px 6px 0px 2px #E99F4C;
    border-color: #264143;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #264143 60%, #E99F4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--beauty-gold) 0%, var(--beauty-rose) 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(233, 159, 76, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: gentleGlow 3s ease-in-out infinite;
}

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

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

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 45px rgba(233, 159, 76, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background-position: right center;
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(233, 159, 76, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(233, 159, 76, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-outline-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(237, 220, 217, 0.6) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #E99F4C, #FF8FA3, #4CAF50) 1;
    color: #264143;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 4px 15px rgba(233, 159, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

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

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

.btn-outline-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, rgba(237, 220, 217, 0.9) 0%, rgba(255, 229, 217, 0.8) 100%);
    color: #1a3d42;
    box-shadow:
        0 8px 25px rgba(233, 159, 76, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-image: linear-gradient(135deg, #FF8FA3, #4CAF50, #E99F4C) 1;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(237, 220, 217, 0.95), rgba(255, 229, 217, 0.9));
    border: 1px solid #264143;
    border-radius: 25px;
    font-size: 14px;
    color: #264143;
    font-weight: 500;
    box-shadow:
        0 2px 4px rgba(255, 159, 76, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-badge:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 8px rgba(233, 159, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(237, 220, 217, 1), rgba(255, 229, 217, 0.95));
}

.feature-badge i {
    color: #E99F4C;
    font-size: 12px;
    animation: sparkle 2s ease-in-out infinite;
}

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

/* Stats Section */
.stats {
    padding: 60px 20px;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.stats .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #EDDCD9;
    height: auto;
    width: auto;
    border: 2px solid #264143;
    border-radius: 20px;
    box-shadow: 3px 4px 0px 1px #E99F4C;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:nth-child(2) {
    background-color: #FFE5D9;
    box-shadow: 3px 4px 0px 1px #FF8FA3;
}

.stat-card:nth-child(3) {
    background-color: #DCFFE4;
    box-shadow: 3px 4px 0px 1px #4CAF50;
}

.stat-card:nth-child(4) {
    background-color: #E8F2FF;
    box-shadow: 3px 4px 0px 1px #2196F3;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 4px 6px 0px 2px rgba(233, 159, 76, 0.7);
}

.stat-card:nth-child(2):hover {
    box-shadow: 4px 6px 0px 2px rgba(255, 143, 163, 0.7);
}

.stat-card:nth-child(3):hover {
    box-shadow: 4px 6px 0px 2px rgba(76, 175, 80, 0.7);
}

.stat-card:nth-child(4):hover {
    box-shadow: 4px 6px 0px 2px rgba(33, 150, 243, 0.7);
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: #264143;
    font-size: 24px;
    margin: 0 auto 16px;
    font-weight: normal;
}

.stat-number {
    color: #264143;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.star-rating {
    color: #fbbf24;
    font-size: 12px;
    margin-top: -5px;
}

.stat-label {
    font-weight: 600;
    color: #264143;
    font-size: 1.1rem;
    margin: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main {
    padding: 80px 0;
}

/* Action Section */
.action-section {
    margin-bottom: 80px;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    text-align: center;
}

.action-header-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.action-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.action-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.action-text {
    max-width: 600px;
    margin: 0 auto 32px;
}

.action-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #EDDCD9;
    color: #264143;
    border: 2px solid #264143;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 3px 4px 0px 1px #E99F4C;
    position: relative;
    z-index: 1;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 4px 6px 0px 2px #E99F4C;
    border-color: #264143;
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Features Section */
.features {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonials .section-header h2 {
    color: #264143;
}

.contact-cta .contact-cta-content h3 {
    color: white;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.testimonials .section-header p {
    color: #264143;
}

/* Step Numbers - Cara Kerja Super Mudah */
.step-number {
    width: 50px;
    height: 50px;
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
    box-shadow: 2px 3px 0px 1px #E99F4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Contact Icons - Hubungi Kami Anytime */
.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #EDDCD9;
    border: 1px solid #264143;
    box-shadow: 2px 3px 0px 1px #E99F4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #264143;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 3px 4px 0px 2px #E99F4C;
}

/* Add hover effect for step numbers too */
.step-number {
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.05);
    box-shadow: 3px 4px 0px 2px #E99F4C;
}


/* Section Headers with Different Colors */
/* Cara Kerja Super Mudah! - How it Works Section */
.how-it-works-header h2 {
    color: var(--beauty-mint);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.how-it-works-header p {
    color: var(--beauty-charcoal);
    opacity: 0.85;
    background: linear-gradient(135deg, var(--beauty-sage) 0%, transparent 100%);
    border-radius: 12px;
    padding: 4px 8px;
    display: inline-block;
    margin: 0 auto;
    font-weight: 500;
}

/* Hubungi Kami Anytime! - Contact Us Section */
.contact-section-header h2 {
    color: var(--beauty-rose);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 143, 163, 0.3);
}

.contact-section-header p {
    color: var(--beauty-charcoal);
    opacity: 0.85;
    background: linear-gradient(135deg, var(--beauty-peach) 0%, transparent 100%);
    border-radius: 12px;
    padding: 4px 8px;
    display: inline-block;
    margin: 0 auto;
    font-weight: 500;
}

.contact-cta-content h3 {
    color: #264143;
    font-weight: 700;
}

.contact-cta .contact-cta-content p {
    color: #264143;
    opacity: 0.9;
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(38, 65, 67, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E99F4C, #FF8FA3, #4CAF50, #2196F3);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        0 0 20px rgba(233, 159, 76, 0.1);
    border-color: rgba(38, 65, 67, 0.2);
    background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
}

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

.feature-card:nth-child(1) .feature-icon {
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
}

.feature-card:nth-child(2) .feature-icon {
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
}

.feature-card:nth-child(3) .feature-icon {
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
}

.feature-card:nth-child(4) .feature-icon {
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
}

.feature-card:nth-child(5) .feature-icon {
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
}

.feature-card:nth-child(6) .feature-icon {
    background-color: #EDDCD9;
    color: #264143;
    border: 1px solid #264143;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    box-shadow:
        0 4px 12px rgba(255, 159, 76, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(237, 220, 217, 0.9), rgba(255, 229, 217, 0.8));
    border: 1px solid rgba(38, 65, 67, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #E99F4C, #FF8FA3, #4CAF50, #2196F3);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon:hover::before {
    opacity: 1;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 8px 20px rgba(255, 159, 76, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(237, 220, 217, 1), rgba(255, 229, 217, 0.9));
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    margin-bottom: 80px;
}

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

.step {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--beauty-cream) 0%, var(--beauty-peach) 50%, rgba(255, 240, 245, 0.8) 100%);
    padding: 80px 0;
    color: var(--beauty-charcoal);
    position: relative;
    border-top: 3px solid var(--beauty-charcoal);
    border-bottom: 3px solid var(--beauty-charcoal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 143, 163, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials::before {
    display: none;
}

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

.testimonial-card {
    background: #FFE5D9;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #264143;
    box-shadow: 3px 4px 0px 1px #FF8FA3;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 4px 6px 0px 2px #FF8FA3;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact */
.contact {
    margin-bottom: 80px;
}

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

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.contact-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.contact-action {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.contact-link {
    color: #264143;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #EDDCD9;
    border: 1px solid #264143;
    box-shadow: 2px 2px 0px 0px rgba(255, 159, 76, 0.4);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #E99F4C;
    color: #264143;
    transform: translateY(-1px);
    box-shadow: 3px 3px 0px 1px rgba(255, 159, 76, 0.6);
}

.contact-link i {
    font-size: 12px;
}

/* Contact CTA */
.contact-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--beauty-cream) 0%, var(--beauty-peach) 100%);
    border: 3px solid var(--beauty-charcoal);
    box-shadow:
        0 8px 30px rgba(233, 159, 76, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 143, 163, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(10deg); }
}

.contact-cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-actions .btn-primary-large {
    box-shadow: 3px 4px 0px 1px #E99F4C;
}

.contact-cta-actions .btn-primary-large:hover {
    box-shadow: 4px 6px 0px 2px #E99F4C;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--primary-color);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-live-chat {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #FFE5D9;
    color: #264143;
    border: 2px solid #264143;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 3px 4px 0px 1px rgba(255, 143, 163, 0.8);
    transition: all 0.3s ease;
}

.contact-live-chat:hover {
    background: rgba(255, 143, 163, 0.8);
    color: #264143;
    border-color: #264143;
    box-shadow: 4px 6px 0px 2px rgba(255, 143, 163, 0.9);
    transform: translateY(-2px);
}



/* Responsive Design - Full Responsiveness */

/* Large devices (laptops/desktops, 1199px and up) */
@media (min-width: 1200px) {
    .hero-container {
        max-width: 1000px;
    }

    .action-card {
        padding: 56px;
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* Large devices (laptops/desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-container {
        max-width: 900px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-container {
        padding: 0 20px;
        height: 65px;
    }

    .nav-title {
        font-size: 18px;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-container {
        max-width: 700px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .btn-hero, .btn-outline-secondary {
        padding: 16px 28px;
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .stats .container {
        max-width: 700px;
    }

    .action-card {
        padding: 40px 32px;
    }

    .action-header h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cta {
        padding: 40px 32px;
        margin-top: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-title {
        font-size: 16px;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero {
        padding: 100px 20px 70px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-hero, .btn-outline-secondary {
        padding: 16px 24px;
        font-size: 15px;
        justify-content: center;
    }

    .hero-features {
        gap: 10px;
        margin-top: 20px;
    }

    .feature-badge {
        padding: 6px 10px;
        font-size: 13px;
    }

    .stats {
        padding: 50px 20px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .action-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .contact-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .contact-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 15px;
    }
}

/* Small devices (portrait phones, 576px and down) */
@media (max-width: 575px) {
    .nav-container {
        padding: 0 10px;
        height: 55px;
    }

    .nav-brand {
        gap: 8px;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
    }

    .nav-logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .nav-title {
        font-size: 14px;
        font-weight: 600;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-auth-cards {
        gap: 4px;
    }

    .nav-auth-card-link {
        padding: 6px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .hero {
        padding: 80px 15px 50px;
        text-align: center;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn-hero, .btn-outline-secondary {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        gap: 8px;
        margin-top: 16px;
        flex-direction: column;
        align-items: center;
    }

    .feature-badge {
        padding: 4px 8px;
        font-size: 12px;
        margin-bottom: 4px;
    }

    .stats {
        padding: 30px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .how-it-works, .testimonials {
        padding: 40px 15px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .testimonial-author {
        flex-direction: row;
        gap: 12px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-info h4 {
        font-size: 14px;
    }

    .testimonial-info span {
        font-size: 12px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .step {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .step-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 14px;
    }

    .contact {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .contact-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
        font-size: 18px;
    }

    .contact-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .contact-card p, .contact-link {
        font-size: 14px;
    }

    .contact-cta {
        padding: 24px 20px;
        margin-top: 30px;
        border-radius: 20px;
    }

    .contact-cta-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contact-cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-large, .contact-live-chat {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }

    .footer {
        padding: 32px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-section li {
        margin-bottom: 0;
    }

    .footer-section a {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .copyright {
        order: 2;
        font-size: 13px;
    }

    .social-links {
        order: 1;
        gap: 8px;
    }

    /* Container padding for mobile */
    .container {
        padding: 0 15px;
    }

    /* Action cards for mobile */
    .action-card {
        padding: 24px 16px;
        margin: 0 15px;
    }

    .action-header h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .action-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    /* Ensure no horizontal scroll */
    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

    img, video {
        max-width: 100%;
        height: auto;
    }
}

/* Popup Animation */
.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.popup-message {
    color: var(--text-secondary);
    font-size: 14px;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

/* Animations */
.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.sparkle {
    display: inline-block;
    animation: spin 2s linear infinite;
}

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

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

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.feature-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card.fadeInUp.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card.slideInUp.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

.feature-card.zoomIn.animate-in {
    animation: zoomIn 0.6s ease-out forwards;
}

.stat-card.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-card.animate-in {
    animation: slideInUp 0.7s ease-out forwards;
}

/* Initial state for animated elements */
.feature-card,
.stat-card,
.contact-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}</content>
</xai:function_call∋</𝐲<mathrm/>AMUzxHnXkXjyCOMx6u།<|.*/