/* Styles personnalisés */
:root {
    --primary-color: #145a32;
    --secondary-color: #090a0a;
    --accent-color: #f41c0a;
}

.carousel-item {
    height: 600px;
    transition: transform 1.2s ease-in-out;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.card {
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-img-top {
    transition: all 0.5s ease;
    height: 200px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    position: relative;
    z-index: 1;
    background: white;
    transition: all 0.3s ease;
}

.card-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.card:hover .card-title::after {
    width: 100%;
}

/* Animation d'apparition des cards au chargement */
.card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.col-md-4:nth-child(1) .card {
    animation-delay: 0.2s;
}

.col-md-4:nth-child(2) .card {
    animation-delay: 0.4s;
}

.col-md-4:nth-child(3) .card {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de brillance au survol */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 1;
}

.card:hover::before {
    left: 100%;
}

/* Animation du texte dans les cards */
.card-text {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.card:hover .card-text {
    transform: translateY(0);
    opacity: 1;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.top-header {
    font-size: 0.9rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    transform: scale(1.2);
    background-color: var(--primary-color);
}

.carousel-caption {
    bottom: 20%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Ajouter ces styles pour les animations */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Animation pour les textes du carousel */
.carousel-item.active .carousel-caption h1 {
    animation: slideInUp 1s ease-out;
}

.carousel-item.active .carousel-caption p {
    animation: slideInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* Keyframes pour les animations */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Amélioration de la transition entre les slides */
.carousel-item {
    transition: transform 1.2s ease-in-out;
}

/* Animation des indicateurs */
.carousel-indicators button {
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    transform: scale(1.2);
    background-color: var(--primary-color);
}

/* Styles pour la section Mission */
.mission-section {
    position: relative;
    overflow: hidden;
}

.mission-content {
    animation: fadeInLeft 1s ease-out;
}

.mission-image {
    animation: fadeInRight 1s ease-out;
}

.mission-img {
    transition: transform 0.5s ease;
}

.mission-img:hover {
    transform: scale(1.02);
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.mission-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.mission-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.mission-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.mission-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 13px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Styles pour la page À propos */
.page-header {
    height: 400px;
    overflow: hidden;
}

.page-header-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
}

.page-header-content p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.about-intro {
    animation: fadeIn 1s ease-out;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.col-md-4:nth-child(1) .value-card {
    animation-delay: 0.2s;
}

.col-md-4:nth-child(2) .value-card {
    animation-delay: 0.4s;
}

.col-md-4:nth-child(3) .value-card {
    animation-delay: 0.6s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Styles pour la page Services */
.service-item {
    margin-bottom: 6rem;
}

.service-content {
    padding: 2rem;
}

.service-list ul {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-image img {
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.services-accordion .accordion-button {
    background-color: white;
    color: var(--primary-color);
}

.services-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.services-accordion .accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.services-accordion .accordion-body {
    padding: 2rem;
}

.service-list h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

[data-aos] {
    opacity: 0;
    transition: all 0.5s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

.aos-animate[data-aos="fade-right"],
.aos-animate[data-aos="fade-left"] {
    transform: translateX(0);
}

/* Styles pour les cartes de services */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    margin-bottom: 2rem;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card-img {
    height: 300px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 2.5rem;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Animation des cartes */
.col-md-6:nth-child(1) .service-card { animation-delay: 0.1s; }
.col-md-6:nth-child(2) .service-card { animation-delay: 0.2s; }
.col-md-6:nth-child(3) .service-card { animation-delay: 0.3s; }
.col-md-6:nth-child(4) .service-card { animation-delay: 0.4s; }
.col-md-6:nth-child(5) .service-card { animation-delay: 0.5s; }
.col-md-6:nth-child(6) .service-card { animation-delay: 0.6s; }

/* Ajouter un effet de hover plus subtil */
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Ajouter plus d'espace entre les sections */
.services-grid {
    padding: 5rem 0;
}

/* Ajuster l'espacement des conteneurs */
.container {
    max-width: 1200px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

/* Pour les grandes résolutions */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

/* Pour les sections avec fond coloré */
.service-block, 
.mission-section,
.values-section {
    padding-left: 30px;
    padding-right: 30px;
}

/* Ajuster le header et le footer */
.top-header,
.navbar,
footer {
    padding-left: 30px;
    padding-right: 30px;
}

/* Nouveaux styles pour les services */
.service-block {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    scroll-margin-top: 80px;
}

.service-block:nth-child(even) {
    background-color: #f8f9fa;
}

.service-content {
    padding: 3rem 0;
}

.service-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Animation des sections */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.aos-animate[data-aos="fade-right"],
.aos-animate[data-aos="fade-left"] {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-content {
        padding: 2rem 0;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-image img {
        height: 300px;
    }
} 

/* Couleurs des boutons et icônes */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0d3d21;
    border-color: #0d3d21;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Couleur des icônes dans les sections de contact */
.contact-info i,
.service-content i,
.value-icon i {
    color: var(--primary-color);
}

/* Couleur des icônes dans le formulaire */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(20, 90, 50, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(20, 90, 50, 0.25);
}

/* Couleur des icônes dans les cartes de valeurs */
.value-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Couleur des liens au survol */
a:hover {
    color: var(--primary-color);
}

/* Couleur des icônes dans le footer */
footer i {
    color: #fff;
}

/* Couleur des liens dans le footer au survol */
footer a:hover {
    color: #a8e6bc !important;
    text-decoration: none;
}

/* Styles pour le carrousel des partenaires */
.partners-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.partner-logo {
    padding: 10px;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

#partnersCarousel {
    max-width: 800px;
    margin: 0 auto;
}

/* Cacher les boutons de navigation */
#partnersCarousel .carousel-control-prev,
#partnersCarousel .carousel-control-next {
    display: none;
} 

/* Styles pour la galerie */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(20, 90, 50, 0.9);
    color: white;
    padding: 1rem;
    transition: bottom 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    bottom: 0;
} 

/* Styles pour la section Construction */
.construction-section {
    background-color: white;
}

.construction-image img {
    transition: transform 0.5s ease;
}

.construction-image img:hover {
    transform: scale(1.02);
}

.feature-item {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item i {
    font-size: 1.5rem;
} 

/* Styles pour la section expertise du footer */
.footer-expertise-list {
    margin-left: 1rem;
    font-size: 0.9rem;
}

.footer-expertise-list li {
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-expertise-list li:hover {
    transform: translateX(5px);
}

.footer-expertise i {
    color: var(--primary-color);
}

/* Style pour la barre de copyright */
.text-center.py-3 {
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
    .text-center.py-3 .text-md-end {
        margin-top: 0.5rem;
    }
} 

/* Styles pour la section maintenance */
.maintenance-section {
    position: relative;
}

.maintenance-image img {
    transition: transform 0.5s ease;
}

.maintenance-image img:hover {
    transform: scale(1.02);
}

.maintenance-features .feature-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.maintenance-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.maintenance-features ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.maintenance-features i {
    color: var(--primary-color);
} 

/* Style pour le bouton d'action */
.action-button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.action-button:hover {
    background-color: #0d3d23;
    border-color: #0d3d23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 90, 50, 0.3);
}

.action-button i {
    transition: transform 0.3s ease;
}

.action-button:hover i {
    transform: translateX(5px);
} 

.bg-gray {
    background-color: #f8f9fa !important;
} 

.service-block.bg-gray {
    background-color: #f8f9fa !important;
}

.service-block.bg-white {
    background-color: #ffffff !important;
} 

/* Styles pour le top header */
.top-header a:hover {
    color: #25D366 !important;
    text-decoration: underline !important;
}

.top-header .bi-whatsapp {
    color: #25D366;
}

@media (max-width: 767px) {
    .top-header .text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
} 

/* Style pour les images des services */
.service-image {
    margin-bottom: 20px;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

/* Ajustement pour les images en mode mobile */
@media (max-width: 768px) {
    .service-image {
        height: 200px;
    }
} 

/* Style pour les images des services avec popup */
.service-image {
    margin-bottom: 20px;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Style pour le popup */
.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.image-popup.active {
    display: flex;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    background-color: transparent;
    padding: 0;
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
} 

/* Style pour les cartes de service sur la page d'accueil */
.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .service-image {
    height: 200px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-content {
    padding: 1.5rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
} 

/* Pour assurer un bon scroll vers les ancres */
html {
    scroll-behavior: smooth;
}

/* Offset pour les ancres à cause du header fixe */
.service-block {
    scroll-margin-top: 80px;
} 

/* Styles pour les filtres de la galerie */
.gallery-filters {
    margin-bottom: 2rem;
}

.btn-filter {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: white;
}

/* Animation pour le filtrage */
.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    display: none;
} 

/* Style pour le popup de la galerie */
.gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.gallery-popup.active {
    display: flex;
}

.gallery-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.gallery-popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-gallery-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-gallery-popup:hover {
    background: rgba(255, 255, 255, 0.1);
} 

/* Style pour le popup des images de service */
.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.image-popup.active {
    display: flex;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
} 