/* ===== VARIABLES ===== */
:root {
    --primary-blue: #0047AB;
    --dark-blue: #003080;
    --light-blue: #1E90FF;
    --secondary-yellow: #FFD700;
    --dark-yellow: #FFA500;
    --accent-red: #DC143C;
    --accent-green: #228B22;
    --dark-green: #006400;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #CCCCCC;
    --dark-gray: #333333;
    --black: #000000;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-blue);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}



.logo-section {
    flex: 0 0 auto;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.slogan-section {
    flex: 1;
    text-align: center;
}

.site-slogan {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
}

.site-slogan::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: var(--secondary-yellow);
    border-radius: 2px;
}

.partners-section {
    flex: 0 0 auto;
    text-align: center;
}


.partners-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}


.header-nav {
    background: var(--white);
    padding: 0;
    position: relative;
    border-bottom: 2px solid var(--light-gray);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-menu li a i {
    font-size: 1rem;
    margin-right: 6px;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--secondary-yellow);
    transition: left 0.4s ease;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    left: 0;
}

.nav-menu li a:hover {
    background: var(--light-gray);
    color: var(--dark-blue);
}

.nav-menu li a.active {
    background: var(--primary-blue);
    color: var(--white);
}

.header-bottom {
    background: var(--light-gray);
    padding: 10px 0;
    border-top: 1px solid var(--gray);
}

.nav-bottom-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-bottom-menu li a {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-bottom-menu li a i {
    font-size: 0.85rem;
    margin-right: 5px;
}

.nav-bottom-menu li a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 71, 171, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
    animation: zoomSlide 8s ease-in-out infinite;
}

@keyframes zoomSlide {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 71, 171, 0.85) 0%, 
        rgba(0, 48, 128, 0.75) 50%,
        rgba(34, 139, 34, 0.7) 100%);
    z-index: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-yellow);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.slider-prev:active,
.slider-next:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 215, 0, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary-yellow);
    width: 35px;
    border-radius: 10px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-yellow);
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-slogan {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-yellow);
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.hero-slogan::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-yellow);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
}

.btn-lg {
    padding: 20px 45px;
    font-size: 1.2rem;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--secondary-yellow);
    font-size: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* ===== SECTIONS ===== */
.section {
    padding: 150px 0;
    position: relative;
}

.section-light {
    background: var(--light-gray);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
}

.section-dark .testimonials-grid p{
color: var(--black);
}

.section-gradient {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        var(--accent-green) 50%, 
        var(--dark-blue) 100%);
    color: var(--white);
}

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

.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-dark .section-badge,
.section-gradient .section-badge {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: var(--secondary-yellow);
    margin: 0 auto;
    border-radius: 3px;
}

/* ===== CONTENT CARDS ===== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.content-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-blue);
}

.card-blue::before {
    background: var(--primary-blue);
}

.card-yellow::before {
    background: var(--secondary-yellow);
}

.card-green::before {
    background: var(--accent-green);
}

.card-red::before {
    background: var(--accent-red);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 71, 171, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 71, 171, 0.3);
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 800;
}

.bible-verse {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-green);
    margin: 15px 0;
    font-weight: 600;
}

.bible-ref {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 700;
}

/* ===== VERSE BANNER ===== */
.verse-banner {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.verse-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.verse-banner i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.verse-banner p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.verse-banner span {
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* ===== OBJECTIVES GRID ===== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.objective-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.objective-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-yellow);
    transform: translateY(-5px);
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.objective-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-yellow);
}

/* ===== OFFERS GRID ===== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.offer-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.offer-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.offer-icon.yellow {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--dark-yellow));
}

.offer-icon.green {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
}

.offer-icon.red {
    background: linear-gradient(135deg, var(--accent-red), #8B0000);
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.offer-card ul {
    list-style: none;
}

.offer-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
}

.offer-card ul li:last-child {
    border-bottom: none;
}

.offer-card ul li i {
    color: var(--accent-green);
    margin-right: 10px;
}

.governance-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.governance-banner i {
    font-size: 3rem;
    color: var(--secondary-yellow);
}

.governance-banner p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== ADVANTAGES LIST ===== */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-item {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--secondary-yellow);
    transition: all 0.4s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-yellow);
    opacity: 0.5;
    min-width: 80px;
}

.advantage-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-yellow);
}

.advantage-content h3 i {
    margin-right: 10px;
}

/* ===== TARGET GRID ===== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.target-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-blue);
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 71, 171, 0.3);
    border-top-color: var(--secondary-yellow);
}

.target-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.target-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* ===== MEMBERSHIP CARDS ===== */
.membership-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.membership-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
}

.membership-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.membership-card.featured {
    border: 3px solid var(--secondary-yellow);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-red);
    color: var(--white);
    padding: 5px 40px;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 85%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.membership-card .card-header {
    padding: 25px 30px 15px;
    text-align: center;
    color: var(--white);
}

.bronze .card-header {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.silver .card-header {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.gold .card-header {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--dark-yellow));
}

.platinum .card-header {
    background: linear-gradient(135deg, #E5E4E2, #A8A8A8);
}

.diamond .card-header {
    background: linear-gradient(135deg, #B9F2FF, #00CED1);
}

.membership-card .card-header i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.membership-card .card-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    display: inline-block;
}

.membership-card .card-body {
    padding: 30px;
    color: var(--dark-gray);
    flex: 1;
}

.membership-card .card-body ul {
    margin-top: 0;
}

.membership-card .card-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.membership-card .card-body ul li:last-child {
    border-bottom: none;
}

.membership-card .card-body ul li i {
    color: var(--accent-green);
    margin-right: 10px;
}

.membership-card .btn-card{
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-left: 30px;
     transform: translateY(-5px) scale(1.05);
}

.membership-card .btn-card a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.membership-card .btn-card:hover{
    background-color: var(--accent-green);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}
/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-yellow);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}


/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #fff;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    margin: 20px auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #DC143C;
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #0047AB, #003080);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-logo {
    width: 70px;
    height: 70px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: #0047AB;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.modal-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-slogan {
    color: #FFD700;
    font-style: italic;
    font-size: 1rem;
}

/* Form Sections */
.adhesion-form {
    padding: 25px;
}

.form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #0047AB;
}

.blue-section { border-left-color: #0047AB; }
.green-section { border-left-color: #228B22; }
.yellow-section { border-left-color: #FFD700; }
.red-section { border-left-color: #DC143C; }
.purple-section { border-left-color: #8B008B; }
.brown-section { border-left-color: #8B4513; }

.section-title-form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-number {
    width: 32px;
    height: 32px;
    background: #0047AB;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.section-number.green { background: #228B22; }
.section-number.yellow { background: #FFD700; color: #333; }
.section-number.red { background: #DC143C; }
.section-number.purple { background: #8B008B; }
.section-number.brown { background: #8B4513; }

.section-title-form h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.form-row {
    margin-bottom: 15px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group label i {
    margin-right: 6px;
    color: #0047AB;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0047AB;
    box-shadow: 0 0 10px rgba(0, 71, 171, 0.2);
    outline: none;
}

/* Radio & Checkbox */
.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.radio-label:hover, .checkbox-label:hover {
    border-color: #0047AB;
    background: #f0f5ff;
}

.radio-label input, .checkbox-label input {
    display: none;
}

.radio-custom, .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-custom {
    border-radius: 5px;
}

.radio-label input:checked ~ .radio-custom,
.checkbox-label input:checked ~ .checkbox-custom {
    border-color: #0047AB;
    background: #0047AB;
}

.radio-custom::after, .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.checkbox-custom::after {
    content: '✓';
    font-size: 12px;
    color: #fff;
    border-radius: 0;
    background: transparent;
}

.radio-label input:checked ~ .radio-custom::after,
.checkbox-label input:checked ~ .checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Card Selection */
.card-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.card-option {
    cursor: pointer;
}

.card-option input {
    display: none;
}

.card-option-content {
    padding: 15px 10px;
    border: 3px solid #ddd;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.card-option-content i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
}

.card-option-content .card-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.card-option-content .card-price {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.bronze-opt .card-option-content { border-color: #CD7F32; }
.bronze-opt .card-option-content i { color: #CD7F32; }
.silver-opt .card-option-content { border-color: #C0C0C0; }
.silver-opt .card-option-content i { color: #808080; }
.gold-opt .card-option-content { border-color: #FFD700; }
.gold-opt .card-option-content i { color: #FFA500; }
.platinum-opt .card-option-content { border-color: #E5E4E2; }
.platinum-opt .card-option-content i { color: #A8A8A8; }
.diamond-opt .card-option-content { border-color: #B9F2FF; }
.diamond-opt .card-option-content i { color: #00CED1; }

.card-option input:checked + .card-option-content {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.bronze-opt input:checked + .card-option-content { background: linear-gradient(135deg, #CD7F32, #8B4513); color: #fff; }
.silver-opt input:checked + .card-option-content { background: linear-gradient(135deg, #C0C0C0, #808080); color: #fff; }
.gold-opt input:checked + .card-option-content { background: linear-gradient(135deg, #FFD700, #FFA500); color: #333; }
.platinum-opt input:checked + .card-option-content { background: linear-gradient(135deg, #E5E4E2, #A8A8A8); color: #333; }
.diamond-opt input:checked + .card-option-content { background: linear-gradient(135deg, #B9F2FF, #00CED1); color: #333; }

.card-option input:checked + .card-option-content i,
.card-option input:checked + .card-option-content .card-price { color: inherit; }

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-content img {
    height: 28px;
    width: auto;
}

.payment-content i {
    font-size: 1.5rem;
    color: #0047AB;
}

.payment-option input:checked + .payment-content {
    border-color: #0047AB;
    background: #f0f5ff;
    box-shadow: 0 3px 10px rgba(0, 71, 171, 0.2);
}

/* Accept Terms */
.accept-terms {
    background: #fff3cd;
    border-color: #ffc107 !important;
    font-weight: 600;
}

/* Submit Button */
.form-actions {
    text-align: center;
    padding-top: 10px;
}

.btn-submit {
    background: linear-gradient(135deg, #0047AB, #003080);
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0047AB;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn-submit i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .adhesion-form {
        padding: 15px;
    }
    
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }
    
    .card-selection {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .radio-group, .checkbox-group {
        flex-direction: column;
    }
    
    .btn-submit {
        width: 100%;
        padding: 14px 30px;
    }
}

/* ===== CONTACT - AMÉLIORATION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid var(--primary-blue);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 71, 171, 0.15);
    border-left-color: var(--secondary-yellow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 71, 171, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-yellow), var(--dark-yellow));
    color: var(--primary-blue);
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 800;
}

.contact-item p {
    margin: 5px 0;
    font-size: 1.05rem;
}

.contact-link {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-link::before {
    content: '→';
    font-size: 1.2rem;
    color: var(--secondary-yellow);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.contact-link:hover::before {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-blue);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--gray);
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 71, 171, 0.2);
    background: var(--white);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* ===== ALERTES - MESSAGES DE SUCCÈS/ERREUR ===== */
.alert {
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    animation: slideDown 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 5px solid #28a745;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-left: 5px solid #dc3545;
    color: #721c24;
}

.alert-error i {
    color: #dc3545;
}

/* Animation pulse pour les alertes */
.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    animation: pulse 2s ease infinite;
}

.alert-success::before {
    background: #28a745;
}

.alert-error::before {
    background: #dc3545;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== BOUTON CONTACT ===== */
.contact-form .btn-primary {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.15rem;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.contact-form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 35px;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 25px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.15rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    .alert {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .alert i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-link::before {
        display: none;
    }
    
    .alert {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--black));
    color: var(--white);
    position: relative;
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-yellow);
    font-size: 1.3rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-verse {
    font-style: italic;
    color: var(--secondary-yellow);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-yellow);
    padding-left: 10px;
}

.footer-links i {
    margin-right: 8px;
    color: var(--secondary-yellow);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-yellow);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-tagline {
    color: var(--secondary-yellow);
    font-style: italic;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-blue);
    color: var(--secondary-yellow);
    transform: translateY(-5px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-top {
        padding: 12px 0;
    }

    .header-top-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo {
        height: 50px;
    }

    .slogan-section {
        text-align: center;
    }

    .site-slogan {
        font-size: 1rem;
    }

    .site-slogan::after {
        width: 100%;
        left: 50%;
    }

    .partners-section {
        width: 100%;
    }

    .partners-label {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .partners-logos {
        justify-content: center;
        gap: 10px;
    }

    .partner-logo {
        height: 30px;
        max-width: 60px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li a {
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-bottom-menu {
        gap: 10px;
        font-size: 0.85rem;
    }

    .nav-bottom-menu li a {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .slider-nav {
        padding: 0 15px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-dots {
        bottom: 60px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .dot.active {
        width: 25px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

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

    .advantage-number {
        min-width: auto;
    }
}