html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #e5e4e4; 
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    padding-top: 90px; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: transparent;
    box-shadow: none; 
    transition: background-color 0.4s ease-out, box-shadow 0.4s ease-out;
}

header.scrolled {
    background-color: #e5e4e4e1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin: 0 20px;
}

.main-nav ul li a {
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    color: #ffffff;
    text-shadow: 0 1px 9px rgba(0, 0, 0, 0.7); 
}
header.scrolled .main-nav ul li a {
    color: #3e3e3e; 
    text-shadow: none;
}

.main-nav ul li a:hover {
    color: #007bff;
}
header.scrolled .main-nav ul li a:hover {
    color: #0056b3;
}

.main-nav ul li a.active {
    color: #007bff;
    font-weight: 700;
}
header.scrolled .main-nav ul li a.active {
    color: #0056b3;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    transition: width 0.3s ease-in-out;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

header:not(.scrolled) .main-nav ul li a.active::after,
header:not(.scrolled) .main-nav ul li a:hover::after {
     background-color: #a0daff; 
}


.content-section {
    background-color: #fff;
    padding: 70px 0;
}
.content-section:nth-of-type(even) { 
    background-color: #f8f9fa;
}

.content-section > .container {
    background-color: #fff;
    padding: 30px; 
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); 
}

.content-section h1,
.content-section h2 { 
    text-align: center;
    font-size: 2.3em;
    color: #0056b3;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 15px;
}
.content-section h1::after,
.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.section-intro {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}


.hero-section-colored-1 {
    padding: 100px 0;
    color: #fff; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; 
    position: relative; 
    background-size: cover;
    background-position: center;
    background-image: url(/images/maxresdefault.jpg);
}

.hero-section-colored-2 {
    padding: 100px 0;
    color: #fff; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; 
    position: relative; 
    background-size: cover;
    background-position: center;
    background-image: url(/images/imageservices.jpg);
}

.hero-section-colored-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-section-colored-1 > .container {
    position: relative;
    z-index: 2;
}

.hero-section-colored-1 h1 {
    font-size: 2.8em; 
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section-colored-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}
.hero-section-colored-2 > .container {
    position: relative;
    z-index: 2;
}

.hero-section-colored-2 h1 {
    font-size: 2.8em; 
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lead { 
    font-size: 1.25em;
    font-weight: 300;
    margin-bottom: 30px;
    color: #e0e0e0; 
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-actions .btn {
    margin: 0 10px;
    padding: 12px 35px; 
    font-size: 1.05em;
}

.btn-outline-light { 
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: #0056b3; 
}

.content-section-colored {
    padding: 70px 0;
    color: #333;
}

.content-section-colored .container {
    padding: 0 20px;
}

.content-section-colored h2 {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 15px;
    color: #333; 
}
.content-section-colored h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
}
.content-section-colored .section-intro {
     color: #555; 
}



#welcome-hero {
    background-color: #0056b3; 
}

.alt-bg-1 {
    background-color: #e9edf0; 
}
.alt-bg-1 h2 { color: #0056b3; }
.alt-bg-1 h2::after { background-color: #007bff; }
.alt-bg-1 .section-intro { color: #4a5568; }

.default-bg {
    background-color: #ffffff; 
}
.default-bg h2 { color: #0056b3; }
.default-bg h2::after { background-color: #007bff; }

.alt-bg-2 {
    background-color: #d1e0ec; 
}
.alt-bg-2 h2 { color: #2c3e50; } 
.alt-bg-2 h2::after { background-color: #0056b3; }
.alt-bg-2 .section-intro { color: #3e4c59; }


.welcome-illustration {
    display: block;
    width: 200px;
    height: auto;
    margin: 30px auto 0 auto;
}

.welcome-illustration::after {
    max-width: 200px;
}

.action-poles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pole-card {
    background-color: #fff; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pole-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pole-icon {
    margin-bottom: 20px;
}
.pole-icon img {
    max-height: 60px; 
    width: auto;
}

.pole-card h3 {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 10px;
}
.pole-card p {
    font-size: 0.95em;
    color: #454545;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 3.5em; 
}

.btn-primary-outline { 
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 25px;
}
.btn-primary-outline:hover {
    background-color: #007bff;
    color: #fff;
}

.values-showcase {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    max-width: 150px;
}
.value-icon {
    font-size: 2.5em; 
    display: block;
    margin: 0 auto 10px auto; 
    color: #007bff; 
}
.value-item p strong {
    font-size: 1.1em;
    color: #333; 
}


#services-hero {
    min-height: 40vh; 
    padding: 80px 0;
}
#services-hero h1 {
    font-size: 2.5em; 
    color: #fff; 
}



.services-detailed-grid { 
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px; 
    margin-top: 40px;
}

@media (min-width: 768px) { 
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card-detailed {
    background-color: #fff; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

@media (min-width: 992px) { 
    .service-card-detailed {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.service-card-icon {
    margin-bottom: 20px;
    flex-shrink: 0; 
}
@media (min-width: 992px) {
    .service-card-icon {
        margin-right: 25px;
        margin-bottom: 0;
    }
}
.service-card-icon img {
    max-height: 70px; 
    width: auto;
}

.service-card-content h3 {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 15px;
}
.service-card-content p {
    font-size: 1em;
    color: #454545;
    margin-bottom: 15px;
}
.service-card-content ul {
    list-style: disc;
    padding-left: 20px; 
    margin-top: 10px;
    color: #454545;
}
.service-card-content ul li {
    margin-bottom: 8px;
}

#served-establishments h2 {
    color: #333; 
}
#served-establishments h2::after {
    background-color: #0056b3; 
}

.establishments-list-container {
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.establishments-list {
    list-style: none;
    padding-left: 0;
    columns: 1; 
}

@media (min-width: 768px) {
    .establishments-list {
        columns: 2; 
        column-gap: 40px;
    }
}
@media (min-width: 1200px) {
    .establishments-list {
        columns: 3; 
    }
}

.establishments-list li {
    margin-bottom: 12px;
    font-size: 0.95em;
    color: #3e4c59; 
    padding-bottom: 12px; 
    border-bottom: 1px dashed #cdd5de; 
    break-inside: avoid-column; 
    line-height: 1.5; 
}
.establishments-list li strong {
    display: block; 
    margin-bottom: 3px; 
}
.establishments-list li small {
    color: #5a6f84; 
    font-size: 0.9em; 
}

.establishments-list li:last-child {
    border-bottom: none;
}



.team-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}
.team-intro h1 {
    font-size: 2.5em;
    color: #0056b3;
    margin-bottom: 15px;
}
.team-intro p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.team-filter-section {
    margin-bottom: 40px;
    text-align: center;
}
.team-filter-section label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
    font-size: 1.1em;
}
.team-filter-section select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    min-width: 300px;
    background-color: #fff;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.team-member-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}
.team-member-card h3 {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 8px;
}
.team-member-card .profession {
    font-size: 1em;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    min-height: 3em; 
}
.team-member-card .other-info {
    font-size: 0.85em;
    color: #777;
    margin-top: 10px;
}
.team-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.1em;
    color: #777;
    padding: 30px;
}



.contact-page-container {
    padding-top: 30px;
    padding-bottom: 30px;
}
.contact-intro { 
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}
.contact-page-intro { 
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
}
.contact-intro h1, .contact-page-intro h1 {
    font-size: 2.5em;
    color: #0056b3;
    margin-bottom: 15px;
}
.contact-intro p, .contact-page-intro p {
    font-size: 1.15em;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contact-main-content { 
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.contact-form-column {
    flex: 2;
    min-width: 300px;
}
.contact-info-column {
    flex: 1;
    min-width: 280px;
}
.alert-page-form {
    background-color: #fefefe;
    padding: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.alert-page-form fieldset {
    border: 1px solid #dce1e7;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #fff;
}
.alert-page-form legend {
    font-weight: 600;
    color: #0056b3;
    padding: 0 10px;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.alert-page-form .fieldset-description {
    font-size: 0.9em;
    color: #6c757d;
    margin-bottom: 20px;
    margin-top: -5px;
}
.alert-page-form .form-group {
    margin-bottom: 22px;
}
.alert-page-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}
.alert-page-form .form-group input[type="text"],
.alert-page-form .form-group input[type="email"],
.alert-page-form .form-group input[type="tel"],
.alert-page-form .form-group select,
.alert-page-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fdfdfd;
}
.alert-page-form .form-group input:focus,
.alert-page-form .form-group select:focus,
.alert-page-form .form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    outline: none;
}
.alert-page-form .form-group small {
    display: block;
    margin-top: 6px;
    color: #6c757d;
    font-size: 0.875em;
}
.alert-page-form button[type="submit"].btn-primary {
    padding: 12px 30px;
    font-size: 1.05em;
    width: 100%;
}
.contact-info-panel { 
    background-color: #e9f5ff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-info-panel h3 {
    color: #0056b3;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}
.contact-info-panel h4 {
    color: #006ace;
    font-size: 1.1em;
    margin-top: 25px;
    margin-bottom: 10px;
}
.contact-info-panel p {
    font-size: 0.95em;
    line-height: 1.7;
    color: #33475b;
    margin-bottom: 15px;
}
.contact-info-panel .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1em;
}
.contact-info-panel .info-icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #007bff;
    line-height: 1.2;
}
.contact-info-panel .info-details {
    display: flex;
    flex-direction: column;
}
.contact-info-panel .info-details strong {
    font-weight: 600;
    color: #0056b3;
}
.contact-info-panel .info-details small {
    font-size: 0.85em;
    color: #5a6f84;
}
.contact-info-panel hr {
    border: 0;
    height: 1px;
    background-color: #cce7ff;
    margin: 25px 0;
}


.contact-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}
.contact-info-block { 
    flex: 1;
    min-width: 300px;
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.contact-info-block h2 { 
    color: #0056b3;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    text-align: left; 
}
.contact-info-block h2::after { display: none; } 

.contact-info-block .info-item { 
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}
.contact-info-block .info-icon {
    font-size: 1.6em;
    margin-right: 18px;
    color: #007bff;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-block .info-text a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-block .info-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}
.contact-map-block { 
    flex: 1.5;
    min-width: 300px;
    overflow: hidden;
}
.contact-map-block h2 { 
    color: #0056b3;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    text-align: left;
}
.contact-map-block h2::after { display: none; }

.map-responsive {
    overflow: hidden;
    padding-bottom: 75%; 
    position: relative;
    height: 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    border: 0;
    display: block;
}
.contact-form-prompt { 
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}
.contact-form-prompt h3 {
    color: #006ace;
    margin-bottom: 10px;
    font-size: 1.3em;
}



.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: 2px solid transparent; 
}
.btn-primary {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-secondary { 
    background-color: #6c757d;
    color: #fff;
    border-color: #6c757d;
}
.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}
.btn-lg { 
    padding: 14px 40px;
    font-size: 1.1em;
}



footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    border-top: 5px solid #007bff;
}
.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-logo img {
    max-height: 60px;
    margin: 10px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 5px;
    border-radius: 4px;
}
.footer-logo img:hover {
    background-color: rgba(255, 255, 255, 0.462);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .footer-logo {justify-content: center;}
    .plansite {font-size: auto;} 
}

.footer-center-content {
    text-align: center;
    flex-grow: 1;
    margin: 15px 0;
}
.footer-info p {
    margin: 8px 0;
    font-size: 0.9em;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-links ul li {
    margin: 0 12px;
}
.footer-links ul li a {
    text-decoration: none;
    color: #a0daff;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}
.footer-links ul li a:hover {
    color: #fff;
    text-decoration: underline;
}


.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.animate-on-scroll.delay-1.is-visible { transition-delay: 0.2s; }
.animate-on-scroll.delay-2.is-visible { transition-delay: 0.4s; }
.animate-on-scroll.delay-3.is-visible { transition-delay: 0.6s; }
.animate-on-scroll.delay-4.is-visible { transition-delay: 0.8s; }
.animate-on-scroll.delay-5.is-visible { transition-delay: 1.0s; }



#fixedAlertButton {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #007bff;
    color: white;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    transition: width 0.35s ease-in-out, height 0.35s ease-in-out, padding 0.35s ease-in-out, background-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    width: 58px; 
    height: 58px;
    box-sizing: border-box;
}
#fixedAlertButton .alert-icon {
    line-height: 1;
    display: inline-block;
    width: 28px;
    height: 28px;
}
#fixedAlertButton .alert-text {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    font-weight: 600;
    font-size: 1em;
    display: inline-block;
    vertical-align: middle;
    transition: max-width 0.3s ease-in-out, opacity 0.25s ease-in-out, margin-left 0.3s ease-in-out;
}
#fixedAlertButton:hover {
    width: auto; 
    padding-left: 20px;
    padding-right: 22px;
    background-color: #0056b3;
    justify-content: flex-start;
    transform: scale(1.05);
}
#fixedAlertButton:hover .alert-text {
    max-width: 200px; 
    opacity: 1;
    margin-left: 12px;
    transition-delay: 0.05s;
}

#fixedAlertButton .alert-text {
    transition: max-width 0.35s ease-in-out, opacity 0.3s ease-in-out, margin-left 0.35s ease-in-out;
}


.modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px); 
    transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s, backdrop-filter 0.3s ease;
}
.modal-overlay.is-open {
    background-color: rgba(0, 0, 0, 0.65); 
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
    transition-delay: 0s; 
}
.modal-content {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8) translateY(15px); 
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.05s, opacity 0.3s ease-out 0.05s; 
    pointer-events: none; 
}
.modal-overlay.is-open .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto; 
}
.modal-close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-close-button:hover,
.modal-close-button:focus {
    color: #777;
}
.modal-icon {
    width: 60px;
    height: 55px; 
    margin: 0 auto 20px auto;
}
.modal-icon svg {
    width: 100%;
    height: 100%;
    display: none; 
}
.modal-icon.success .icon-success,
.modal-icon.error .icon-error {
    display: block; 
}

.modal-icon.success svg circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #28a745; 
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.modal-icon.success svg path {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #28a745; 
    stroke-width: 2.5;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
.modal-icon.error svg .error-circle {
    stroke: #dc3545; 
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.modal-icon.error svg .error-line1,
.modal-icon.error svg .error-line2 {
    stroke: #dc3545; 
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
}
.modal-icon.error svg .error-line1 {
    animation: stroke 0.25s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}
.modal-icon.error svg .error-line2 {
    animation: stroke 0.25s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}
@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}
.modal-content h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}
.modal-content p {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
}
.modal-content .btn {
    margin-top: 10px;
}



.mobile-fab-menu {
    display: none; 
    position: fixed;
    right: 25px;
    bottom: 98px; 
    z-index: 1005;
}
.fab-nav-toggle {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.fab-nav-toggle:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}
.fab-hamburger-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.fab-hamburger-icon::before,
.fab-hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.fab-hamburger-icon::before { top: -7px; }
.fab-hamburger-icon::after { bottom: -7px; }

.fab-nav-toggle.active .fab-hamburger-icon {
    background-color: transparent; 
}
.fab-nav-toggle.active .fab-hamburger-icon::before {
    transform: translateY(7px) rotate(45deg); 
}
.fab-nav-toggle.active .fab-hamburger-icon::after {
    transform: translateY(-7px) rotate(-45deg); 
}
.fab-main-nav {
    position: absolute;
    bottom: 66px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); 
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    min-width: 180px;
}
.fab-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fab-main-nav ul li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}
.fab-main-nav ul li a:hover {
    background-color: #f0f0f0;
}
.fab-main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
}



@media (max-width: 992px) { 
    body { padding-top: 70px; }
    header { padding: 10px 0; }
    .logo img { max-height: 50px;}
    .main-nav { display: none; } 
    .mobile-fab-menu { display: block; } 

    .header-container {
        justify-content: center;
    }
    .header-container .logo {
        margin: 0 auto;
    }

    .hero-section-colored { padding: 80px 0; min-height: 50vh; }
    .hero-section-colored h1 { font-size: 2.2em; }
    .lead { font-size: 1.1em; margin-bottom: 30px; }
    .hero-actions .btn { display: block; margin: 10px auto; width: fit-content;} 

    .content-section-colored h2 { font-size: 2em; margin-bottom: 35px; }
    .content-section-colored .section-intro { font-size: 1em; margin-bottom: 30px; }

    .action-poles-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .pole-card { padding: 25px; }
    .pole-card p { min-height: auto; } 
    .values-showcase { flex-direction: column; align-items: center; gap: 15px; }
    .value-item { max-width: 200px; }

    #services-hero { min-height: 30vh; padding: 60px 0; }
    #services-hero h1 { font-size: 2em; }
    .services-detailed-grid { grid-template-columns: 1fr; gap: 30px; } 
    .service-card-detailed { padding: 25px; }
    .service-card-icon img { max-height: 60px; }
    .service-card-content h3 { font-size: 1.4em; }
    .establishments-list { columns: 1; } 
    .establishments-list li { border-bottom: 1px dashed #cdd5de; padding-bottom: 10px; margin-bottom: 10px; }
    .establishments-list li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

    .team-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .team-member-card { padding: 20px; }
    .team-member-card img { width: 100px; height: 100px; }
    .team-member-card .profession { min-height: auto; }

    .contact-main-content { flex-direction: column; gap: 30px; }
    .contact-details-grid { flex-direction: column; gap: 30px; }
    .contact-intro h1, .contact-page-intro h1 { font-size: 2em; }
    .contact-intro p, .contact-page-intro p { font-size: 1em; }
    .alert-page-form button[type="submit"].btn-primary { width: auto; }
    .contact-info-panel, .contact-info-block { padding: 25px; }
    .contact-map-block .map-responsive { padding-bottom: 56.25%; } /* 16:9 ratio */
    .team-filter-section select { min-width: auto; width: 100%; }

    /* Footer responsive styles */
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        margin: 10px 0;
    }
    .footer-center-content {
        width: 100%;
        margin: 20px 0;
    }
    .footer-links ul {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (max-width: 768px) { 
    .content-section h1, .content-section h2 { font-size: 1.8em; } 
    .content-section .section-intro { font-size: 1em; } 
    .map-responsive {
        padding-bottom: 80%;
    }
    .contact-map-block {
        overflow: hidden;
    }
    .contact-map-block p {
        font-size: 0.9em;
        margin-top: 10px;
        text-align: center;
        word-wrap: break-word;
    }
    .contact-map-block a.btn {
        display: inline-block;
        margin-top: 15px;
    }
}

@media (max-width: 480px) { 
    .hero-section-colored h1 { font-size: 1.9em; }
    .lead { font-size: 1em; }
    .content-section-colored h2 { font-size: 1.6em; }
    .content-section-colored .section-intro { font-size: 0.95em; }

    /* Page Accueil */
    .action-poles-grid { grid-template-columns: 1fr; } 
    .pole-card { padding: 20px; }
    .pole-card h3 { font-size: 1.3em; }
    .pole-card p { font-size: 0.9em; }
    .value-item { max-width: 120px; }
    .value-icon { font-size: 2em; }

    /* Page Services */
    #services-hero h1 { font-size: 1.7em; }
    .service-card-detailed { padding: 20px; }
    .service-card-icon img { max-height: 50px; }
    .service-card-content h3 { font-size: 1.3em; }
    .service-card-content p, .service-card-content ul li { font-size: 0.9em; }
    .establishments-list-container { padding: 20px; }


    /* Page Équipe */
    .team-grid { grid-template-columns: 1fr; } 
    .team-member-card { padding: 15px; }
    .team-member-card img { width: 80px; height: 80px; }
    .team-member-card h3 { font-size: 1.2em; }
    .team-member-card .profession { font-size: 0.9em; }

    /* Page Contact & Alerte */
    .contact-intro h1, .contact-page-intro h1 { font-size: 1.8em; }
    .contact-intro p, .contact-page-intro p { font-size: 0.95em; }
    .alert-page-form { padding: 20px; }
    .alert-page-form fieldset { padding: 15px; }
    .alert-page-form legend { font-size: 1.1em; }
    .contact-info-panel, .contact-info-block { padding: 20px; }
    .contact-info-panel h3 { font-size: 1.3em; }
    .contact-info-panel .info-item, .contact-info-block .info-item { font-size: 0.95em; }
    .contact-info-block h2 { font-size: 1.6em; }
    .contact-map-block .map-responsive { padding-bottom: 75%; } /* 4:3 ratio for small screens */

    /* Modale */
    .modal-overlay.is-open { backdrop-filter: none; } 
    .modal-content { padding: 25px 20px; width: 95%; }
    .modal-content h2 { font-size: 1.3em; }
    .modal-content p { font-size: 0.9em; }
    .modal-icon { width: 50px; height: 45px; }
}

    .plansiteexpl {
        margin-top: -1rem;
        font-style: italic;
        font-size: small;
    }

    .plansite {
        display: grid;
        text-align: center;
    }

    .plansite h4 {
        color :rgb(18, 87, 161);
        display: block;
}

    .plansite h5 {
        color :rgb(6, 37, 70);
        font-style: italic;
        margin-top: -1rem;
}

.disclaimer {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    padding: 15px 20px;
    font-size: 1em;
    color: #721c24;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}
.tree-sitemap ul {
  padding-left: 20px;
  position: relative;
  list-style: none;
}
.tree-sitemap ul::before {
  content: '';
  border-left: 2px solid #007bff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
}
.tree-sitemap li {
  margin: 12px 0;
  padding-left: 25px;
  position: relative;
}
.tree-sitemap li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 10px;
  width: 15px;
  border-top: 2px solid #007bff;
}
.tree-sitemap span {
  font-weight: 600;
  color: #0056b3;
}
.tree-sitemap small {
  color: #555;
  margin-left: 8px;
  font-style: italic;
}
.dev-banner {
    background-color: #da7b7081;
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: padding 1s ease, background-color 0.9s ease;
    border-bottom: 2px solid #7b241c6d;
    border-top: 2px solid #7b241c49;
}

.dev-banner:hover {
    padding: 12px 15px;
    background-color: #e74c3c;
}

.dev-banner__content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dev-banner__content {
    flex-direction: column;
    align-items: center;
}

.dev-banner__icon {
    font-size: 1.1em;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 4px;
    padding: 0 4px;
    line-height: 1;
}

.dev-banner__more {
    display: none;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
    margin-left: 0;
    line-height: 1.3;
}

.dev-banner:hover {
    padding: 12px 15px;
    background-color: #e74c3c;
}
.dev-banner:hover .dev-banner__more { display: block; }

/* Mobile: show .dev-banner__more when expanded */
.dev-banner.expanded .dev-banner__more {
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dev-banner {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}

.videopms {
    display: block; 
    margin: 0 auto; 
    height: auto;
    width: auto;
}