:root {
/*
    0                   = décalage horizontal (centré)
    12px                = décalage vertical (vers le bas)
    4px                 = rayon de flou (blur)
    -4px                = spread négatif (réduit la taille de l'ombre pour qu'elle soit plus petite que l'élément)
    rgba( 0,0,0,0.1 )  = couleur noire à 10% d'opacité (très léger)
*/
  --box-shadow-bottom: 0 12px 4px -4px rgba( 0,0,0,0.1 );
}
body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.6;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}
.hero {
    background: linear-gradient(rgba(25, 60, 85, 0.8), rgba(25, 60, 85, 0.8)), url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.btn-primary {
    background-color: #c8512f;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #a94326;
    transform: translateY(-2px);
}

.testimonial-card {
    background-color: #f8f9fa;
    border-left: 4px solid #c8512f;
}
.shadow {
    box-shadow: var( --box-shadow-bottom );
}

header#page-header div.language-switcher { float: right;
}
.footer {
    background-color: #193c55;
}
.text-primary {
    color: #c8512f;
}
.bg-primary {
    background-color: #c8512f;
}
.text-secondary {
    color: #193c55;
}
.bg-secondary {
    background-color: #193c55;
}
.text-large {
    font-size: 1.2rem;
}
.nav-link:hover {
    color: #c8512f !important;
}
.text-size-lg {
    font-size: 1.15rem;
}
.text-lg.black { color: #000;
}
.contact-form input, .contact-form textarea {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #c8512f;
    box-shadow: 0 0 0 2px rgba(200, 81, 47, 0.2);
}

.trql-map { width: 100%;
    height: 600px;
    margin: 2em 0;
    box-shadow: var( --box-shadow-bottom );
}

    /* Section d'entrée de commentaires : cachée par défaut */
    .trql.comment-section { display : none; }

        .trql.comment-section h2 { font-size: 200%;
        }

        .trql.comment-section form { /* /background-color: yellow; */
            /*
            <label>Titre <input type="text" name="title" required=""></label>
            <label>Nom <input type="text" name="name" required=""></label>
            <label>E-mail <input type="email" name="email" required=""></label>
            <label>Site web <input type="url" name="website"></label>
            <label>Commentaire <textarea name="comment" required=""></textarea></label>
            <label>
            <input type="checkbox" name="accept_terms" required="">
            <a href="/terms" target="_blank">J'accepte les conditions d'utilisation</a>
            </label><br>
            <input type="hidden" name="token" value="5a6a51ac7de39526a73a736d9b022742">
            <button type="submit">Envoyer</button>
            */
        }

    /* Images pour zones (cities-areas) */
    .hero-image { background-image: linear-gradient( rgba(0,0,0,0), rgba(0,0,0,0.3) ),
                          url(/media/images/cities/waiting-hero.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .hero-image.area-alicante { background-image: linear-gradient( rgba(0,0,0,0), rgba(0,0,0,0.3) ),
                          url(/media/images/cities/alicante-hero.jpg);
        }
        .hero-image.area-albatera { background-image: linear-gradient( rgba(0,0,0,0), rgba(0,0,0,0.3) ),
                          url(/media/images/cities/waiting-hero.jpg);
        }

    /* Popup de notifications */
    .notification {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px 30px;
        border-radius: 8px;
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: opacity 2s ease, visibility 2s ease;
        z-index: 9999;
    }

    .notification.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .notification.err-200 {
        background-color: #4caf50;
    }

    .notification.err-400 {
        background-color: #ff9800;
    }

    .notification.err-500 {
        background-color: #f44336;
    }


    /* Service Cards -- ACtivités */
    .service-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var( --box-shadow-bottom );
        }
            .service-card:hover::before {
                opacity: 0.3;
            }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('/media/vie-pratique-et-accompagnement.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
            transition: opacity 0.3s ease;
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .hero-activity {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .process-step {
            position: relative;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #c8512f, transparent);
            z-index: -1;
        }

        .process-step:last-child::before {
            display: none;
        }

        @media (max-width: 768px) {
            .process-step::before {
                display: none;
            }
        }

        .unique-feature {
            border-left: 4px solid #c8512f;
            transition: all 0.3s ease;
        }

        .unique-feature:hover {
            border-left-width: 8px;
            padding-left: 1.5rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .difficulty-item {
            position: relative;
            padding-left: 2rem;
        }
            .difficulty-item::before {
                content: '\f071';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                left: 0;
                top: 0.25rem;
                color: #c8512f;
            }

        .solution-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f4e9 100%);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .solution-card:hover {
            border-color: #c8512f;
            transform: scale(1.02);
        }

        /* Fait partie des service cards */
        /* Activity #1 */
        #installation-logement.service-card::before { 
            background-image: url('/media/installation-logement.jpg');
        }

        /* Activity #2 */
        #traductions-et-interpretariat.service-card::before { 
            background-image: url('/media/images/traduction-interpretariat.jpg');
        }

        /* Activity #3 */
        #administratif-legal.service-card::before { 
            background-image: url('/media/images/admin-and-legal.jpg');
        }

        /* Activity #4 */
        #sante-protection-sociale-pension.service-card::before { 
            background-image: url('/media/images/health2.jpg');
        }

        /* Activity #5 */
        #retraite-securite.service-card::before { 
            background-image: url('/media/images/retraite-securite-sociale.jpg');
        }

        /* Activity #6 */
        #integration-vie-quotidienne.service-card::before { 
            background-image: url('/media/images/painting.jpg');
        }

        /* Activity #7 */
        #mobilite-transport-voiture-immatriculation-importation-controle-technique.service-card::before { 
            background-image: url('/media/images/yellow-porsche2.jpg');
        }

        /* Activity #8 */
        #vie-numerique-communication-internet-gsm-telephone.service-card::before { 
            background-image: url('/media/images/vie-numerique-communication-internet-gsm-telephone.jpg');
        }

        /* Activity #9 */
        #assurances-sante-securite-habitation-domicile-voiture-responsabilite-civile.service-card::before { 
            background-image: url('/media/images/assurance.jpg');
        }

        /* Activity #10 */
        #fiscalite-finance-notariat-avocat-comptable-expert-fiscal-representation-legale.service-card::before { 
            background-image: url('/media/images/finance-fiscalite-notariat.jpg');
        }

        /* Activity #11 */
        #travail-revenus-business.service-card::before { 
            background-image: url('/media/images/revenues-work-business.jpg');
        }

        /* Activity #12 */
        #bien-etre-equilibre-personnel-decouvrir.service-card::before { 
            background-image: url('/media/images/tourist-info.jpg');
        }

