/* ==========================================
   Tips Page Styles
   ========================================== */

/* === Tips Hero === */
.tips-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #e0f2f1 100%);
    overflow: hidden;
}

.tips-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(130, 255, 155, 0.2), transparent 70%);
    top: -150px;
    right: 10%;
    animation: float 18s infinite ease-in-out;
}

/* === Routine Section === */
.routine-section {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--white);
}

.routine-steps-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.routine-step {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.routine-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.step-number-new {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(50, 150, 155, 0.3);
}

.step-icon-new {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 30px auto 25px;
}

.routine-step h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-time {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.step-desc {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.step-guide {
    list-style: none;
    padding: 0;
}

.step-guide li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.step-guide li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* === Tips Collection === */
.tips-collection-section {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--light);
}

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

.tip-card-new {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.tip-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tip-icon-new {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(50, 150, 155, 0.3);
}

.tip-card-new h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.tip-card-new p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* === Do's & Don'ts === */
.dos-donts-section {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--white);
}

.dos-donts-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.dos-box,
.donts-box {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 20px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.dos-box {
    border-color: var(--secondary);
}

.donts-box {
    border-color: #ff6b6b;
}

.dos-box:hover,
.donts-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.box-header i {
    font-size: 3rem;
}

.dos-box .box-header i {
    color: var(--secondary);
}

.donts-box .box-header i {
    color: #ff6b6b;
}

.box-header h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--dark);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.dos-box .checklist i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.donts-box .checklist i {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .routine-steps-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .dos-donts-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .routine-steps-new {
        grid-template-columns: 1fr;
    }
    
    .tips-grid-new {
        grid-template-columns: 1fr;
    }
    
    .routine-step,
    .tip-card-new,
    .dos-box,
    .donts-box {
        padding: 40px 30px;
    }
    
    .step-number-new {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .box-header {
        flex-direction: column;
        text-align: center;
    }
    
    .checklist li {
        font-size: 0.95rem;
    }
}