.inner-page .headings{
    background-image: url(../../images/about/about-kitchen-pro-dallas.webp) !important;
}

/* core values section */

.our-values{
    padding: 80px 0px;
}

/* === VALUES SECTION === */
.values-row {
    margin-top: 40px;
}

/* Card */
.value-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Soft accent gradient on hover */
.value-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212,163,79,0.12),
        rgba(212,163,79,0.02)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Icon circle */
.icon-circle {
    width: 86px;
    height: 86px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A34F, #b88938);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 12px 25px rgba(212,163,79,0.35);
    position: relative;
    z-index: 1;
}

.icon-circle i {
    font-size: 34px;
    color: #fff;
}

/* Icon animation */
.value-item:hover .icon-circle {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 20px 40px rgba(212,163,79,0.5);
}

/* Headings */
.value-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

/* Text */
.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Stagger animation on load (no JS) */
.value-item {
    animation: fadeUp 0.9s ease both;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.25s; }
.value-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .value-item {
        margin-bottom: 30px;
    }
}


/* counter top section */

section.counterup{
    background-image: url(../../images/about/about-kitchen-pro-dallas-experience.webp) !important;
}

.contactus ul li a,
.second-footer p a{
    color: #fff;
    text-decoration: none;
}

.contactus ul li a:hover,
.second-footer p a:hover{
    color: #D4A34F;
}