/* Custom CSS for Briztone Redesign - Iteration 2 (Cleaned) */

/* Premium Service Card Design */
.briztone-premium-service-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

/* Hover Lift & Shadow Deepening */
.briztone-premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Top Accent Border (revealed on hover) */
.briztone-premium-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--theme-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.briztone-premium-service-card:hover::after {
    transform: scaleX(1);
}

/* Title Styling - Renamed from .box-title */
.briztone-premium-service-card .briztone-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--title-color);
    position: relative;
    padding-bottom: 15px;
}

.briztone-premium-service-card .briztone-card-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #eaeaea;
    transition: width 0.3s ease, background 0.3s ease;
}

.briztone-premium-service-card:hover .briztone-card-title::before {
    width: 60px;
    background: var(--theme-color);
}

.briztone-premium-service-card .briztone-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.briztone-premium-service-card .briztone-card-title a:hover {
    color: var(--theme-color);
}

/* List Styling */
.briztone-premium-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.briztone-premium-service-card ul li {
    margin-bottom: 10px;
}

.briztone-premium-service-card ul li:last-child {
    margin-bottom: 0;
}

.briztone-premium-service-card ul li a {
    display: block;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 6px;
    color: var(--body-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

/* List Item Hover Effect */
.briztone-premium-service-card ul li a:hover {
    background: #fff;
    color: var(--theme-color);
    border-left-color: var(--theme-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding-left: 20px;
    /* Slight nudge */
}

/* Reset/Override for any lingering theme styles if necessary */
.briztone-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}