:root {
    --black: #0a0a0a;
    --black-light: #111;
    --black-lighter: #1a1a1a;
    --ash: #2a2a2a;
    --ash-light: #3a3a3a;
    --text: #e5e5e5;
    --text-muted: #888;
    --white: #fff;
    --green: #4ade80;
    --red: #f87171;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ash);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--ash);
    list-style: none;
    padding: 1rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-menu.active {
    transform: translateY(0);
}

.nav-menu li {
    border-bottom: 1px solid var(--ash);
}

.nav-menu a {
    display: block;
    padding: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        flex-direction: row;
        background: none;
        border: none;
        padding: 0;
    }
    
    .nav-menu li {
        border: none;
    }
}

/* Page Header */
.page-header {
    padding: 6rem 1rem 2rem;
    text-align: center;
    background: var(--black-light);
    border-bottom: 1px solid var(--ash);
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--ash);
    color: var(--text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--white);
}

/* Aftercare Main */
.aftercare-main {
    padding: 2rem 0 4rem;
}

.aftercare-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.care-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.care-section h3:first-child {
    margin-top: 0;
}

.care-section h3 i {
    color: var(--text);
}

.do-list,
.dont-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.do-list li,
.dont-list li {
    padding: 1rem;
    border-bottom: 1px solid var(--ash);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.do-list li i {
    color: var(--green);
}

.dont-list li i {
    color: var(--red);
}

/* Timeline Section */
.timeline-section img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.timeline {
    background: var(--black-light);
    border: 1px solid var(--ash);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline h4 {
    font-family: 'Cinzel', serif;
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ash);
}

.timeline-item:last-child {
    border-bottom: none;
}

.week {
    width: 60px;
    height: 60px;
    background: var(--ash);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.875rem;
    color: var(--white);
    flex-shrink: 0;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info strong {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Warning */
.warning {
    background: var(--black-light);
    border: 1px solid var(--ash);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--red);
}

.warning h4 {
    font-family: 'Cinzel', serif;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning h4 i {
    color: var(--red);
}

.warning > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.warning ul {
    list-style: none;
}

.warning li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning li::before {
    content: '•';
    color: var(--red);
}

@media (min-width: 768px) {
    .aftercare-grid {
        flex-direction: row;
    }
    
    .care-section {
        flex: 1;
    }
    
    .timeline-section {
        flex: 1;
        position: sticky;
        top: 80px;
    }
}

/* ==================== BOTTOM NAVIGATION (MOBILE ONLY) ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: #0b0b0a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    border-top: 1px solid var(--ash);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    flex: 1;
    height: 100%;
    position: relative;
    transition: color 0.3s ease;
}

.bottom-nav .nav-item i {
    font-size: 19px;
    margin-bottom: 5px;
}

.bottom-nav .nav-item::after {
    content: '';
    position: absolute;
    top: 0;
    width: 28px;
    height: 2px;
    background-color: #cca464;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-nav .nav-item.active {
    color: #cca464;
}

.bottom-nav .nav-item.active::after {
    opacity: 1;
}

.bottom-nav .center-button-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    height: 100%;
}

.bottom-nav .center-btn {
    position: absolute;
    top: -20px;
    height: auto;
}

.bottom-nav .icon-circle {
    width: 54px;
    height: 54px;
    background-color: #cca464;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 22px rgba(204, 164, 100, 0.45);
    margin-bottom: 5px;
    transition: transform 0.2s ease;
}

.bottom-nav .center-btn i {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 0;
}

.bottom-nav .center-btn span {
    color: #cca464;
    font-weight: 600;
}

.bottom-nav .center-btn::after {
    display: none;
}

@media (max-width: 1023px) {
    body {
        padding-bottom: 80px;
    }
    .support-widget {
        bottom: 90px !important;
    }
}

@media (min-width: 1024px) {
    .bottom-nav {
        display: none !important;
    }
}
