/* 1*/

:root {
    --primary: #1f6f4a;   /* vert foncé*/
    --secondary: #d9c9a3; /* beige */
    --accent: #4ba3c3;    /* blue */
    --success: #00ba55;   /* vert clair */
    --dark: #2b2f33;
    --ecommerce: #9c4dcc;
    --power-red: #E63946;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);

}


/* Menu */


.navbar-nav .nav-item .dropdown-menu {
    background: linear-gradient(135deg, #1f6f4a 0%, #2b8a5e 100%);  /* même que le menu principal */
}
.navbar-nav .nav-item .dropdown-item {
    color: white; /* texte blanc */
}
.navbar-nav .nav-item .dropdown-item:hover {
    background-color: #2c2c2c; /* hover légèrement plus clair */
}



/* Section */


.section-title2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3rem;
   /* text-align: center;*/
    position: relative;
}



/* Resources Section */
.resources-section {
    /*padding: 100px 0;*/
    background: white;
    position: relative;
}

.section-title-tlk {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title-tlk::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.resource-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px 20px 0 0;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--success));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.resource-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--power-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: #F94144;
    transform: translateX(5px);
}

/* Sign Up Section */
.signup-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2b8a5e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 163, 195, 0.15) 0%, rgba(0, 186, 85, 0.1) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.signup-content {
    position: relative;
    z-index: 2;
}

.signup-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.signup-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.signup-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.signup-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.signup-features li i {
    color: #a8e6cf;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.signup-form {
    /*background: rgba(255, 255, 255, 0.1);*/
    background: var(--accent);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control-signup {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.form-control-signup::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-signup:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    color: white;
}


.btn-develope {
    background: var(--power-red);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-signup {
    background: var(--power-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #F94144;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
}

/* Footer */
.tlk-footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 0;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand span {
    display: inline-block;
}

.footer-brand .t {
    color: #a8e6cf;
}

.footer-brand .l {
    color: #c2e6f2;
}

.footer-brand .k {
    color: #a8e6cf;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--power-red);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
   /* margin-top: 3rem;*/
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-tlk {
        font-size: 2rem;
    }

    .signup-title {
        font-size: 2rem;
    }

    .signup-form {
        padding: 25px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/*fin */
/*Section */



.container-xxl {
    max-width: 1200px;
}

.tlk-logo {
    font-size: 4rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.tlk-logo span {
    display: inline-block;
    position: relative;
}

.tlk-logo .t {
    color: var(--primary);
}

.tlk-logo .l {
    color: var(--accent);
}

.tlk-logo .k {
    color: var(--success);
}

.tlk-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
    border-radius: 2px;
}

.heart-icon {
    color: #ff6b6b;
    font-size: 2rem;
    margin: 0 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.1);
    }

    10% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.tile-box {
    background: #ffffff;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
}

/* Bords arrondis avec effet de vague */
.tile-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
    border-radius: 25px 25px 0 0;
}

/* Effet de bordure courbée en bas */
.tile-box::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    filter: blur(5px);
    z-index: -1;
    transition: all 0.4s ease;
}

.tile-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
}

.tile-box:hover::after {
    bottom: -10px;
    width: 90%;
    left: 5%;
    height: 20px;
    filter: blur(8px);
}

.tile-box i {
    font-size: 52px;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tile-box:hover i {
    transform: scale(1.15) rotate(5deg);
    border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
}

.tile-box h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.tile-box h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25%;
    width: 50%;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.tile-box:hover h5::after {
    width: 80%;
    left: 10%;
    opacity: 0.6;
}

.tile-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Couleurs différentes avec dégradés courbés */
.bg-transport {
    background-color: #00ba55;
    color: white;
}

.bg-transport i {
    color: #a8e6cf;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-transport p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-logistics {
    background: linear-gradient(145deg, #4ba3c3 0%, #6bb8d4 100%);
    color: white;
}

.bg-logistics i {
    color: #c2e6f2;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-logistics .contour-icon {
    color: #c2e6f2;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-logistics p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-kourier {
    background: linear-gradient(145deg, #d9c9a3 0%, #e5d8bb 100%);
    color: #2b2f33;
}

.bg-kourier i {
    color: #8b7c5a;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-kourier p {
    color: #555;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(31, 111, 74, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.about-text {
    position: relative;
    z-index: 1;
}

.badge {
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* Section message central avec bords arrondis */
.central-message {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-left: 8px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.central-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(31, 111, 74, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.central-message::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: rgba(75, 163, 195, 0.05);
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 768px) {
    .tlk-logo {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tile-box {
        margin-bottom: 2rem;
        border-radius: 20px;
    }

    .tile-box:hover {
        border-radius: 25px;
    }

    .central-message {
        padding: 25px;
        border-radius: 20px;
    }
}

.icon-center {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Styles pour la nouvelle section Services */
.service-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.service-item {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
    border-radius: 25px 25px 0 0;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
}

.service-item img {
    border-radius: 15px;
    transition: all 0.4s ease;
    width: 100%;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.service-item h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.service-item:hover h4::after {
    width: 100%;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-slide {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-slide i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-slide:hover {
    color: var(--accent);
}

.btn-slide:hover i {
    transform: translateX(5px);
}

.service-section .text-secondary {
    color: var(--primary) !important;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-section h1 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.service-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
    border-radius: 2px;
}

.svg-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    transform: translateZ(15px);
}

.tile-box:hover .svg-container {
    transform: scale(1.15) rotate(5deg) translateZ(25px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.9);
}

.truck-icon-3d {
    color: #a8e6cf;
    width: 56px;
    height: 56px;
}

.warehouse-svg {
    color: #c2e6f2;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.tile-box:hover .warehouse-svg {
    color: #ffffff;
}

/*1-*/
/* Style pour le bouton En savoir plus - Version Rouge Énergique */
.btn-slide {
    color: #E63946;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.btn-slide:hover {
    color: #F94144;
    transform: translateX(5px);
}

.btn-slide i {
    margin-right: 8px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-slide:hover i {
    transform: translateX(8px);
    color: #F94144;
}

/* Effet de soulignement dynamique */
.btn-slide::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E63946, #F94144);
    transition: width 0.3s ease;
}

.btn-slide:hover::after {
    width: 100%;
}

/* fin 1*/

/* 2*/
.btn-slide {
    color: #E63946;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid #E63946;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.btn-slide:hover {
    background-color: #E63946;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-slide i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* fin 2*/

/*3*/
.btn-slide {
    background: linear-gradient(135deg, #E63946, #F8961E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.btn-slide:hover {
    background: linear-gradient(135deg, #F94144, #F3722C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(5px);
}

.btn-slide i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* fin 3*/
/*4**/

.btn-slide {
    color: #7209B7;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-slide:hover {
    color: #560BAD;
    transform: translateX(5px);
}

.btn-slide i {
    margin-right: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7209B7, #560BAD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-slide:hover i {
    transform: translateX(8px);
}

/* fin 4*/

/* section Head*/


/* Header Styles */
.tlk-header {
    background: linear-gradient(135deg, #1f6f4a 0%, #2b8a5e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tlk-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 163, 195, 0.1) 0%, rgba(0, 186, 85, 0.05) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.navbar-tlk {
    padding: 1rem 0;
    background: transparent !important;
}

.navbar-brand-tlk {
    font-size: 2rem;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
}

.navbar-brand-tlk span {
    display: inline-block;
}

.navbar-brand-tlk .t {
    color: #a8e6cf;
}

.navbar-brand-tlk .l {
    color: #c2e6f2;
}

.navbar-brand-tlk .k {
    color: #a8e6cf;
}

.nav-link-tlk {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-tlk:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link-tlk.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.btn-tlk-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-tlk-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-tlk-primary {
    background: var(--power-red);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-tlk-primary:hover {
    background: #F94144;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    color: white;
    position: relative;
}


.hero-section {
    background-image: url('../img/tlk-prestige2.jpg'); /* Remplace par le vrai chemin */
    background-size: cover;       /* L'image couvre toute la section */
    background-position: center;  /* Centrer l'image */
    background-repeat: no-repeat; /* Ne pas répéter l'image */
    position: relative;           /* Pour que les éléments flottants restent relatifs */
    padding: 80px 0;              /* Ajuste l'espace si nécessaire */
    color: #fff;                  /* Pour que le texte soit lisible si l'image est sombre */
}

/* Si tu veux ajouter un overlay sombre pour améliorer la lisibilité */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Opacité de l'overlay */
    z-index: 0;
}

.hero-section .container {
    position: relative; /* Assure que le contenu est au-dessus de l'overlay */
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* Quote Section */
.quote-section {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quote-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.quote-form {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
}

.form-group-tlk {
    margin-bottom: 1.5rem;
}

.form-label-tlk {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control-tlk {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-tlk:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(75, 163, 195, 0.1);
}

.quote-btn {
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 111, 74, 0.3);
}

/* Floating elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .quote-section {
        margin-top: 0;
        padding: 25px;
    }

    .navbar-tlk {
        padding: 0.5rem 0;
    }
}

/* fin section Head*/