/* ===== DEPILATION PAGE CUSTOM STYLES ===== */
:root {
    --primary-rose: #D4A5A5;
    --primary-rose-dark: #B88B8B;
    --accent-gold: #C9A962;
    --accent-gold-light: #E8D5A3;
    --soft-blush: #F9E4E4;
    --soft-lavender: #E8E0F0;
    --soft-mint: #E0F0E8;
    --soft-cream: #FFF8F0;
    --text-dark: #3D3D3D;
    --text-medium: #666666;
    --text-light: #888888;
    --shadow-soft: 0 4px 20px rgba(212, 165, 165, 0.15);
    --shadow-card: 0 8px 32px rgba(212, 165, 165, 0.12);
    --gradient-rose: linear-gradient(135deg, #D4A5A5 0%, #E8C4C4 100%);
    --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E8D5A3 100%);
    --gradient-soft: linear-gradient(135deg, #F9E4E4 0%, #E8E0F0 100%);
}

/* Hero Section */
.dep-hero {
    background: var(--gradient-soft);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dep-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.dep-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.dep-breadcrumbs a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
}

.dep-breadcrumbs a:hover {
    color: var(--primary-rose-dark);
}

.dep-breadcrumbs span {
    color: var(--primary-rose);
}

.dep-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dep-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 760px;
    margin: 0 auto 40px;
}

.dep-hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.dep-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.dep-badge-icon {
    font-size: 1.5rem;
}

.dep-badge-text {
    text-align: left;
}

.dep-badge-text small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.dep-badge-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.dep-btn-primary {
    display: inline-block;
    background: var(--gradient-rose);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
}

.dep-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.5);
    color: #fff;
    text-decoration: none;
}

/* Intro Section */
.dep-intro-section {
    padding: 80px 0;
}

.dep-intro-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-rose);
}

.dep-intro-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dep-intro-card p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.dep-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.dep-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--soft-blush);
    border-radius: 12px;
    transition: transform 0.3s;
}

.dep-benefit-item:hover {
    transform: translateX(5px);
}

.dep-benefit-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

/* Types Section */
.dep-types-section {
    padding: 80px 0;
    background: var(--soft-cream);
}

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

.dep-section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.dep-section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.dep-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.dep-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dep-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.2);
}

.dep-card-header {
    padding: 24px;
    text-align: center;
    color: #fff;
}

.dep-card-header.hot {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dep-card-header.film {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dep-card-header.warm {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
}

.dep-card-header.cold {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dep-card-emoji {
    font-size: 2.3rem;
    margin-bottom: 10px;
    display: block;
}

.dep-card-header h3 {
    font-size: 1.35rem;
    color: #fff;
    margin: 0;
}

.dep-card-body {
    padding: 28px;
}

.dep-card-body p {
    color: var(--text-medium);
    margin-bottom: 20px;
    min-height: 70px;
}

.dep-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.dep-card-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.dep-card-features li:last-child {
    border-bottom: none;
}

.dep-card-note {
    text-align: center;
    padding: 14px;
    background: var(--soft-blush);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.dep-card-note strong {
    color: var(--primary-rose-dark);
    font-size: 1.1rem;
}

/* Infographic Section */
.dep-infographic-section {
    padding: 80px 0;
}

.dep-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dep-info-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

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

.dep-info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.dep-info-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-rose-dark);
    margin-bottom: 5px;
}

.dep-info-label {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.dep-promo-banner {
    background: var(--gradient-gold);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dep-promo-banner::before,
.dep-promo-banner::after {
    content: '✨';
    position: absolute;
    font-size: 5rem;
    opacity: 0.2;
}

.dep-promo-banner::before {
    top: -20px;
    left: 20px;
}

.dep-promo-banner::after {
    bottom: -20px;
    right: 20px;
}

.dep-promo-text {
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* Pricing Section */
.dep-pricing-section {
    padding: 80px 0;
    background: var(--soft-lavender);
}

.dep-pricing-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.dep-pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.dep-pricing-table thead {
    background: var(--gradient-rose);
}

.dep-pricing-table th {
    padding: 18px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.dep-pricing-table th:first-child,
.dep-pricing-table td:first-child {
    text-align: left;
    padding-left: 28px;
}

.dep-pricing-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-medium);
}

.dep-pricing-table tbody tr:hover {
    background: var(--soft-blush);
}

.dep-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.dep-price-value {
    font-weight: 700;
    color: var(--primary-rose-dark);
}

/* Who Needs Section */
.dep-who-needs-section {
    padding: 80px 0;
}

.dep-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.dep-who-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.dep-who-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.dep-who-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dep-who-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-medium);
}

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

.dep-who-list .check {
    color: #4CAF50;
    font-weight: bold;
}

.dep-who-list .cross {
    color: #e57373;
    font-weight: bold;
}

.dep-who-list a {
    color: var(--primary-rose-dark);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-rose);
}

.dep-who-list a:hover {
    color: var(--text-dark);
}

/* Process Section */
.dep-process-section {
    padding: 80px 0;
    background: var(--soft-mint);
}

.dep-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dep-step-card {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-top: 15px;
}

.dep-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient-rose);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.dep-step-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.dep-step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dep-step-card p {
    font-size: 0.92rem;
    color: var(--text-medium);
    margin: 0;
}

/* FAQ Section */
.dep-faq-section {
    padding: 80px 0;
}

.dep-faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.dep-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s;
}

.dep-faq-question:hover {
    background: var(--soft-blush);
}

.dep-faq-question span {
    text-align: left;
    display: block;
    flex: 1;
    padding-right: 15px;
}

.dep-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-rose);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.dep-faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.dep-faq-answer {
    padding: 0 30px 25px;
    color: var(--text-medium);
    line-height: 1.8;
}

.dep-faq-section a {
    text-decoration: underline;
    color: var(--primary-rose-dark);
}

.dep-faq-section a:hover {
    color: var(--primary-rose);
}

/* CTA Section */
.dep-cta-section {
    padding: 80px 0;
    background: var(--gradient-soft);
    text-align: center;
}

.dep-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.dep-cta-section p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.dep-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dep-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-rose-dark);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary-rose);
    transition: all 0.3s ease;
}

.dep-btn-outline:hover {
    background: var(--primary-rose);
    color: #fff;
    text-decoration: none;
}

/* Contact Strip */
.dep-contact-strip {
    background: var(--text-dark);
    padding: 30px 0;
    color: #fff;
}

.dep-contact-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.dep-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dep-contact-item span {
    font-size: 1.05rem;
}

.dep-contact-item a {
    color: #fff;
    text-decoration: none;
}

.dep-contact-item a:hover {
    color: var(--accent-gold-light);
}

/* Skin Info Section */
.dep-skin-info-section {
    padding: 36px 0 72px;
}

.dep-skin-info-card {
    background: #e6dee8;
    border-radius: 34px;
    border-left: 4px solid #c6a34f;
    padding: 54px 54px 50px;
    box-shadow: 0 16px 40px rgba(61, 61, 61, 0.08);
}

.dep-skin-info-card h2 {
    font-size: 3rem;
    margin-bottom: 28px;
    color: #353535;
}

.dep-skin-info-card p {
    font-size: 1.08rem;
    line-height: 1.55;
    color: #66666a;
    margin-bottom: 22px;
    max-width: 1240px;
}

.dep-skin-info-card p strong {
    color: #5f5f62;
    font-weight: 700;
}

.dep-skin-info-btn {
    display: inline-block;
    margin-top: 16px;
    background: #dbb6b8;
    color: #fff;
    text-decoration: none;
    padding: 18px 52px;
    border-radius: 999px;
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(191, 146, 151, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dep-skin-info-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(191, 146, 151, 0.42);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .dep-info-grid,
    .dep-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dep-hero h1 {
        font-size: 2rem;
    }

    .dep-hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .dep-intro-card {
        padding: 32px;
    }

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

    .dep-who-grid {
        grid-template-columns: 1fr;
    }

    .dep-pricing-table {
        overflow-x: auto;
    }
}

@media (max-width: 520px) {
    .dep-service-grid,
    .dep-info-grid,
    .dep-process-steps {
        grid-template-columns: 1fr;
    }

    .dep-btn-primary,
    .dep-btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .dep-skin-info-card {
        padding: 34px 24px 30px;
        border-radius: 22px;
    }

    .dep-skin-info-card h2 {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }

    .dep-skin-info-card p {
        font-size: 1.1rem;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .dep-skin-info-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        font-size: 1.05rem;
        padding: 16px 22px;
    }
}
