.services-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

/* --- Header Styling --- */
.services-top-bar {
    margin-bottom: 50px;
}

.brand-context {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.brand-context .line {
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.brand-context .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.main-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-header-flex h1 { font-size: 2.5rem; color: var(--navy); }
.gold-text { color: var(--gold); }

.search-wrapper {
    position: relative;
    width: 300px;
}

.search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.search-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-bottom: 2px solid rgba(10, 25, 47, 0.14);
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.search-wrapper input:focus {
    border-color: var(--gold);
}

/* --- List Styling (NOT Cards) --- */
.services-list-wrapper {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(10, 25, 47, 0.12);
}

.service-row-item {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.12);
    transition: all 0.4s ease;
    gap: 30px;
    position: relative;
}

/* Row Hover Effect */
.service-row-item:hover {
    padding-left: 20px;
    background: linear-gradient(to right, #fcfcfc, white);
}

.service-row-item:hover .row-number { color: var(--navy); }

.row-number {
    font-size: 1.8rem;
    font-weight: 800;
    color:  var(--gold);
    min-width: 40px;
    transition: 0.3s;
}

.row-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row-content {
    flex: 1;
}

.row-main h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.row-main p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 800px;
}

.row-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 150px;
}

.explore-link {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--navy);
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.explore-link:hover {
    background: var(--navy);
    color: var(--gold);
}

/* Search Empty State */
.search-empty-state {
    text-align: center;
    padding: 80px 0;
    color: var(--text-muted);
}
.search-empty-state i { font-size: 3rem; margin-bottom: 20px; opacity: 0.2; }

/* Responsive */
@media (max-width: 768px) {
    .services-container { margin: 30px auto; padding: 0 4%; }
    .services-top-bar { margin-bottom: 30px; }
    
    .brand-context { margin-bottom: 8px; }
    .brand-context .line { width: 20px; }
    .brand-context .label { font-size: 0.65rem; letter-spacing: 1.5px; }
    
    .main-header-flex { flex-direction: column; align-items: flex-start; gap: 15px; }
    .main-header-flex h1 { font-size: 1.5rem; }
    
    .search-wrapper { width: 100%; }
    .search-wrapper input { padding: 10px 15px 10px 40px; font-size: 0.9rem; }
    
    .service-row-item { 
        flex-direction: column; 
        gap: 15px; 
        padding: 25px 0;
    }
    .row-number { display: none; }
    .row-icon { width: 50px; height: 50px; font-size: 1.3rem; }
    
    .row-main h3 { font-size: 1.2rem; margin-bottom: 8px; }
    .row-main p { font-size: 0.9rem; line-height: 1.6; }
    
    .row-action { justify-content: flex-start; }
    .explore-link { padding: 8px 16px; font-size: 0.75rem; }
    
    .search-empty-state { padding: 50px 0; }
    .search-empty-state i { font-size: 2rem; }
    .search-empty-state p { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .main-header-flex h1 { font-size: 1.3rem; }
    .row-main h3 { font-size: 1.1rem; }
    .row-main p { font-size: 0.85rem; }
    .service-row-item { padding: 20px 0; }
}