/* ============================================================
   LOCAL-PAGE.CSS — Styles spécifiques aux 943 pages locales
   ============================================================
   Extrait de template.php (lignes 121-335) pour être servi
   en cache 1 mois au lieu d'être réinjecté dans chaque page.
   ============================================================ */

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #09090b;
}

.gradient-text {
    background-image: linear-gradient(to right, #ca8a04, #facc15, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ----- Scroll Reveals ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ----- Hero rotating text ----- */
.hero-title {
    overflow: visible;
}

#rotating-wrapper {
    display: block;
    max-width: 100%;
    overflow: hidden;
    min-height: calc(1.875rem * 0.82 * 1.15);
}

@media (min-width: 640px) {
    #rotating-wrapper {
        min-height: calc(2.25rem * 0.82 * 1.15);
    }
}

@media (min-width: 768px) {
    #rotating-wrapper {
        min-height: calc(3rem * 0.82 * 1.15);
    }
}

@media (min-width: 1024px) {
    #rotating-wrapper {
        min-height: calc(3.75rem * 0.82 * 1.15);
    }
}

#rotating-target {
    display: block;
    font-size: 0.82em;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

/* ----- Phone badge shimmer ----- */
@keyframes phone-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.phone-shimmer {
    animation: phone-shimmer 2s ease-in-out infinite;
}

@keyframes phone-dot-ping {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.phone-dot-ping {
    animation: phone-dot-ping 1.4s ease-in-out infinite;
}

/* ----- Multi-step form ----- */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-indicator {
    transition: all 0.3s ease;
}

.step-indicator.completed {
    background-color: #facc15;
    color: #09090b;
    border-color: #facc15;
}

.step-indicator.current {
    border-color: #facc15;
    color: #facc15;
}

.step-line {
    transition: background-color 0.3s ease;
}

.step-line.completed {
    background-color: #facc15;
}

.service-chip {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #3f3f46;
}

.service-chip:hover {
    border-color: #facc15;
}

.service-chip.selected {
    border-color: #facc15;
    background-color: rgba(250, 204, 21, 0.1);
}

.service-chip.selected .chip-check {
    display: flex;
}

/* ----- FAQ ----- */
.faq-item {
    border-bottom: 1px solid #f4f4f5;
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #09090b;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ca8a04;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    color: #52525b;
    font-weight: 500;
    line-height: 1.625;
}

.faq-item.open .faq-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-item i {
    transition: transform 0.3s ease;
    color: #a1a1aa;
}

.faq-item.open i {
    transform: rotate(180deg);
}
