/*

Site Communauté de Pèlerins - CSS Épuré et Moderne
Design inspiré du template Tiya Golf Club avec améliorations

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES ) ÉPURÉES
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #6b9b8a;
    --primary-light: #8fb5a5;
    --secondary-color: #2c3e50;
    --secondary-light: #34495e;
    --accent-color: #d4af37;
    --accent-light: #f4e4a6;
    --section-bg-color: #f8f9fa;
    --section-bg-light: #fefefe;
    --custom-btn-bg-color: #6b9b8a;
    --custom-btn-bg-hover-color: #5a8476;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --dark-color: #2c3e50;
    --p-color: #5a6c7d;
    --p-light: #7f8c8d;
    --link-hover-color: #d4af37;

    --body-font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;

    --h1-font-size: 3.5rem;
    --h2-font-size: 2.8rem;
    --h3-font-size: 2.2rem;
    --h4-font-size: 1.8rem;
    --h5-font-size: 1.5rem;
    --h6-font-size: 1.3rem;
    --p-font-size: 1.1rem;
    --menu-font-size: 1rem;
    --btn-font-size: 0.95rem;

    --border-radius-large: 60px;
    --border-radius-medium: 16px;
    --border-radius-small: 8px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.15);
    --shadow-xl: 0 16px 48px rgba(44, 62, 80, 0.2);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    line-height: 1.7;
    font-weight: var(--font-weight-normal);
    color: var(--p-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(107, 155, 138, 0.02) 0%,
        rgba(212, 175, 55, 0.01) 100%
    );
    pointer-events: none;
    z-index: -1;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-medium);
    letter-spacing: -1px;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(107, 155, 138, 0.03) 0%,
        rgba(212, 175, 55, 0.02) 100%
    );
    pointer-events: none;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.section-overlay {
    content: "";
    background: rgba(0, 0, 0, 0)
        linear-gradient(rgba(39, 48, 83, 0.01) 0%, rgb(39, 48, 83) 100%) repeat
        scroll 0% 0%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Modern Section Enhancements */
.container {
    position: relative;
    z-index: 1;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--p-light);
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    color: var(--link-hover-color);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}
.cd-headline.rotate-1 b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 1.2s;
    -moz-animation: cd-rotate-1-in 1.2s;
    animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 1.2s;
    -moz-animation: cd-rotate-1-out 1.2s;
    animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        opacity: 1;
    }
}
@-moz-keyframes cd-rotate-1-in {
    0% {
        -moz-transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -moz-transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -moz-transform: rotateX(360deg);
        opacity: 1;
    }
}
@keyframes cd-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        -moz-transform: rotateX(120deg);
        -ms-transform: rotateX(120deg);
        -o-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        -moz-transform: rotateX(360deg);
        -ms-transform: rotateX(360deg);
        -o-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}
@-webkit-keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        opacity: 0;
    }
}
@-moz-keyframes cd-rotate-1-out {
    0% {
        -moz-transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -moz-transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -moz-transform: rotateX(180deg);
        opacity: 0;
    }
}
@keyframes cd-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        -moz-transform: rotateX(-40deg);
        -ms-transform: rotateX(-40deg);
        -o-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}

/*---------------------------------------
  CUSTOM BUTTON - MODERN & ELEGANT               
-----------------------------------------*/
.custom-btn {
    background: linear-gradient(
        135deg,
        var(--custom-btn-bg-color) 0%,
        var(--custom-btn-bg-hover-color) 100%
    );
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.custom-btn:hover::before {
    left: 100%;
}

.custom-btn:hover {
    background: linear-gradient(
        135deg,
        var(--custom-btn-bg-hover-color) 0%,
        #4a7c67 100%
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white-color);
}

.custom-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.custom-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 155, 138, 0.3);
}

/* Modern Border Button */
.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--custom-btn-bg-color);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.custom-border-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--custom-btn-bg-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.custom-border-btn:hover {
    border-color: var(--custom-btn-bg-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.custom-border-btn:hover::before {
    width: 100%;
}

/* White Border Button */
.custom-btn-bg-white {
    border-color: var(--white-color);
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.custom-btn-bg-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Button Group Links */
.custom-btn-group .link {
    color: var(--white-color);
    font-weight: var(--font-weight-medium);
    padding: 8px 16px;
    border-radius: var(--border-radius-medium);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.custom-btn-group .link:hover {
    color: var(--link-hover-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Modern Pill Button */
.btn-pill {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-pill::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pill:hover::after {
    width: 300px;
    height: 300px;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--accent-color) 100%
    );
    border: none;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.btn-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        var(--primary-color) 100%
    );
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-gradient:hover::before {
    opacity: 1;
}

/* Glass Effect Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Button */
.btn-icon {
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-icon i {
    margin: 0;
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.2rem;
    border-radius: var(--border-radius-large);
}

/* Loading State */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.offcanvas {
    background-color: var(--primary-color);
    padding: 30px;
}

.offcanvas.offcanvas-end {
    border-left: 0;
}

.offcanvas-header .btn-close {
    transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
    transform: rotate(180deg);
}

.offcanvas svg {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.sticky-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.sticky-wrapper.is-sticky .navbar {
    background-color: rgb(61 64 91);
}

.navbar {
    background: transparent;
    z-index: 99;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    display: block;
    color: var(--dark-color);
    max-width: 48px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
    color: var(--white-color);
}

.navbar .navbar-brand-image {
    filter: brightness(0) invert(1);
}

.navbar-brand-image {
    width: 48px;
    height: 48px;
}

.navbar-brand-text {
    line-height: normal;
    margin-left: 10px;
    position: relative;
    bottom: 5px;
}

.navbar-brand-text small {
    display: block;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 10px;
    padding: 10px;
}

.navbar-nav .nav-link {
    display: inline-block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--link-hover-color);
}

.navbar .dropdown-menu {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border: 0;
    display: inherit;
    opacity: 0;
    min-width: 9rem;
    margin-top: 20px;
    padding: 13px 0 10px 0;
    transition: all 0.3s;
    pointer-events: none;
}

.navbar .dropdown-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid var(--white-color);
    position: absolute;
    top: -10px;
    left: 10px;
}

.navbar .dropdown-item {
    display: inline-block;
    color: var(--p-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
    background: transparent;
    color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: var(--copyright-font-size);
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0;
}

@media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        margin-top: 0;
        pointer-events: auto;
    }
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease,
        -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease,
        -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
    background-image: url("../images/anna-rosar-ZxFyVBHMK-c-unsplash.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    height: 100vh;
    min-height: 670px;
    margin-bottom: -90px;
}

.hero-50 {
    height: auto;
    min-height: 540px;
    margin-bottom: -100px;
}

.hero-50 .container + svg {
    transform: rotate(180deg);
}

.hero-section .ratio {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}

.hero-section svg {
    position: absolute;
    right: 0;
    left: 0;
}

.hero-section > svg {
    top: 0;
}

.hero-section .container + svg {
    top: auto;
    bottom: -1px;
}

.hero-section .row {
    position: relative;
    z-index: 22;
}

/*---------------------------------------
  BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.section-bg-image {
    background-image: url("../images/frederik-rosar-NDSZcCfnsbY-unsplash.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: -70px;
}

.section-bg-image .container + svg {
    transform: rotate(180deg);
    position: relative;
    bottom: -1px;
}

.section-bg-image-block {
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: var(--border-radius-medium);
    border: 1px solid rgba(209, 213, 219, 0.3);
    border-radius: var(--border-radius-medium);
    padding: 50px;
}

.section-bg-image-block .input-group {
    background-color: var(--white-color);
    border-radius: var(--border-radius-large);
    padding: 10px 15px;
}

.section-bg-image-block .input-group-text {
    background-color: transparent;
    border: 0;
}

.section-bg-image-block input[type="email"] {
    border: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding-left: 0;
}

.section-bg-image-block button[type="submit"] {
    background-color: var(--primary-color);
    border: 0;
    border-radius: var(--border-radius-large) !important;
    color: var(--white-color);
    max-width: 150px;
}

/*---------------------------------------
  ABOUT SECTOIN              
-----------------------------------------*/
.about-section {
    padding-bottom: 70px;
}

.member-block-image-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.member-block-image-wrap:hover .member-block-image {
    transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
    opacity: 1;
}

.member-block-image-wrap .social-icon {
    background-color: var(--white-color);
    border-radius: var(--border-radius-large);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
    padding: 15px 20px;
    width: auto;
}

.member-block-image {
    transition: all 0.3s;
}

.member-block-info {
    padding: 10px;
}

.member-block-info h4,
.member-block-info p {
    margin-bottom: 0;
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
}

.custom-block-bg {
    background: var(--white-color);
}

.custom-block-date-wrap {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-medium);
    text-align: center;
    padding: 20px 30px;
}

.custom-block-date {
    font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
    transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
    opacity: 1;
}

.custom-block-image {
    transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
    position: absolute;
    bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
    border-radius: 0;
    left: 0;
    width: 50%;
    padding: 12.3px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
    right: 0;
    width: 50%;
}

.custom-block-image-wrap .custom-btn {
    border-radius: 0;
    display: block;
    padding: 15px 20px;
}

.custom-block-info {
    padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
    padding-top: 20px;
}

.custom-block-span {
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    min-width: 110px;
    margin-right: 10px;
}

.custom-block-icon {
    background: var(--custom-btn-bg-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: var(--h3-font-size);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.custom-block-icon:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

/*---------------------------------------
  EVENTS SECTION            
-----------------------------------------*/
.events-section.section-bg .container > .row {
    margin-right: 5px;
    margin-left: 5px;
}

.events-section.section-bg .container > .row .row {
    margin: auto;
}

.events-listing-section {
    margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
    padding: 40px 60px;
}

.events-detail-info {
    background-color: var(--section-bg-color);
    border-radius: var(--border-radius-medium);
    padding: 50px 25px;
}

.events-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-medium);
}

/*---------------------------------------
  MEMBERSHIP SECTION            
-----------------------------------------*/
.membership-section .container {
    position: relative;
    z-index: 2;
}

.table-responsive {
    border-radius: var(--border-radius-medium);
}

.table-responsive tbody,
.table-responsive td,
.table-responsive tfoot,
.table-responsive th,
.table-responsive thead,
.table-responsive tr {
    border: 0;
}

.table-responsive thead tr {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.table-responsive thead th {
    padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
    background-color: var(--section-bg-color);
}

.table > :not(caption) > * > * {
    padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
    color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
    color: var(--custom-btn-bg-hover-color);
}

.membership-form {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-medium);
    padding: 35px;
}

.membership-form .form-floating > textarea {
    border-radius: var(--border-radius-medium);
    height: 100px;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-form .form-floating > textarea {
    border-radius: var(--border-radius-medium);
    height: 120px;
}

.contact-info {
    position: relative;
}

.contact-info-item {
    background: var(--secondary-color);
    border-radius: var(--border-radius-medium);
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.contact-info-body {
    padding: 20px 30px;
}

.contact-info-body strong,
.contact-info-item a {
    color: var(--white-color);
}

.contact-info-footer {
    background-color: var(--custom-btn-bg-hover-color);
    padding: 10px 20px;
    transition: all 0.3s;
}

.contact-info-footer:hover {
    background-color: var(--custom-btn-bg-color);
}

.contact-info-footer a {
    display: block;
    font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SITE FOOTER            
-----------------------------------------*/
.site-footer {
    position: relative;
    padding-bottom: 200px;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.site-footer svg {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    pointer-events: none;
}

.site-footer-title {
    color: var(--secondary-color);
}

.site-footer p span {
    font-weight: var(--font-weight-medium);
    margin-right: auto;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
    border-radius: var(--border-radius-large);
    border-width: 2px;
    box-shadow: none;
    color: var(--p-color);
    margin-bottom: 20px;
    padding: 10px;
    padding-left: 20px;
    outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
    border-color: var(--dark-color);
}

.form-floating > label {
    padding-left: 20px;
}

.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s;
    margin-bottom: 0;
    padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
}

.header-form {
    position: relative;
}

.header-form .form-control {
    padding-left: 42px;
}

.header-form-icon {
    width: 24px;
    position: absolute;
    top: 0;
    margin: 12px;
    margin-left: 15px;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--secondary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    display: block;
    margin-right: 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 36px;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .navbar {
        background-color: var(--secondary-color);
    }

    .navbar-nav .dropdown-menu {
        position: relative;
        left: 10px;
        opacity: 1;
        pointer-events: auto;
        max-width: 155px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .navbar-expand-lg .navbar-nav {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        margin: 5px;
        padding: 0;
    }

    .hero-section {
        position: relative;
        top: 82px;
        margin-bottom: 82px;
    }

    .events-listing-section {
        margin-bottom: 50px;
    }

    .events-detail-section .custom-block-info {
        padding: 40px;
    }

    .events-detail-info {
        padding: 35px 25px;
    }

    .contact-info-item {
        width: 60%;
    }

    .events-detail-section .contact-info-item {
        width: 70%;
    }

    .section-bg-image {
        margin-bottom: 0;
    }

    .section-bg-image-block {
        padding: 30px;
    }

    .site-footer {
        padding-top: 20px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 480px) {
    .navbar-brand {
        font-size: var(--p-font-size);
    }

    .navbar-brand-icon {
        width: 30px;
        height: 30px;
    }

    .navbar-brand-icon::after {
        top: 5px;
    }

    .section-bg-image-block {
        padding: 30px;
    }

    .contact-info-item {
        width: 72%;
    }
}

@media screen and (max-width: 360px) {
    .custom-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/*-------------------------------------
  MODERN PILGRIMAGES SECTION
-------------------------------------*/
.pilgrimages-modern {
    padding: 80px 0;
    background: #ffffff;
}

.pilgrimages-modern .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pilgrimages-modern .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.pilgrimages-modern .section-subtitle {
    font-size: 1.1rem;
    color: var(--p-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pilgrimage-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
}

.pilgrimage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.pilgrimage-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.pilgrimage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.pilgrimage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 178, 154, 0.1) 0%,
        rgba(61, 64, 91, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pilgrimage-card:hover .pilgrimage-overlay {
    opacity: 1;
}

.pilgrimage-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.pilgrimage-content {
    padding: 32px;
}

.pilgrimage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.pilgrimage-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.pilgrimage-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--p-color);
}

.pilgrimage-detail i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
}

.pilgrimage-description {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.pilgrimage-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pilgrimage-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pilgrimage-btn-primary {
    background: var(--primary-color);
    color: white;
}

.pilgrimage-btn-primary:hover {
    background: #6b9b8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 178, 154, 0.3);
}

.pilgrimage-btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid rgba(129, 178, 154, 0.3);
}

.pilgrimage-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pilgrimages-modern {
        padding: 60px 0;
    }

    .pilgrimages-modern .section-title {
        font-size: 2rem;
    }

    .pilgrimages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pilgrimage-content {
        padding: 24px;
    }

    .pilgrimage-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pilgrimage-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .pilgrimages-modern {
        padding: 40px 0;
    }

    .pilgrimages-modern .section-title {
        font-size: 1.75rem;
    }

    .pilgrimage-image-wrapper {
        height: 240px;
    }

    .pilgrimage-content {
        padding: 20px;
    }
}

/*-------------------------------------
  MODERN NEWS SECTION (Dernières Actualités)
-------------------------------------*/
.news-modern {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.news-modern .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.news-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date::before {
    content: "📅";
    font-size: 1rem;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary-color);
}

.news-text {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.news-actions {
    margin-top: auto;
}

.news-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.news-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(129, 178, 154, 0.3);
}

.news-btn-success {
    border-color: #28a745;
    color: #28a745;
}

.news-btn-success:hover {
    background: #28a745;
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.3);
}

/*-------------------------------------
  MODERN ABOUT SECTION (Présentation)
-------------------------------------*/
.about-modern {
    padding: 80px 0;
    background: #ffffff;
}

.about-modern .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-modern .lead {
    font-size: 1.2rem;
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.about-features {
    margin-top: 60px;
}

.about-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--link-hover-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: block;
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-icon {
    transform: scale(1.1);
    color: var(--link-hover-color);
}

.about-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.about-feature-text {
    color: var(--p-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/*-------------------------------------
  MODERN CONTACT SECTION
-------------------------------------*/
.contact-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-modern .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.contact-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: block;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    color: var(--link-hover-color);
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.contact-info {
    font-size: 1.1rem;
    color: var(--p-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-btn {
    background: var(--custom-btn-bg-color);
    color: var(--white-color);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 122, 95, 0.3);
    color: var(--white-color);
}

.contact-hours {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(129, 178, 154, 0.1);
}

.contact-hours h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-hours p {
    margin-bottom: 8px;
    color: var(--p-color);
}

.contact-hours .text-muted {
    font-size: 0.9rem;
}

/*-------------------------------------
  MODERN DONATION SECTION (Don)
-------------------------------------*/
.donation-modern {
    padding: 80px 0;
    background: #ffffff;
}

.donation-modern .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.donation-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.donation-intro {
    font-size: 1.2rem;
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.donation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.donation-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.donation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform 0.3s ease;
}

.donation-card:nth-child(1)::before {
    background: #dc3545;
}

.donation-card:nth-child(2)::before {
    background: var(--primary-color);
}

.donation-card:nth-child(3)::before {
    background: #28a745;
}

.donation-card:hover::before {
    transform: scaleX(1);
}

.donation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.donation-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: block;
    transition: all 0.3s ease;
}

.donation-card:nth-child(1) .donation-icon {
    color: #dc3545;
}

.donation-card:nth-child(2) .donation-icon {
    color: var(--primary-color);
}

.donation-card:nth-child(3) .donation-icon {
    color: #28a745;
}

.donation-card:hover .donation-icon {
    transform: scale(1.1);
}

.donation-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.donation-text {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.donation-btn {
    background: var(--custom-btn-bg-color);
    color: var(--white-color);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.donation-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 122, 95, 0.3);
    color: var(--white-color);
}

.donation-info {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid rgba(129, 178, 154, 0.1);
}

.donation-info .alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid rgba(129, 178, 154, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.donation-info .alert h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donation-info .alert h5::before {
    content: "ℹ️";
    font-size: 1.2rem;
}

.donation-info .alert ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-info .alert li {
    margin-bottom: 8px;
    color: var(--p-color);
    font-size: 0.95rem;
}

.donation-info .alert strong {
    color: var(--secondary-color);
}

.donation-disclaimer {
    text-align: center;
    margin-top: 20px;
}

.donation-disclaimer .text-muted {
    font-size: 0.9rem;
    color: var(--p-color);
}

/*-------------------------------------
  ANIMATIONS AND UTILITIES - ENHANCED
-------------------------------------*/

/* Animation d'entrée progressive */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-up.delay-1 {
    animation-delay: 0.1s;
}
.fade-in-up.delay-2 {
    animation-delay: 0.2s;
}
.fade-in-up.delay-3 {
    animation-delay: 0.3s;
}
.fade-in-up.delay-4 {
    animation-delay: 0.4s;
}
.fade-in-up.delay-5 {
    animation-delay: 0.5s;
}
.fade-in-up.delay-6 {
    animation-delay: 0.6s;
}

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

/* Animation d'apparition depuis la gauche */
.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-left.delay-1 {
    animation-delay: 0.2s;
}
.fade-in-left.delay-2 {
    animation-delay: 0.4s;
}
.fade-in-left.delay-3 {
    animation-delay: 0.6s;
}

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

/* Animation d'apparition depuis la droite */
.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-right.delay-1 {
    animation-delay: 0.2s;
}
.fade-in-right.delay-2 {
    animation-delay: 0.4s;
}
.fade-in-right.delay-3 {
    animation-delay: 0.6s;
}

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

/* Animation d'apparition avec scale */
.fade-in-scale {
    animation: fadeInScale 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-scale.delay-1 {
    animation-delay: 0.1s;
}
.fade-in-scale.delay-2 {
    animation-delay: 0.2s;
}
.fade-in-scale.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Effets de survol améliorés */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hover-rotate {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-rotate:hover {
    transform: rotate(2deg);
}

/* Animation de pulsation pour les éléments importants */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation de brillance pour les boutons */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.shine-effect:hover::before {
    left: 100%;
}

/* Animation de typage pour les titres */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--link-hover-color);
    white-space: nowrap;
    animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: var(--link-hover-color);
    }
}

/* Animation de comptage */
.counter {
    font-weight: bold;
    color: var(--primary-color);
}

/* Effets de parallaxe subtils */
.parallax-subtle {
    transform: translateZ(0);
    transition: transform 0.3s ease-out;
}

/* Animation de flottement */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Effets de bordure animée */
.border-animated {
    position: relative;
    overflow: hidden;
}

.border-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    transition: left 0.3s ease;
}

.border-animated:hover::before {
    left: 100%;
}

/* Réduction des animations pour les utilisateurs qui le préfèrent */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale {
        animation: none;
    }
}

.transition-smooth {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*-------------------------------------
  RESPONSIVE DESIGN FOR MODERN SECTIONS
-------------------------------------*/
@media (max-width: 768px) {
    .news-modern,
    .about-modern,
    .contact-modern,
    .donation-modern {
        padding: 60px 0;
    }

    .news-modern h2,
    .about-modern h2,
    .contact-modern h2,
    .donation-modern h2 {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-card-body {
        padding: 24px;
    }

    .about-features {
        margin-top: 40px;
    }

    .about-feature-card {
        padding: 32px 20px;
        margin-bottom: 24px;
    }

    .contact-cards,
    .donation-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card,
    .donation-card {
        padding: 32px 24px;
    }

    .donation-info {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .news-modern,
    .about-modern,
    .contact-modern,
    .donation-modern {
        padding: 40px 0;
    }

    .news-modern h2,
    .about-modern h2,
    .contact-modern h2,
    .donation-modern h2 {
        font-size: 1.75rem;
    }

    .news-card-body,
    .about-feature-card,
    .contact-card,
    .donation-card {
        padding: 20px;
    }

    .donation-info {
        padding: 24px 20px;
    }
}

/*-------------------------------------
  INTERACTIVE STATISTICS SECTION
-------------------------------------*/
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(107, 155, 138, 0.03) 0%,
        rgba(212, 175, 55, 0.02) 100%
    );
    pointer-events: none;
}

.stats-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stats-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(129, 178, 154, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stats-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(61, 64, 91, 0.15);
    border-color: rgba(129, 178, 154, 0.2);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(129, 178, 154, 0.4);
}

.stats-icon i {
    font-size: 2.2rem;
    color: var(--white-color);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card:hover .stats-number {
    transform: scale(1.1);
}

.stats-label {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.stats-description {
    color: var(--p-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Interactive Visual Elements */
.stats-interactive-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.visual-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(129, 178, 154, 0.1);
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.visual-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.visual-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Growth Chart */
.growth-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 200px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 60px;
}

.bar-fill {
    width: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--accent-color) 100%
    );
    border-radius: 8px 8px 0 0;
    height: 0;
    transition: height 1.5s ease;
    transition-delay: var(--delay, 0.5s);
    position: relative;
    overflow: hidden;
}

.bar-fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.chart-bar[data-value="85"] .bar-fill {
    height: 85%;
}

.chart-bar[data-value="92"] .bar-fill {
    height: 92%;
}

.chart-bar[data-value="100"] .bar-fill {
    height: 100%;
}

.bar-label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--p-color);
}

.visual-description {
    color: var(--p-color);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
}

/* Satisfaction Score */
.satisfaction-score {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
}

.score-display {
    margin-bottom: 20px;
}

.score-number {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-right: 12px;
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
}

.score-stars i {
    font-size: 1.5rem;
    color: var(--accent-color);
    animation: starTwinkle 2s infinite;
}

.score-stars i:nth-child(1) {
    animation-delay: 0s;
}
.score-stars i:nth-child(2) {
    animation-delay: 0.2s;
}
.score-stars i:nth-child(3) {
    animation-delay: 0.4s;
}
.score-stars i:nth-child(4) {
    animation-delay: 0.6s;
}
.score-stars i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.score-description {
    color: var(--p-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animated Counter Effect */
.stats-number.counting {
    animation: countPulse 0.3s ease;
}

@keyframes countPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Interactive Hover Effects */
.stats-card.interactive:hover .stats-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: scale(1.1) rotate(5deg) translateY(0);
    }
    40% {
        transform: scale(1.1) rotate(5deg) translateY(-10px);
    }
    60% {
        transform: scale(1.1) rotate(5deg) translateY(-5px);
    }
}

/* Responsive Design for Statistics */
@media (max-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }

    .stats-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
    }

    .stats-card {
        padding: 30px 20px;
    }

    .stats-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .stats-icon i {
        font-size: 1.8rem;
    }

    .stats-number {
        font-size: 2.8rem;
    }

    .stats-label {
        font-size: 1.2rem;
    }

    .stats-interactive-visual {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .visual-card {
        padding: 30px 24px;
    }

    .growth-chart {
        height: 150px;
        padding: 15px;
    }

    .chart-bar {
        width: 50px;
    }

    .bar-fill {
        width: 30px;
    }

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

    .score-stars i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-card {
        padding: 24px 20px;
    }

    .visual-card {
        padding: 24px 20px;
    }

    .growth-chart {
        height: 120px;
        padding: 10px;
    }

    .chart-bar {
        width: 40px;
    }

    .bar-fill {
        width: 25px;
    }
}

/*-------------------------------------
  ABOUT PAGE SPECIFIC STYLES
-------------------------------------*/

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-icon {
    position: absolute;
    left: 11px;
    top: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 155, 138, 0.3);
}

.timeline-icon i {
    font-size: 1rem;
    color: var(--white-color);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(107, 155, 138, 0.4);
}

.timeline-item:hover::before {
    background: var(--primary-color);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-content {
    background: var(--white-color);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(129, 178, 154, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--p-color);
    line-height: 1.6;
    margin: 0;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white-color);
    padding: 40px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    transform: translateY(0);
}

.about-image-overlay h4 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
}

.about-image-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.mission-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(129, 178, 154, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.mission-title {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mission-text {
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.mission-vision-points,
.mission-objectives {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vision-point,
.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--p-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vision-point i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.objective-item strong {
    color: var(--secondary-color);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.value-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(129, 178, 154, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.value-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-description {
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.value-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Leaders Section */
.leaders-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.leader-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(129, 178, 154, 0.1);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.leader-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.1);
}

.leader-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    backdrop-filter: blur(10px);
}

.leader-content {
    padding: 32px;
}

.leader-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.leader-role {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.leader-description {
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.leader-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tag {
    background: rgba(129, 178, 154, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(129, 178, 154, 0.2);
}

/* Team Section */
.team-section {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(129, 178, 154, 0.1);
}

.team-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--p-color);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
}

.team-description {
    color: var(--p-color);
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Spiritual Message Section */
.spiritual-message-section {
    padding: 80px 0;
    background: #ffffff;
}

.spiritual-quote-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.spiritual-quote-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.quote-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.spiritual-quote {
    margin: 0;
}

.spiritual-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: var(--font-weight-medium);
}

.spiritual-quote footer {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.spiritual-content {
    max-width: 800px;
    margin: 0 auto;
}

.spiritual-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 24px;
    text-align: center;
}

.spiritual-text p {
    color: var(--p-color);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.scripture-reference {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.scripture-reference h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
}

.scripture-text {
    font-style: italic;
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.scripture-reference cite {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.spiritual-invitation {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--accent-color) 100%
    );
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--white-color);
    margin-top: 40px;
}

.spiritual-invitation h4 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
}

.spiritual-invitation p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.invitation-cta .custom-btn {
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
}

.invitation-cta .custom-btn:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
    padding: 80px 0;
    color: var(--white-color);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--white-color);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .custom-btn {
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
}

.cta-buttons .custom-btn:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.cta-buttons .custom-border-btn {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.cta-buttons .custom-border-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-item::before {
        left: 11px;
    }

    .timeline-date {
        position: relative;
        left: 0;
        margin-bottom: 12px;
        display: inline-block;
    }

    .values-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mission-card,
    .value-card {
        padding: 32px 24px;
    }

    .leader-content {
        padding: 24px;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .spiritual-quote-card {
        padding: 32px 24px;
    }

    .spiritual-quote p {
        font-size: 1.2rem;
    }

    .scripture-reference {
        padding: 24px;
    }

    .spiritual-invitation {
        padding: 32px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 50px;
    }

    .mission-card,
    .value-card,
    .leader-content {
        padding: 20px;
    }

    .team-section {
        padding: 24px;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .spiritual-quote-card {
        padding: 24px 20px;
    }

    .spiritual-quote p {
        font-size: 1.1rem;
    }

    .spiritual-invitation {
        padding: 24px 20px;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

/*-------------------------------------
  ENSEIGNEMENTS & SPIRITUALITÉ SECTION
-------------------------------------*/

/* Catechism Section */
.catechism-section {
    padding: 80px 0;
    background: #ffffff;
}

.catechism-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.catechism-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.catechism-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--p-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.catechism-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.catechism-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.catechism-card:hover::before {
    transform: scaleX(1);
}

.catechism-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.catechism-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.catechism-card:hover .catechism-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(129, 178, 154, 0.4);
}

.catechism-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.catechism-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.catechism-description {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.catechism-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(129, 178, 154, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(129, 178, 154, 0.1);
}

.catechism-level {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.catechism-duration {
    color: var(--p-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.catechism-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.catechism-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: #5a8476;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 178, 154, 0.3);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid rgba(129, 178, 154, 0.3);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Prayers Section */
.prayers-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.prayers-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.prayers-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.prayers-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--p-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.prayer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.prayer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform 0.3s ease;
}

.prayer-card:nth-child(1)::before {
    background: #f39c12;
}

.prayer-card:nth-child(2)::before {
    background: #3498db;
}

.prayer-card:nth-child(3)::before {
    background: #e91e63;
}

.prayer-card:nth-child(4)::before {
    background: #9c27b0;
}

.prayer-card:hover::before {
    transform: scaleX(1);
}

.prayer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.prayer-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.prayer-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sunrise {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
    color: white;
}

.moon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.heart {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
}

.star {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    color: white;
}

.prayer-card:hover .prayer-icon {
    transform: scale(1.1) rotate(5deg);
}

.prayer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.prayer-text {
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-style: italic;
}

.prayer-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.audio-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.audio-btn:hover {
    background: #5a8476;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(129, 178, 154, 0.3);
}

.prayer-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.prayer-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(129, 178, 154, 0.3);
}

/* Novenas Section */
.novenas-section {
    padding: 80px 0;
    background: #ffffff;
}

.novenas-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.novenas-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.novenas-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--p-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.novena-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
}

.novena-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.novena-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.novena-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.novena-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 178, 154, 0.1) 0%,
        rgba(61, 64, 91, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.novena-card:hover .novena-overlay {
    opacity: 1;
}

.novena-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.novena-content {
    padding: 32px;
}

.novena-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.novena-period {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.novena-period i {
    font-size: 1rem;
}

.novena-description {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.novena-progress {
    margin-bottom: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--p-color);
}

.progress-bar {
    height: 8px;
    background: rgba(129, 178, 154, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 4px;
    transition: width 0.8s ease;
}

.novena-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.novena-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Meditations Section */
.meditations-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.meditations-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.meditations-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.meditations-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--p-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.meditations-timeline {
    margin-bottom: 60px;
}

.meditation-day {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
}

.meditation-day::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.meditation-day:hover::before {
    transform: scaleX(1);
}

.meditation-day:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.meditation-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(129, 178, 154, 0.1);
}

.day-number {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.day-date {
    color: var(--p-color);
    font-size: 1rem;
    font-weight: 500;
}

.meditation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.meditation-verse {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.meditation-verse i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.meditation-verse span {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
}

.meditation-text {
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.meditation-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.meditation-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.meditation-btn.secondary-btn {
    background: rgba(129, 178, 154, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(129, 178, 154, 0.3);
}

.meditation-btn.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.meditations-cta {
    margin-top: 40px;
}

.meditation-subscribe-card {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--accent-color) 100%
    );
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
}

.subscribe-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.subscribe-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
    align-items: center;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.subscribe-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.subscribe-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Special Messages Section */
.special-messages-section {
    padding: 80px 0;
    background: #ffffff;
}

.special-messages-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.special-messages-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.special-messages-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--p-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.season-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(129, 178, 154, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.season-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform 0.3s ease;
}

.season-card:nth-child(1)::before {
    background: #ff6b6b;
}

.season-card:nth-child(2)::before {
    background: #4ecdc4;
}

.season-card:nth-child(3)::before {
    background: #45b7d1;
}

.season-card:nth-child(4)::before {
    background: #96ceb4;
}

.season-card:hover::before {
    transform: scaleX(1);
}

.season-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.12);
    border-color: rgba(129, 178, 154, 0.2);
}

.season-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.season-card:nth-child(1) .season-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.season-card:nth-child(2) .season-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.season-card:nth-child(3) .season-icon {
    background: linear-gradient(135deg, #45b7d1, #3498db);
}

.season-card:nth-child(4) .season-icon {
    background: linear-gradient(135deg, #96ceb4, #7fcdcd);
}

.season-card:hover .season-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.season-icon i {
    font-size: 2rem;
    color: white;
}

.season-header {
    margin-bottom: 20px;
}

.season-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.season-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.season-description {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.season-themes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.theme-tag {
    background: rgba(129, 178, 154, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(129, 178, 154, 0.2);
}

.season-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.season-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.season-btn.primary-btn {
    background: var(--primary-color);
    color: white;
}

.season-btn.primary-btn:hover {
    background: #5a8476;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 178, 154, 0.3);
    color: white;
}

.season-btn.secondary-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid rgba(129, 178, 154, 0.3);
}

.season-btn.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Spiritual Support Section */
.spiritual-support {
    margin-top: 40px;
}

.support-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(129, 178, 154, 0.2);
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.support-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.support-text {
    color: var(--p-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.support-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-btn.primary-btn {
    background: var(--primary-color);
    color: white;
}

.support-btn.primary-btn:hover {
    background: #5a8476;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 178, 154, 0.3);
    color: white;
}

.support-btn.secondary-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid rgba(129, 178, 154, 0.3);
}

.support-btn.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Design for Enseignements & Spiritualité */
@media (max-width: 768px) {
    .catechism-section,
    .prayers-section,
    .novenas-section,
    .meditations-section,
    .special-messages-section {
        padding: 60px 0;
    }

    .catechism-section .section-title,
    .prayers-section .section-title,
    .novenas-section .section-title,
    .meditations-section .section-title,
    .special-messages-section .section-title {
        font-size: 2rem;
    }

    .catechism-grid,
    .novenas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .catechism-card,
    .novena-content {
        padding: 30px 24px;
    }

    .prayer-card {
        padding: 24px;
    }

    .prayer-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .meditation-day {
        padding: 24px;
    }

    .meditation-date {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .meditation-actions,
    .catechism-actions,
    .prayer-actions,
    .novena-actions,
    .season-actions,
    .support-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .meditation-subscribe-card {
        padding: 30px 24px;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 16px;
    }

    .season-card {
        padding: 30px 24px;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-card {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .catechism-section,
    .prayers-section,
    .novenas-section,
    .meditations-section,
    .special-messages-section {
        padding: 40px 0;
    }

    .catechism-section .section-title,
    .prayers-section .section-title,
    .novenas-section .section-title,
    .meditations-section .section-title,
    .special-messages-section .section-title {
        font-size: 1.75rem;
    }

    .catechism-card,
    .prayer-card,
    .novena-content,
    .meditation-day,
    .season-card,
    .support-card {
        padding: 20px;
    }

    .meditation-subscribe-card {
        padding: 24px 20px;
    }

    .catechism-meta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .season-themes {
        justify-content: center;
    }
}

/*-------------------------------------
  CATECHISM FILTERS AND PAGINATION
-------------------------------------*/

/* Catechism Filters */
.catechism-filters {
    margin-bottom: 40px;
    text-align: center;
}

.filter-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary-color);
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(129, 178, 154, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(129, 178, 154, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px dashed rgba(129, 178, 154, 0.3);
    margin: 20px 0;
}

.empty-state i {
    font-size: 4rem;
    color: rgba(129, 178, 154, 0.4);
    margin-bottom: 20px;
    display: block;
}

.empty-state h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--p-color);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-state .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 178, 154, 0.3);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .page-item {
    margin: 0;
}

.pagination-wrapper .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(129, 178, 154, 0.3);
    background: #ffffff;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link:hover {
    background: rgba(129, 178, 154, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(129, 178, 154, 0.3);
}

.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
    background: #f8f9fa;
}

.pagination-wrapper .page-link i {
    font-size: 1rem;
}

/* CTA Message */
.cta-message {
    margin-top: 40px;
    text-align: center;
    padding: 24px;
    background: linear-gradient(
        135deg,
        rgba(129, 178, 154, 0.08) 0%,
        rgba(212, 175, 55, 0.05) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(129, 178, 154, 0.15);
}

.cta-text {
    color: var(--p-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-text i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Badge Styles */
.badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.bg-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: white;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f39c12, #f1c40f) !important;
    color: white;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white;
}

.badge.bg-primary {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #8fb5a5
    ) !important;
    color: white;
}

.badge.bg-secondary {
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        #34495e
    ) !important;
    color: white;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 0;
    background: transparent;
    font-size: 0.95rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.4);
    padding: 0;
}

/* Responsive Design for Filters */
@media (max-width: 768px) {
    .filter-group {
        padding: 10px 16px;
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .empty-state {
        padding: 40px 24px;
    }

    .empty-state i {
        font-size: 3rem;
    }

    .cta-message {
        padding: 20px 16px;
    }

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

    .pagination-wrapper .page-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .filter-group {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .pagination-wrapper .pagination {
        gap: 6px;
    }

    .pagination-wrapper .page-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}
