/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: linear-gradient(135deg, #ff9d00 0%, #ff6600 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container .logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #ff9d00 0%, #ff6600 100%);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 2.5rem;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item .nav-link {
        font-size: 1.2rem;
        padding: 12px 20px;
        display: inline-block;
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .logo-container .logo {
        height: 40px;
    }
}



/* ACCUEIL */

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-image: url('ACCUEIL/BANNIERE.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(255, 102, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffaa22 0%, #ff7733 100%);
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 75vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 85vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 80%;
        max-width: 250px;
    }
}




/* AFTER ACCUEIL */
.cards-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff9d00, #ff6600);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.card-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.info-item i {
    color: #ff6600;
    width: 25px;
    font-size: 1rem;
    margin-right: 10px;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.card-btn:hover {
    background: linear-gradient(135deg, #ffaa22 0%, #ff7733 100%);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .cards-container {
        gap: 25px;
    }
    
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .cards-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        margin-bottom: 25px;
    }
    
    .card:last-child {
        margin-bottom: 0;
    }
}




/* THIAGA Section Styles */

/* THIAGA Section Styles */
.thiaga-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

#tg {
    color: #222;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.profile-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.1) 0%, rgba(161, 140, 209, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

.profile-card:hover::before {
    opacity: 1;
}

.profile-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray);
}

.info-item i {
    color: var(--primary);
    width: 25px;
    font-size: 1rem;
    margin-right: 10px;
    transition: var(--transition);
}

.profile-card:hover .info-item i {
    color: var(--secondary);
}

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

.profile-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(161, 140, 209, 0.4);
}

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

/* Responsive Styles */
@media (max-width: 1100px) {
    .cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .profile-image {
        height: 180px;
    }
    
    .profile-image img {
        width: 130px;
        height: 130px;
    }
}




/* APPEL VIDEO Section Styles */

/* Video Section Styles */
.video-section {
    max-width: 1200px;
    width: 100%;
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(233, 145, 145, 0.85);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(10, 10, 10, 0.2)
    z-index 1;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.2) 0%, rgba(37, 117, 252, 0.2) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.video-card:hover::before {
    opacity: 0.9;
}

.video-image {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.video-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-card:hover .video-image img {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.online-status {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background-color: #4caf50;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.online-status.busy {
    background-color: #f44336;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.whatsapp-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--white);
    background: rgba(97, 116, 201, 0.2);
    padding: 8px 15px;
    border-radius: 30px;
    transition: var(--transition);
}

.video-card:hover .whatsapp-info {
    background: rgba(11, 12, 11, 0.3);
}

.whatsapp-info i {
    color: #25d366;
    font-size: 1.3rem;
}

.video-description {
    color: rgba(68, 4, 4, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
}

.call-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
}

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

/* Responsive Styles */
@media (max-width: 1100px) {
    .cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .video-image {
        height: 160px;
    }
    
    .video-image img {
        width: 120px;
        height: 120px;
    }
    
    .card-content {
        padding: 20px;
    }
}




/* SECTION RENCONTRE */

/* Rencontre Section Styles */
.rencontre-section {
    max-width: 1200px;
    width: 100%;
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#rnt { color: #582828; 
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(221, 67, 67, 0.85);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.meet-card {
    background: rgba(60, 184, 233, 0.15); 
    backdrop-filter: blur(12px); 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(31, 110, 140, 0.2), 
        inset 0 0 20px rgba(255, 255, 255, 0.3); 
    transition: all 0.4s ease; 
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.25); 
    z-index: 1;
    transform: translateY(0);
}

.meet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.2) 0%, rgba(255, 157, 0, 0.2) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: var(--transition);
}

.meet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.meet-card:hover::before {
    opacity: 0.9;
}

.card-image {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(141, 61, 245, 0.9);
}

.info-item i {
    color: var(--accent);
    width: 25px;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: var(--transition);
}

.meet-card:hover .info-item i {
    color: var(--primary);
}

.match-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.match-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.match-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
}

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

.match-btn i {
    transition: var(--transition);
}

.match-btn:hover i {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
}




/* SECTION CONTACT */

/* Contact Section Styles */
.contact-section {
    width: 100%;
    max-width: 1200px;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.2) 0%, rgba(37, 117, 252, 0.2) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: var(--transition);
}

.contact-container:hover::before {
    opacity: 0.9;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(68, 26, 26, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
    color: #4ac6f7;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(73, 132, 243, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(108, 206, 16, 0.3);
    border-radius: 10px;
    background: rgba(65, 151, 125, 0.15);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 107, 139, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(151, 98, 98, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 43px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus + i,
.form-group textarea:focus + i,
.form-group select:focus + i {
    color: var(--primary);
}

.whatsapp-group {
    display: flex;
    gap: 10px;
}

.whatsapp-group select {
    flex: 0 0 120px;
    padding: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
}

.whatsapp-group input {
    flex: 1;
}

.submit-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 107, 139, 0.4);
}

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

.submit-btn i {
    transition: var(--transition);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .whatsapp-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-group select {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 12px 12px 40px;
    }
    
    .form-group i {
        top: 40px;
        left: 12px;
    }
}




/* PAIEMENT ABONNEMENT */

/* Payment Section Styles */
.payment-section {
    width: 100%;
    max-width: 1200px;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-container {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.payment-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.2) 0%, rgba(106, 17, 203, 0.2) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-container:hover::before {
    opacity: 0.9;
}

.payment-header {
    padding: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.payment-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.payment-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.payment-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(14, 19, 24, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 107, 139, 0.3);
}

.form-group input::placeholder {
    color: rgba(59, 53, 53, 0.6);
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 43px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus + i,
.form-group select:focus + i {
    color: var(--primary);
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    flex: 0 0 120px;
    padding: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
}

.phone-group input {
    flex: 1;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.method {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.8rem;
}

.method:hover {
    background: rgba(255, 255, 255, 0.25);
}

.method.active {
    background: rgba(207, 72, 72, 0.644)4;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-footer {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-selection h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.plans {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.plan-option {
    flex: 1;
    min-width: 150px;
}

.plan-option input {
    display: none;
}

.plan-content {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-option input:checked + .plan-content {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
}

.price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent);
}

.discount {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border: 2px solid rgba(177, 39, 39, 0.712);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 107, 139, 0.4);
}

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

.submit-btn i {
    transition: var(--transition);
}

.submit-btn:hover i {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 850px) {
    .payment-container {
        max-width: 600px;
    }
    
    .card-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .payment-header {
        padding: 20px;
    }
    
    .payment-header h2 {
        font-size: 2.2rem;
    }
    
    .payment-form {
        padding: 20px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .phone-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-group select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .payment-header h2 {
        font-size: 2rem;
    }
    
    .payment-header p {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 12px 12px 40px;
    }
    
    .form-group i {
        top: 40px;
        left: 12px;
    }
    
    .plans {
        flex-direction: column;
    }
}





/* Footer Styles */
.footer-section {
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: -1;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.footer-wave .shape-fill {
    fill: var(--dark);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 70px 40px 40px;
    border-radius: 20px 20px 0 0;
    box-shadow: var(--shadow);
}

.footer-col {
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    background: var(--accent);
    padding: 10px;
    box-shadow: 0 0 20px rgba(255, 157, 0, 0.3);
}

.footer-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
}

.footer-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

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

.footer-links li a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links li a i {
    color: var(--accent);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links li a:hover i {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

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

.footer-contact li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact li span {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact li:hover span {
    color: var(--white);
}

.footer-newsletter {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-form {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 139, 0.3);
}

.footer-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.footer-form input::placeholder {
    color: var(--gray);
}

.footer-form button {
    width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-form button:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 20px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-btn i {
    font-size: 1.8rem;
    color: var(--accent);
}

.app-btn div {
    display: flex;
    flex-direction: column;
}

.app-btn span {
    color: var(--gray);
    font-size: 0.8rem;
}

.app-btn strong {
    color: var(--white);
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(13, 13, 26, 0.95);
    padding: 20px 40px;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 30px 30px;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 50px 20px 20px;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
}
