:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0ad;
    --accent: #d1a58c; /* Premium rose gold/nude tone */
    --accent-hover: #e8bea6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Glassmorphism Classes */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo img {
    height: 25px;
    width: auto;
    display: block;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

.book-btn {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.book-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: calc(var(--nav-height) + 6rem) 5% 6rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(209, 165, 140, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
    top: -10%;
    left: -10%;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.orb-2 {
    top: auto;
    bottom: -20%;
    left: auto;
    right: -10%;
    background: radial-gradient(circle, rgba(160, 160, 173, 0.1) 0%, rgba(10, 10, 12, 0) 70%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-logo {
    display: none;
    margin: 0 auto 2rem;
}

.mobile-logo img {
    height: 35px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.mobile-book-btn {
    display: none;
    margin: 0 auto 2.5rem;
}

.mobile-action-btns {
    display: none;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.outline-btn {
    background: rgba(209, 165, 140, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.outline-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-buttons {
    gap: 8px;
    margin-top: 5px;
}

.map-link {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.wa-link {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.wa-link:hover {
    background: #25D366;
    color: white;
}

.zalo-link {
    background: rgba(0, 104, 255, 0.15);
    color: #4a90e2;
    border-color: rgba(0, 104, 255, 0.3);
}

.zalo-link:hover {
    background: #4a90e2;
    color: white;
}

.ig-link {
    background: rgba(225, 48, 108, 0.15);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.ig-link:hover {
    background: #e1306c;
    color: white;
}

.fb-link {
    background: rgba(24, 119, 242, 0.15);
    color: #4a90e2;
    border-color: rgba(24, 119, 242, 0.3);
}

.fb-link:hover {
    background: #4a90e2;
    color: white;
}

.explore-btn {
    display: inline-block;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.explore-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(209, 165, 140, 0.05);
}

/* Portfolio Grid */
.portfolio-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5% 5rem;
}

/* Masonry Layout */
.masonry-grid {
    column-count: 2;
    column-gap: 15px;
}

@media (min-width: 900px) {
    .masonry-grid { column-count: 3; column-gap: 20px; }
}

@media (min-width: 1300px) {
    .masonry-grid { column-count: 4; }
}

/* Card Styling */
.post-card {
    break-inside: avoid;
    margin-bottom: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.post-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(209, 165, 140, 0.3);
}

.media-container {
    position: relative;
    width: 100%;
    /* Removed min-height and dark background to prevent black blocks on short images */
    overflow: hidden;
}

.media-item {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card:hover .media-item {
    transform: scale(1.03);
}

/* Post Type Badges */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Hover Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0) 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 3;
}

.post-card:hover .card-overlay {
    opacity: 1;
}

.caption-preview {
    color: white;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    color: var(--text-secondary);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2001;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 900px) {
    .lightbox-content {
        flex-direction: row;
        height: 80vh;
    }
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2010;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.lightbox-media-container {
    flex: 1.5;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 40vh;
}

@media (min-width: 900px) {
    .lightbox-media-container {
        border-right: 1px solid var(--border-color);
    }
}

.media-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-content-wrapper img, 
.media-content-wrapper video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2010;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.slider-nav.prev-btn { left: 15px; }
.slider-nav.next-btn { right: 15px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2010;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.lightbox-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--bg-dark);
}

.lightbox-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

.author-info h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.author-info .date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.lightbox-caption {
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-wrap;
    flex-grow: 1;
}

/* Highlight hashtags in caption */
.hashtag {
    color: var(--accent);
}

.lightbox-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.glass-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(209, 165, 140, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    box-shadow: 0 4px 15px rgba(209, 165, 140, 0.1);
}

.glass-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Custom Scrollbar for details */
.lightbox-details::-webkit-scrollbar {
    width: 6px;
}
.lightbox-details::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
.lightbox-details::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.lightbox-details::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .glass-nav {
        display: none !important;
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .mobile-action-btns {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.2rem;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .portfolio-container {
        padding: 0 10px 3rem; /* Reduced horizontal padding */
    }
    
    .masonry-grid {
        column-gap: 8px; /* Tighter gap for mobile */
    }
    
    .post-card {
        margin-bottom: 8px; /* Tighter vertical spacing */
        border-radius: 10px; /* Slightly smaller borders for small cards */
    }

    .lightbox-details {
        padding: 1.5rem 1rem;
    }
}

/* ── Language Switcher & Localization ── */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg-dark);
}

html[lang="vi"] [data-lang="en"] {
    display: none !important;
}

html[lang="en"] [data-lang="vi"] {
    display: none !important;
}

/* ── Booking Modal Styles ── */
.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    z-index: 2001;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#booking-modal.active .booking-modal-content {
    transform: scale(1);
}

.booking-header {
    margin-bottom: 2rem;
}

.booking-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: left;
}

.booking-option-btn .icon {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.booking-option-btn .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-option-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.booking-option-btn strong {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 2px;
}

.site-footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 10, 12, 0.5);
    margin-top: 4rem;
}

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

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.booking-option-btn span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* WhatsApp Theme */
.wa-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateX(5px);
}
.wa-btn:hover .icon { background: rgba(37, 211, 102, 0.2); }
.wa-btn:hover strong { color: #25D366; }

/* Zalo Theme */
.zalo-btn:hover {
    background: rgba(0, 104, 255, 0.1);
    border-color: #4a90e2;
    transform: translateX(5px);
}
.zalo-btn:hover .icon { background: rgba(0, 104, 255, 0.2); }
.zalo-btn:hover strong { color: #4a90e2; }

.booking-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* == pricing.html Styles == */

        /* ── Pricing Page Styles ── */

        .header-nav {
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .back-btn {
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--accent);
        }

        /* Hero */
        .pricing-hero {
            padding: calc(var(--nav-height) + 2rem) 5% 3rem;
            text-align: center;
            position: relative;
        }

        .pricing-hero .subtitle {
            color: var(--accent);
            letter-spacing: 4px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .pricing-hero .title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .pricing-hero .desc {
            max-width: 650px;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* Section Headers */
        .section-header {
            max-width: 1000px;
            margin: 0 auto 2rem;
            padding: 0 5%;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-icon {
            font-size: 1.6rem;
            flex-shrink: 0;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--text-primary);
            letter-spacing: 1px;
        }

        .section-header .section-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--accent), transparent);
        }

        /* Pricing Grid */
        .pricing-grid {
            max-width: 1000px;
            margin: 0 auto 4rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            padding: 0 5%;
        }

        .pricing-grid.two-col {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            max-width: 750px;
        }

        /* Cards */
        .price-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(209, 165, 140, 0.15);
            border-radius: 20px;
            padding: 2.5rem 2rem 2rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .price-card:hover {
            transform: translateY(-5px);
            border-color: rgba(209, 165, 140, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

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

        .price-card.featured {
            background: linear-gradient(145deg, rgba(209, 165, 140, 0.08) 0%, rgba(209, 165, 140, 0.02) 100%);
            border-color: rgba(209, 165, 140, 0.3);
        }

        .popular-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent);
            color: var(--bg-dark);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .tier-name {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .tier-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            flex-grow: 1;
            font-style: italic;
        }

        .price-row {
            margin-bottom: 1.5rem;
        }

        .price-usd {
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--accent);
            font-family: var(--font-heading);
            line-height: 1.2;
        }

        .price-vnd {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .price-card .book-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 0.8rem;
            border-radius: 12px;
            font-size: 0.9rem;
        }

        /* Combo Section */
        .combo-card {
            max-width: 600px;
            margin: 0 auto 4rem;
            padding: 0 5%;
        }

        .combo-inner {
            background: linear-gradient(145deg, rgba(209, 165, 140, 0.1) 0%, rgba(120, 100, 180, 0.05) 100%);
            border: 1px solid rgba(209, 165, 140, 0.3);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .combo-inner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(209, 165, 140, 0.06) 0%, transparent 60%);
            animation: shimmer 6s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10%, 10%); }
        }

        .combo-inner > * {
            position: relative;
            z-index: 1;
        }

        .combo-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .combo-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
        }

        .combo-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .combo-price {
            font-size: 2.8rem;
            font-weight: 600;
            color: var(--accent);
            font-family: var(--font-heading);
        }

        .combo-vnd {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 4px;
            margin-bottom: 1rem;
        }

        .save-badge {
            display: inline-block;
            background: rgba(72, 199, 142, 0.15);
            color: #48c78e;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(72, 199, 142, 0.3);
        }

        .combo-inner .book-btn {
            display: inline-block;
            padding: 0.9rem 3rem;
            font-size: 1rem;
        }

        /* Included & Policy Sections */
        .info-section {
            max-width: 800px;
            margin: 0 auto 4rem;
            padding: 0 5%;
        }

        .info-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .info-box h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--accent);
            text-align: center;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 1.5rem;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            background: rgba(209, 165, 140, 0.12);
            color: var(--accent);
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .info-item strong {
            color: var(--text-primary);
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }

        .info-item p, .info-item span {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Traveler Touch-up */
        .traveler-box {
            background: linear-gradient(145deg, rgba(72, 199, 142, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px dashed rgba(72, 199, 142, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
        }

        .traveler-box h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
        }

        .traveler-box .highlight {
            font-size: 2rem;
            font-weight: 700;
            color: #48c78e;
            font-family: var(--font-heading);
            margin: 1rem 0 0.5rem;
        }

        .traveler-box p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        /* CTA Footer */
        .cta-footer {
            text-align: center;
            padding: 3rem 5% 5rem;
        }

        .cta-footer p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .cta-footer .book-btn {
            padding: 1rem 3rem;
            font-size: 1.05rem;
        }

        .cta-note {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pricing-hero { padding-top: 1.5rem; }
            .pricing-hero .title { font-size: 2rem; }
            .price-card { padding: 2rem 1.5rem 1.5rem; }
            .combo-inner { padding: 2.5rem 1.5rem; }
            .info-box { padding: 2rem 1.5rem; }
            .traveler-box { padding: 2rem 1.5rem; }
            .section-header h2 { font-size: 1.4rem; }
            .pricing-grid { gap: 16px; }
            .pricing-grid.two-col { grid-template-columns: 1fr; }
            .aftercare-links-grid { grid-template-columns: 1fr !important; }
        }
    
/* == brow-aftercare.html Styles == */

        /* ── Brow Aftercare Page Styles ── */

        /* Language Switching */
        [data-lang="en"] { display: none; }
        html[lang="en"] [data-lang="en"] { display: block; }
        html[lang="en"] [data-lang="vi"] { display: none; }
        
        /* Flex/Grid specific overrides */
        html[lang="en"] span[data-lang="en"],
        html[lang="en"] strong[data-lang="en"],
        html[lang="en"] h1[data-lang="en"],
        html[lang="en"] h2[data-lang="en"],
        html[lang="en"] h3[data-lang="en"],
        html[lang="en"] p[data-lang="en"] { 
            display: block; 
        }

        html[lang="en"] .lang-inline[data-lang="en"] {
            display: inline;
        }

        .lang-switcher {
            display: flex;
            gap: 5px;
            background: rgba(255, 255, 255, 0.05);
            padding: 4px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin: 0 auto 1.5rem;
            width: fit-content;
        }

        .lang-btn {
            padding: 6px 14px;
            border-radius: 9px;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            background: transparent;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lang-btn.active {
            background: var(--accent);
            color: var(--bg-dark);
        }

        .header-nav {
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .back-btn {
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--accent);
        }

        /* Hero */
        .aftercare-hero {
            padding: calc(var(--nav-height) + 2rem) 5% 3rem;
            text-align: center;
            position: relative;
        }

        .aftercare-hero .subtitle {
            color: var(--accent);
            letter-spacing: 4px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-family: var(--font-body);
        }

        .aftercare-hero .title {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .aftercare-hero .desc {
            max-width: 650px;
            margin: 0 auto;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
        }

        .highlight-text {
            color: var(--accent);
            font-weight: 600;
        }

        /* Progress Bar */
        .progress-visual {
            max-width: 500px;
            margin: 2rem auto 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .progress-half {
            text-align: center;
        }

        .progress-half.technique {
            flex: 1.5;
        }

        .progress-half.care {
            flex: 1;
        }

        .progress-bar {
            height: 6px;
            border-radius: 3px;
            margin-bottom: 8px;
        }

        .progress-bar.done {
            background: var(--accent);
        }

        .progress-bar.care-bar {
            background: linear-gradient(90deg, #48c78e, #36d1dc);
        }

        .progress-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .progress-label strong {
            color: var(--text-primary);
        }

        .progress-divider {
            color: var(--text-secondary);
            font-size: 1.2rem;
            padding-bottom: 20px;
        }

        /* Steps Container */
        .steps-container {
            max-width: 750px;
            margin: 0 auto;
            padding: 0 5% 3rem;
        }

        /* Step Card */
        .step-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 20px;
            position: relative;
            transition: var(--transition);
        }

        .step-card:hover {
            border-color: rgba(209, 165, 140, 0.3);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .step-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 1rem;
        }

        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
            color: var(--bg-dark);
            background: var(--accent);
        }

        .step-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--text-primary);
            line-height: 1.4;
            padding-top: 8px;
        }

        .step-body {
            padding-left: 60px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .step-body p {
            margin-bottom: 0.8rem;
        }

        .step-body p:last-child {
            margin-bottom: 0;
        }

        /* Sub-items with icons */
        .sub-items {
            margin: 1rem 0 0.5rem;
        }

        .sub-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 1.2rem;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            transition: var(--transition);
        }

        .sub-item:last-child {
            margin-bottom: 0;
        }

        .sub-item:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(209, 165, 140, 0.15);
        }

        .sub-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            font-size: 1.1rem;
            background: rgba(209, 165, 140, 0.1);
        }

        .sub-content {
            flex: 1;
        }

        .sub-content strong {
            color: var(--text-primary);
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }

        .sub-content p {
            margin-bottom: 0 !important;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Warning / Tip boxes */
        .warning-box {
            background: rgba(255, 107, 107, 0.08);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .warning-box .warn-icon {
            flex-shrink: 0;
            font-size: 1rem;
            padding-top: 1px;
        }

        .warning-box span {
            color: #ff6b6b;
        }

        .tip-box {
            background: rgba(72, 199, 142, 0.08);
            border: 1px solid rgba(72, 199, 142, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .tip-box .tip-icon {
            flex-shrink: 0;
            font-size: 1rem;
            padding-top: 1px;
        }

        .tip-box span {
            color: #48c78e;
        }

        .info-box {
            background: rgba(100, 149, 237, 0.08);
            border: 1px solid rgba(100, 149, 237, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .info-box .info-icon {
            flex-shrink: 0;
            font-size: 1rem;
            padding-top: 1px;
        }

        .info-box span {
            color: #6495ed;
        }

        /* Time badge */
        .time-badge {
            display: inline-block;
            background: rgba(209, 165, 140, 0.12);
            color: var(--accent);
            padding: 3px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        /* Phase visual */
        .phase-visual {
            display: flex;
            gap: 8px;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        .phase-tag {
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .phase-tag.healing {
            background: rgba(255, 183, 77, 0.1);
            border: 1px solid rgba(255, 183, 77, 0.25);
            color: #ffb74d;
        }

        .phase-tag.stable {
            background: rgba(72, 199, 142, 0.1);
            border: 1px solid rgba(72, 199, 142, 0.25);
            color: #48c78e;
        }

        .phase-tag.perfect {
            background: rgba(209, 165, 140, 0.1);
            border: 1px solid rgba(209, 165, 140, 0.25);
            color: var(--accent);
        }

        /* Message from Quinn */
        .quinn-message {
            max-width: 750px;
            margin: 0 auto 3rem;
            padding: 0 5%;
        }

        .quinn-inner {
            background: linear-gradient(145deg, rgba(209, 165, 140, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(209, 165, 140, 0.25);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .quinn-inner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(209, 165, 140, 0.04) 0%, transparent 60%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(5%, 5%); }
        }

        .quinn-inner > * {
            position: relative;
            z-index: 1;
        }

        .quinn-avatar {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 1.5rem;
        }

        .quinn-avatar-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--accent);
        }

        .quinn-avatar-name {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .quinn-avatar-role {
            font-size: 0.8rem;
            color: var(--accent);
        }

        .quinn-text {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .quinn-text strong {
            color: var(--text-primary);
        }

        .quinn-inner .book-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
        }

        /* Closing */
        .closing-section {
            text-align: center;
            padding: 1rem 5% 4rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .closing-emoji {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .closing-text {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .closing-highlight {
            font-size: 1.6rem;
            color: var(--accent);
            font-family: var(--font-heading);
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .closing-sub {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .closing-section .book-btn {
            padding: 0.9rem 2.5rem;
            font-size: 1rem;
        }

        /* Nav links */
        .page-links {
            max-width: 750px;
            margin: 0 auto 2rem;
            padding: 0 5%;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .page-link {
            padding: 8px 18px;
            border-radius: 10px;
            font-size: 0.85rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .page-link:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(209, 165, 140, 0.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .aftercare-hero .title { font-size: 1.6rem; }
            .step-card { padding: 1.5rem; }
            .step-body { padding-left: 0; padding-top: 0.5rem; }
            .step-header { gap: 12px; }
            .step-number { width: 38px; height: 38px; font-size: 1rem; border-radius: 12px; }
            .step-title { font-size: 1.1rem; padding-top: 6px; }
            .quinn-inner { padding: 1.5rem; }
            .progress-visual { flex-direction: column; gap: 6px; }
            .progress-divider { display: none; }
            .sub-item { flex-direction: column; gap: 10px; padding: 12px; }
            .phase-visual { flex-direction: column; }
        }
    
/* == lip-aftercare.html Styles == */

        /* ── Aftercare Page Styles ── */

        /* Language Switching */
        [data-lang="en"] { display: none; }
        html[lang="en"] [data-lang="en"] { display: block; }
        html[lang="en"] [data-lang="vi"] { display: none; }
        
        /* Flex/Grid specific overrides */
        html[lang="en"] span[data-lang="en"],
        html[lang="en"] strong[data-lang="en"],
        html[lang="en"] h1[data-lang="en"],
        html[lang="en"] h2[data-lang="en"],
        html[lang="en"] h3[data-lang="en"],
        html[lang="en"] div[data-lang="en"],
        html[lang="en"] p[data-lang="en"],
        html[lang="en"] li[data-lang="en"] { 
            display: block; 
        }

        html[lang="en"] .lang-inline[data-lang="en"] {
            display: inline;
        }

        .lang-switcher {
            display: flex;
            gap: 5px;
            background: rgba(255, 255, 255, 0.05);
            padding: 4px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin: 0 auto 1.5rem;
            width: fit-content;
        }

        .lang-btn {
            padding: 6px 14px;
            border-radius: 9px;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            background: transparent;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lang-btn.active {
            background: var(--accent);
            color: var(--bg-dark);
        }

        .header-nav {
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .back-btn {
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--accent);
        }

        /* Hero */
        .aftercare-hero {
            padding: calc(var(--nav-height) + 2rem) 5% 3rem;
            text-align: center;
            position: relative;
        }

        .aftercare-hero .subtitle {
            color: var(--accent);
            letter-spacing: 4px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-family: var(--font-body);
        }

        .aftercare-hero .title {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .aftercare-hero .desc {
            max-width: 650px;
            margin: 0 auto;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
        }

        .highlight-text {
            color: var(--accent);
            font-weight: 600;
        }

        /* Progress Bar */
        .progress-visual {
            max-width: 500px;
            margin: 2rem auto 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .progress-half {
            flex: 1;
            text-align: center;
        }

        .progress-bar {
            height: 6px;
            border-radius: 3px;
            margin-bottom: 8px;
        }

        .progress-bar.done {
            background: var(--accent);
        }

        .progress-bar.care {
            background: linear-gradient(90deg, #48c78e, #36d1dc);
        }

        .progress-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .progress-label strong {
            color: var(--text-primary);
        }

        .progress-divider {
            color: var(--text-secondary);
            font-size: 1.2rem;
            padding-bottom: 20px;
        }

        /* Steps Container */
        .steps-container {
            max-width: 750px;
            margin: 0 auto;
            padding: 0 5% 3rem;
        }

        /* Step Card */
        .step-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem 2rem 2rem 2rem;
            margin-bottom: 20px;
            position: relative;
            transition: var(--transition);
        }

        .step-card:hover {
            border-color: rgba(209, 165, 140, 0.3);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .step-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 1rem;
        }

        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
            color: var(--bg-dark);
            background: var(--accent);
        }

        .step-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--text-primary);
            line-height: 1.4;
            padding-top: 8px;
        }

        .step-body {
            padding-left: 60px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .step-body p {
            margin-bottom: 0.8rem;
        }

        .step-body p:last-child {
            margin-bottom: 0;
        }

        /* Detail List */
        .detail-list {
            list-style: none;
            margin: 0.8rem 0;
        }

        .detail-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 0.6rem;
            line-height: 1.7;
        }

        .detail-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(209, 165, 140, 0.5);
        }

        /* Timeline indicator */
        .time-badge {
            display: inline-block;
            background: rgba(209, 165, 140, 0.12);
            color: var(--accent);
            padding: 3px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        /* Warning / Caution boxes */
        .warning-box {
            background: rgba(255, 107, 107, 0.08);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .warning-box .warn-icon {
            flex-shrink: 0;
            font-size: 1rem;
            padding-top: 1px;
        }

        .warning-box span {
            color: #ff6b6b;
        }

        .tip-box {
            background: rgba(72, 199, 142, 0.08);
            border: 1px solid rgba(72, 199, 142, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .tip-box .tip-icon {
            flex-shrink: 0;
            font-size: 1rem;
            padding-top: 1px;
        }

        .tip-box span {
            color: #48c78e;
        }

        /* Medicine Box */
        .medicine-box {
            background: rgba(209, 165, 140, 0.06);
            border: 1px solid rgba(209, 165, 140, 0.15);
            border-radius: 12px;
            padding: 14px 18px;
            margin-top: 0.8rem;
            text-align: center;
        }

        .medicine-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .medicine-dose {
            color: var(--accent);
            font-size: 0.9rem;
        }

        /* Timeline Steps */
        .timeline-steps {
            margin: 0.8rem 0;
        }

        .timeline-item {
            display: flex;
            gap: 14px;
            margin-bottom: 1rem;
            align-items: flex-start;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
            margin-top: 7px;
            position: relative;
        }

        .timeline-item:not(:last-child) .timeline-dot::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 12px;
            transform: translateX(-50%);
            width: 2px;
            height: calc(100% + 14px);
            background: rgba(209, 165, 140, 0.2);
        }

        .timeline-content {
            flex: 1;
        }

        .timeline-time {
            display: inline-block;
            background: rgba(209, 165, 140, 0.12);
            color: var(--accent);
            padding: 2px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .timeline-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Don't eat list */
        .avoid-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin: 0.8rem 0;
        }

        .avoid-item {
            background: rgba(255, 107, 107, 0.06);
            border: 1px solid rgba(255, 107, 107, 0.12);
            border-radius: 10px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
        }

        .avoid-item .x-icon {
            color: #ff6b6b;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Bonus Section */
        .bonus-section {
            max-width: 750px;
            margin: 0 auto 3rem;
            padding: 0 5%;
        }

        .bonus-box {
            background: linear-gradient(145deg, rgba(209, 165, 140, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px dashed rgba(209, 165, 140, 0.3);
            border-radius: 20px;
            padding: 2rem 2rem;
        }

        .bonus-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--accent);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .bonus-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 1rem;
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.7;
        }

        .bonus-item:last-child {
            margin-bottom: 0;
        }

        .bonus-icon {
            flex-shrink: 0;
            font-size: 1rem;
            padding-top: 2px;
        }

        /* Closing */
        .closing-section {
            text-align: center;
            padding: 2rem 5% 4rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .closing-emoji {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .closing-text {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .closing-sub {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .closing-section .book-btn {
            padding: 0.9rem 2.5rem;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .aftercare-hero .title { font-size: 1.6rem; }
            .step-card { padding: 1.5rem; }
            .step-body { padding-left: 0; padding-top: 0.5rem; }
            .step-header { gap: 12px; }
            .step-number { width: 38px; height: 38px; font-size: 1rem; border-radius: 12px; }
            .step-title { font-size: 1.1rem; padding-top: 6px; }
            .avoid-list { grid-template-columns: 1fr; }
            .bonus-box { padding: 1.5rem; }
            .progress-visual { flex-direction: column; gap: 6px; }
            .progress-divider { display: none; }
        }

        /* Nav links */
        .page-links {
            max-width: 750px;
            margin: 0 auto 2rem;
            padding: 0 5%;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .page-link {
            padding: 8px 18px;
            border-radius: 10px;
            font-size: 0.85rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .page-link:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(209, 165, 140, 0.05);
        }
    