.inner-page .headings{
    background-image: url(../images/bg/kitchen-pro-dallas-faqs.webp) !important;
}

/* --- Fan Animation FAQ Styles --- */
.fan-faq-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.gold-subtitle {
    color: #ccaa54;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
}

.fan-container {
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    perspective: 1000px; /* Necesario para el efecto 3D */
}

.fan-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    
    /* Efecto Abanico Inicial */
    opacity: 0;
    transform: rotateX(20deg) rotateY(-10deg) translateZ(-50px);
    animation: fanIn 0.8s forwards;
}

/* Retraso de animación para cada pregunta */
.fan-card:nth-child(1) { animation-delay: 0.1s; }
.fan-card:nth-child(2) { animation-delay: 0.2s; }
.fan-card:nth-child(3) { animation-delay: 0.3s; }
.fan-card:nth-child(4) { animation-delay: 0.4s; }

.fan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-number {
    font-size: 24px;
    font-weight: 800;
    color: #ccaa54;
    margin-right: 20px;
}

.fan-header h3 {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.fan-header i {
    transition: transform 0.4s;
    color: #ccaa54;
}

/* Contenido oculto */
.fan-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding-left: 55px;
}

.fan-content p {
    padding: 15px 0 10px;
    color: #666;
    line-height: 1.7;
}

/* --- ESTADO ACTIVO --- */
.fan-card.active {
    background: #ccaa54;
    transform: scale(1.05) rotate(0deg) !important;
    border-color: #ccaa54;
    z-index: 10;
}

.fan-card.active .fan-header h3, 
.fan-card.active .card-number, 
.fan-card.active .fan-header i,
.fan-card.active .fan-content p {
    color: #fff;
}

.fan-card.active .fan-content {
    max-height: 200px;
}

.fan-card.active .fan-header i {
    transform: rotate(180deg);
}

/* Keyframes para la entrada tipo abanico */
@keyframes fanIn {
    to {
        opacity: 1;
        transform: rotateX(0) rotateY(0) translateZ(0);
    }
}

/* Hover suave */
.fan-card:hover:not(.active) {
    border-color: #ccaa54;
    transform: translateX(15px);
}
---/* OUR 4-STEP PROCESSo */--- 
/* --- Ultra-Dynamic Timeline Styles --- */
.dynamic-process { background: #fff; overflow: hidden; }

.badge-gold {
    background: rgba(204, 170, 84, 0.1);
    color: #ccaa54;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.glow-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ccaa54, transparent);
    margin-top: 15px;
    box-shadow: 0 0 15px rgba(204, 170, 84, 0.5);
}

.interactive-timeline {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

/* Tarjeta con efecto Flip */
.step-card {
    width: 220px;
    height: 220px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

.step-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.step-card:hover .step-inner {
    transform: rotateY(180deg) scale(1.1);
}

.step-front, .step-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #eee;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-front { background: #fff; color: #333; }

.step-back {
    background: #ccaa54;
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
    border-color: #ccaa54;
}

.step-number {
    font-size: 45px;
    font-weight: 900;
    color: #ccaa54;
    opacity: 0.3;
}

.week-tag {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Conectores Dinámicos */
.connector {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 60px;
    height: 2px;
    background: #eee;
    z-index: -1;
}

/* --- Luxury Contact Button Design --- */
.btn-luxury-shiny {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ccaa54 0%, #e5c77b 50%, #ccaa54 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 5px; /* Bordes ligeramente rectos para look arquitectónico */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(204, 170, 84, 0.3);
    border: none;
}

/* Efecto de Brillo (Luz que pasa) */
.btn-luxury-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s;
}

/* Animación de la flecha */
.btn-luxury-shiny i {
    transition: transform 0.3s ease;
}

/* Hovers e Interacciones */
.btn-luxury-shiny:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 170, 84, 0.5);
    background: linear-gradient(135deg, #b39343 0%, #ccaa54 100%);
}

.btn-luxury-shiny:hover::before {
    left: 100%;
}

.btn-luxury-shiny:hover i {
    transform: translateX(5px);
}

/* Animación de Pulso Sutil (Para llamar la atención sin molestar) */
@keyframes luxury-pulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 170, 84, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(204, 170, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 170, 84, 0); }
}

.btn-luxury-shiny {
    animation: luxury-pulse 2s infinite;
}

/* Efecto al hacer clic */
.btn-luxury-shiny:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 170, 84, 0.4);
}


/* Animación de entrada de las tarjetas */
.step-card {
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes popIn {
    from { opacity: 0; transform: scale(0.5) translateY(50px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 991px) {
    .interactive-timeline { flex-direction: column; gap: 40px; }
    .connector { display: none; }
}

/* Estilo Base Minimalista */
.minimal-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.minimal-header h2 {
    font-weight: 300;
    letter-spacing: -1px;
    text-align: center;
}

.accent-bar {
    width: 40px;
    height: 2px;
    background: #ccaa54;
    margin: 20px auto 40px;
}

/* Acordeón Simple */
.minimal-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.minimal-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 20px 0;
    font-weight: 500;
    color: #333;
}

.minimal-accordion .accordion-button:not(.collapsed) {
    color: #ccaa54;
}

.minimal-section {
    background-color: #ffffff;
    padding: 100px 0;
}

/* Alineación de la barra dorada */
.accent-bar {
    width: 50px;
    height: 3px;
    background: #ccaa54;
    margin-top: 15px;
}

/* INTERACTIVIDAD DE GRUPO: Al pasar el mouse por el área, las demás se apagan */
.testimonial-grid-interactive:hover .mini-card {
    opacity: 0.5;
    transform: scale(0.98);
    filter: grayscale(100%);
}

/* LA CARTA ACTIVA: Resalta y se centra visualmente */
.testimonial-grid-interactive .mini-card:hover {
    opacity: 1 !important;
    transform: scale(1.05) translateY(-5px);
    filter: grayscale(0%);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #ccaa54;
    z-index: 10;
}

.mini-card {
    display: flex;
    align-items: center;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 20px;
    background: #fafafa;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Animación de entrada */
    opacity: 0;
    animation: fadeInSlide 0.8s forwards;
}

.round-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #eee;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.mini-card:hover .round-img {
    border-color: #ccaa54;
    transform: rotate(-10deg);
}

.card-content {
    text-align: left; /* El texto se lee mejor alineado a la izquierda dentro de la tarjeta */
}

.card-content p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.client-name {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
    color: #ccaa54;
    letter-spacing: 1.5px;
}

/* Animación de entrada escalonada */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Generar retrasos para los 8 testimonios */
.mini-card:nth-child(1) { animation-delay: 0.1s; }
.mini-card:nth-child(2) { animation-delay: 0.2s; }
/* ... (el navegador aplicará el resto de forma natural o puedes agregar más nth-child) */

/* Responsive para móvil */
@media (max-width: 768px) {
    .testimonial-grid-interactive:hover .mini-card { opacity: 1; transform: none; filter: none; }
    .mini-card { flex-direction: column; text-align: center; }
    .card-content { text-align: center; }
    .round-img { margin: 0 0 15px 0; }

    .my-info .address, .my-info .phone{
        margin: 0;
    }
}

/* contact us */

.my-info a{
    color: #000;
}

#contact-bg{
    background-image: url(../images/bg/contact-kitchen-pro-dallas-now.webp) !important;
}

.inner-page .headings h1 {
    color: #ffffff;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 6px 18px rgba(0, 0, 0, 0.25);
}

.head-tr-2 {
    background-color: rgba(0, 0, 0, 0.50);
}