/* =========================================
   BRIGHT ANGEL - HOUSEMAID SERVICES UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.hm-hero {
    padding: 140px 20px 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-bottom: 4px solid #ef4444; /* Corporate Red */
}

.hm-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hm-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hm-hero-img {
    max-width: 250px;
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hm-btn-red {
    background: #ef4444;
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.hm-btn-red:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

/* --- Section Typography --- */
.hm-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.hm-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

/* --- Cards (Why Choose, Tasks, Options) --- */
.hm-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.hm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.hm-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hm-card:hover i {
    transform: scale(1.15);
}

.hm-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.hm-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Timeline (Who Should Hire) --- */
.hm-timeline-wrapper {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #3b82f6;
    max-width: 800px;
    margin: 0 auto;
}

.hm-timeline-item {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.hm-timeline-item:hover {
    transform: translateX(10px);
    border-color: #3b82f6;
}

.hm-timeline-icon {
    position: absolute;
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px #f8fafc;
}

.hm-timeline-content {
    margin-left: 10px;
}

.hm-timeline-content h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.hm-timeline-content p {
    margin: 0;
    color: #64748b;
}

/* --- How It Works (Horizontal Steps) --- */
.hm-steps-container {
    gap: 20px;
}

.hm-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.hm-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hm-step h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.hm-step p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Connecting Line */
@media (min-width: 768px) {
    .hm-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 55px;
        right: -50%;
        width: 100%;
        height: 3px;
        background: #cbd5e1;
        z-index: 1;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hm-hero { text-align: center; padding: 130px 20px 60px 20px; }
    .hm-hero h1 { font-size: 2.5rem; }
    .hm-timeline-wrapper { padding-left: 20px; }
    .hm-timeline-icon { left: -36px; width: 32px; height: 32px; font-size: 1rem; }
    .hm-timeline-item { flex-direction: column; align-items: flex-start; text-align: left; }
    .hm-timeline-content { margin-left: 0; }
}