/* ============================================
   ALARM PAGE STYLES - Installation Alarme Montpellier
   ============================================ */

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #d0d0d0 white;
}

/* White Banner Styles */
.alarm-top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Centered */
.banner-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.banner-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Phone Form - Right Side */
.banner-phone-wrapper {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.banner-phone-form {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    border: 2px solid #d0d0d0;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.banner-phone-form:focus-within {
    border-color: #999;
}

.banner-phone-input {
    padding: 0.875rem 1.5rem;
    border: none;
    font-size: 1rem;
    width: 240px;
    outline: none;
    background: transparent;
    color: #666;
}

.banner-phone-input::placeholder {
    color: #999;
}

.banner-phone-submit {
    background: #2d2d2d;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border-radius: 50px;
    margin: -2px;
    white-space: nowrap;
}

.banner-phone-submit:hover {
    background: #1a1a1a;
}

.banner-phone-submit:active {
    background: #000000;
}

.banner-installation-note {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    margin: 0;
    padding-right: 0.5rem;
}

/* Spacer for fixed banner */
.banner-spacer {
    height: 120px;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
    position: relative;
    min-height: 700px;
    margin-top: 0;
    background-image: url('installation-alarme-maison-montpellier.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 4rem 2rem 4rem 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    color: white;
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 0;
}

/* Hero Eyebrow */
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FF3333;
    margin: 0 0 1rem 2.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid #FF3333;
    display: inline-block;
}

/* Hero Main Title */
.hero-main-title {
    width: 100%;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    color: white;
    margin: 0 0 4rem 0;
    padding-left: 2.5rem;
    text-align: left;
    line-height: 1.2;
}

/* Highlighted Number - LED Effect */
.highlight-number {
    color: #FF3333;
    text-shadow:
        0 0 5px rgba(255, 51, 51, 0.4),
        0 0 10px rgba(255, 51, 51, 0.3),
        0 0 15px rgba(255, 51, 51, 0.2);
    font-weight: 900;
}

/* Side Note */
.side-note {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-left: 0.5rem;
}

/* ============================================
   CARD SECTION WITH SPLIT TOP BORDER
   ============================================ */

.split-border-card {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem 1rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 210px;
    width: 210px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

/* Create the border with gap using pseudo-element */
.split-border-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid white;
    border-radius: 12px;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 16px rgba(255, 255, 255, 0.6),
        0 0 24px rgba(255, 255, 255, 0.4),
        0 0 32px rgba(255, 255, 255, 0.2),
        inset 0 0 8px rgba(255, 255, 255, 0.5);
    mask-image:
        linear-gradient(to right,
            transparent 0%,
            transparent calc(50% - 42px),
            black calc(50% - 42px),
            black calc(50% + 42px),
            transparent calc(50% + 42px),
            transparent 100%
        ),
        linear-gradient(white, white);
    mask-size: 100% 2px, 100% 100%;
    mask-position: 0 0, 0 0;
    mask-repeat: no-repeat, no-repeat;
    mask-composite: exclude;
    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            transparent calc(50% - 42px),
            black calc(50% - 42px),
            black calc(50% + 42px),
            transparent calc(50% + 42px),
            transparent 100%
        ),
        linear-gradient(black, black);
    -webkit-mask-size: 100% 2px, 100% 100%;
    -webkit-mask-position: 0 0, 0 0;
    -webkit-mask-repeat: no-repeat, no-repeat;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}

.card-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    color: white;
    z-index: 2;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.card-content-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.card-title {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-button {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #FF3333;
}

.card-button:hover .arrow-icon {
    color: white;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: #FF3333;
    stroke-width: 3;
    transition: color 0.3s ease;
}

/* Hero CTA Button */
.hero-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-basis: 100%;
    margin-top: 1.5rem;
    padding-left: calc((210px * 3 + 1.25rem * 2 - 400px) / 2);
}

.cta-button {
    background: white;
    color: #FF3333;
    border: none;
    border-radius: 50px;
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: static;
    overflow: visible;
    transition: all 0.3s ease;
}

.cta-button::before {
    display: none !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #FF3333;
    color: white;
}

.cta-button:hover .cta-arrow {
    color: white;
}

.cta-arrow {
    width: 24px;
    height: 24px;
    color: #FF3333;
    stroke-width: 3;
    transition: color 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .cta-arrow {
        width: 20px;
        height: 20px;
    }

    .split-border-card {
        padding: 1.25rem 0.875rem 0.875rem 0.875rem;
        width: 192px;
        max-width: 192px;
        height: 136px;
    }

    .card-icon {
        top: -24px;
        width: 48px;
        height: 48px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-button {
        padding: 0.4rem 2.5rem;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   CLIENT TRUST SECTION STYLES
   ============================================ */

.client-trust-section {
    background: #f8f9fa;
    padding: 2rem 2rem 3rem 2rem;
    text-align: center;
    overflow: hidden;
}

.trust-text {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400;
}

.trust-number {
    color: #333;
    font-weight: 700;
    font-size: 1.4rem;
}

.trust-highlight {
    background: #ffcccc;
    color: #333;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 4rem;
    will-change: transform;
    width: fit-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 120px;
}

.logo-item img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Carousel animation now handled by JavaScript for seamless infinite scroll */

/* ============================================
   HOW IT WORKS SECTION STYLES
   ============================================ */

.how-it-works-section {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
}

.how-it-works-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 auto 3rem auto;
    max-width: 800px;
    line-height: 1.6;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
}

.work-card-optional {
    border: 2px dashed #d0d0d0;
    background: #fafafa;
}

.work-card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    object-position: center top;
}

.work-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.optional-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #FF3333;
    background: #ffebeb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

.work-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MID-SECTION CTA (After How It Works)
   ============================================ */

.mid-section-cta {
    background: linear-gradient(135deg, #FF3333 0%, #e62e2e 100%);
    padding: 1.75rem 2rem;
    margin: 4rem auto 0 auto;
    border-radius: 16px;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(255, 51, 51, 0.25);
}

.mid-cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mid-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mid-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
}

.mid-cta-button {
    background: white;
    color: #FF3333;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.mid-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    background: #f8f8f8;
}

.mid-cta-arrow {
    width: 20px;
    height: 20px;
    color: #FF3333;
    stroke-width: 3;
    transition: transform 0.3s ease;
}

.mid-cta-button:hover .mid-cta-arrow {
    transform: translateX(4px);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.stats-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.stats-main-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4rem;
    font-family: 'Roboto', Arial, sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1;
}

.stat-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    font-family: 'Roboto', Arial, sans-serif;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 5rem 2rem;
    background: white;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 150px;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.faq-cta-link {
    display: inline-block;
    color: #2d2d2d;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.faq-cta-link:hover {
    color: #FF3333;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2d2d2d;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #666;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mid-section-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0 1rem;
        border-radius: 12px;
    }

    .mid-cta-title {
        font-size: 1.5rem;
    }

    .mid-cta-subtitle {
        font-size: 1rem;
    }

    .mid-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Statistics Section Mobile */
    .stats-section {
        padding: 3rem 1.5rem;
    }

    .stats-main-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-description {
        font-size: 1rem;
    }
}

/* ============================================
   KIT COMPONENTS SECTION STYLES
   ============================================ */

.kit-components-section {
    background: #f8f9fa;
    padding: 2.5rem 2rem 4rem 2rem;
    text-align: center;
}

.kit-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.kit-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 auto 5rem auto;
    max-width: 900px;
    line-height: 1.6;
}

.kit-image-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 4rem;
}

.kit-main-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
}

/* Component Labels */
.kit-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kit-label-right {
    flex-direction: row-reverse;
}

.kit-label-down {
    flex-direction: column;
}

.kit-label-down .label-line {
    width: 2px;
    height: 25px;
}

.kit-label-keypad {
    position: absolute;
}

.keypad-line-vertical {
    position: absolute;
    width: 2px;
    height: 30px;
    background: #FF3333;
    left: 5px;
    top: -38px;
}

.keypad-line-horizontal {
    position: absolute;
    width: 40px;
    height: 2px;
    background: #FF3333;
    left: 5px;
    top: -18px;
}

.keypad-text {
    position: absolute;
    left: 45px;
    top: -33px;
}

.label-dot {
    width: 12px;
    height: 12px;
    background: #FF3333;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 51, 51, 0.2);
    flex-shrink: 0;
}

.label-line {
    width: 40px;
    height: 2px;
    background: #FF3333;
    flex-shrink: 0;
}

.label-text {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    max-width: 200px;
}

.label-text h4 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
}

.label-text p {
    font-size: 0.65rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

.testimonials-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.google-reviews-badge {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.google-reviews-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.google-reviews-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.google-reviews-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.google-stars {
    color: #FBBC05;
    font-size: 1.5rem;
    line-height: 1;
}

.google-reviews-count {
    font-size: 0.85rem;
    color: #666;
}

.google-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.reviews-verified-note {
    text-align: center;
    margin: 0 auto 2.5rem auto;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* ============================================
   CTA SECTION AFTER KIT
   ============================================ */

.cta-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.cta-banner {
    background: linear-gradient(135deg, #E57373 0%, #EF5350 100%);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(239, 83, 80, 0.3);
}

.cta-banner-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.cta-banner-button {
    background: white;
    color: #EF5350;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cta-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-step-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #333;
}

.cta-step-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    background-image: url('images/Installateur-alarme-maison.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    position: relative;
}

.process-overlay {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-title {
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 51, 51, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.3);
}

.process-step-title {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Carousel Container */
.testimonials-carousel {
    overflow: hidden;
    width: 100%;
}

/* Track that holds all cards */
.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85rem;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
}

.carousel-nav:hover {
    background: #2d2d2d;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: white;
    color: #333;
    transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #FF3333;
    width: 24px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: #bbb;
}

/* ============================================
   STICKY CTA BAR STYLES (Desktop Only)
   ============================================ */

.sticky-cta-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: #2d2d2d;
    padding: 0.75rem 2rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transition: transform 0.4s ease;
    max-width: fit-content;
}

.sticky-cta-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.sticky-cta-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.sticky-cta-button {
    background: #FF3333;
    color: white;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: #e62e2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide sticky CTA on mobile */
    .sticky-cta-bar {
        display: none;
    }

    .banner-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .banner-logo {
        position: static;
        transform: none;
    }

    .banner-logo-img {
        height: 45px;
    }

    .banner-phone-wrapper {
        margin-left: 0;
        width: 100%;
        align-items: center;
    }

    .banner-phone-form {
        width: 100%;
    }

    .banner-phone-input {
        flex: 1;
        width: auto;
    }

    .banner-installation-note {
        text-align: center;
        padding-right: 0;
    }

    .alarm-top-banner {
        padding: 0.75rem 0;
    }

    .banner-spacer {
        height: 100px;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    /* Client Trust Section Mobile */
    .client-trust-section {
        padding: 2rem 1rem;
    }

    .trust-text {
        font-size: 1rem;
    }

    .trust-number {
        font-size: 1.2rem;
    }

    .logo-track {
        gap: 2rem;
    }

    .logo-item {
        min-width: 100px;
        height: 50px;
    }

    .logo-item img {
        max-height: 40px;
        max-width: 100px;
    }

    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .how-it-works-title {
        font-size: 1.8rem;
    }

    .how-it-works-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-card {
        padding: 2rem 1.5rem;
    }

    .work-card-title {
        font-size: 1.1rem;
    }

    .optional-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    /* Kit Components Section Mobile */
    .kit-components-section {
        display: none;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-banner {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .cta-banner-title {
        font-size: 1.2rem;
    }

    .cta-banner-button {
        width: 100%;
        padding: 1rem;
    }

    .cta-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .google-reviews-badge {
        flex-direction: column;
        gap: 1rem;
    }

    .google-reviews-content {
        align-items: center;
        text-align: center;
    }

    .google-rating-number {
        font-size: 2rem;
    }

    .google-stars {
        font-size: 1.25rem;
    }

    .google-logo {
        width: 80px;
    }

    /* Mobile: Scrollable container like Instagram */
    .testimonials-carousel-wrapper {
        padding: 0;
    }

    .testimonials-carousel {
        max-height: 500px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-right: 0.5rem;
    }

    .testimonials-track {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        flex: 0 0 auto;
        width: 100%;
        min-width: auto;
    }

    /* Custom scrollbar for mobile */
    .testimonials-carousel::-webkit-scrollbar {
        width: 6px;
    }

    .testimonials-carousel::-webkit-scrollbar-track {
        background: #e0e0e0;
        border-radius: 3px;
    }

    .testimonials-carousel::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 3px;
    }

    .testimonials-carousel::-webkit-scrollbar-thumb:hover {
        background: #777;
    }

    /* Hide navigation on mobile */
    .carousel-nav {
        display: none;
    }

    .carousel-dots {
        display: none;
    }

    /* Hide process section on mobile */
    .process-section {
        display: none;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left {
        position: static;
    }

    .faq-main-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* ============================================
   COMPARISON SECTION (inside kit-components-section)
   ============================================ */

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 7rem;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* DIY Alarm Header */
.diy-alarm-header {
    position: absolute;
    right: -20px;
    top: -50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
    color: #333;
    z-index: 1;
}

/* Vertical Red Pill */
.vertical-red-pill {
    position: absolute;
    left: 700px;
    top: -80px;
    bottom: -60px;
    width: 130px;
    background: transparent;
    border: 2.5px solid #E63946;
    border-radius: 100px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0px;
}

.vertical-pill-logo {
    width: 150px;
    height: auto;
    margin-top: -30px;
}

.checkmarks-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: -2.5rem;
    align-items: center;
}

.checkmark {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.checkmark-single {
    position: absolute;
    left: 77%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #28a745;
    font-size: 2rem;
    font-weight: bold;
    z-index: 3;
}

.redcross-single {
    position: absolute;
    left: 95%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #dc3545;
    font-size: 2rem;
    font-weight: bold;
    z-index: 3;
}

/* Advantages List */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Wrapper for first item with background pill */
.advantage-item-wrapper {
    position: relative;
}

.advantage-item-background {
    position: absolute;
    top: 0;
    left: 60px;
    right: -10px;
    height: 100%;
    background: transparent;
    border: 0.7px solid #000;
    border-radius: 50px;
    z-index: 0;
}

.advantage-item {
    background: #ECECEC;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.advantage-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ============================================
   FOOTER SECTION STYLES
   ============================================ */

.alarm-footer {
    background: white;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 4rem;
}

/* Footer Company Column */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #FF3333;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: #FF3333;
    flex-shrink: 0;
}

/* Footer Hours Column */
.footer-hours {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: 'Roboto', sans-serif;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-day {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.hours-time {
    font-size: 0.9rem;
    color: #666;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alarm-footer .footer-nav .footer-nav-link {
    color: #333 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.alarm-footer .footer-nav .footer-nav-link:hover {
    color: #FF3333 !important;
    padding-left: 0.5rem;
}

/* Footer Map Column */
.footer-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: white;
    border-top: 1px solid #e0e0e0;
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #FF3333;
}

.footer-separator {
    color: #d0d0d0;
    font-size: 0.85rem;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .alarm-footer {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }
}
