/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.footer-phone,
.products-filter a {

    border-radius: 50px!important;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--heading-font);
}

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    height:auto;
}

.custom-logo{
    width:auto;
    height:70px;
}

body{
    font-family: var(--body-font);
    background: #000;
    color: var(--text-color);
    padding-top: 100px;
    overflow-x:hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* LOGO */

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}
.custom-logo{
    max-height: 70px;
    max-width: 70px;
}


/* MENU */

.menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.menu li a:hover {
    color: var(--primary-color);
}


/* BUTTON */

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-color);
}


/* HERO */

.hero {
    position: relative;
    height: 100vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.6),
            rgba(0,0,0,0.7)
        ),
        var(--hero_image);

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}


.hero-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}


.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}


.hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}


.hero-buttons {
    display: flex;
    gap: 20px;
}


.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}


.btn-secondary:hover {
    background: #fff;
    color: #000;
}



/* GLOBAL SECTIONS */

.section-padding {
    padding: 120px 0;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}


.section-title h2 {
    font-size: 42px;
}


/* SERVICES SECTION */

.services {
    position: relative;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* CARD */

.service-card {
    position: relative;

    background: var(--secondary-color);

    padding: 50px 40px;

    border-radius: 25px;

    overflow: hidden;

    transition: 0.4s;

    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;

    min-height: 380px;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(214,40,40,0.4);
}


/* ICON */

.service-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(214,40,40,0.1);

    border-radius: 50%;

    font-size: 38px;

    color: var(--primary-color);

    margin-bottom: 30px;

    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.08);

    background: var(--primary-color);
    color: #fff;
}

/* TITLE */

.service-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}

/* TEXT */

.service-card p {
    color: rgba(255,255,255,0.75);

    line-height: 1.9;

    margin-bottom: 30px;

    flex: 1;
}


/* LINK */

.service-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 14px 24px;

    background: var(--primary-color);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    transition: 0.3s;
}

.service-card a:hover {
    transform: translateX(5px);
}

/* ABOUT SECTION */

.about {
    position: relative;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 80px;
    align-items: center;
}


/* IMAGE */

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}


.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;

    transition: 0.5s;
}


.about-image:hover img {
    transform: scale(1.05);
}


/* CONTENT */

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
}


.about-content h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 25px 0;
    color: #fff;
}


.about-content p {
    margin-bottom: 25px;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    font-size: 17px;
}


/* FEATURES */

.about-features {
    margin: 20px 0 40px;
}


.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}


.about-feature span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-color);

    border-radius: 50%;

    color: #fff;
    font-weight: bold;
}


.about-feature p {
    margin: 0;
}


/* ACTIONS */

.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


/* PRODUCTS MODERN */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}


.swiper-slide {
    height: auto;
    display: flex;
}


.product-card-modern {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
}


.product-card-modern:hover {
    transform: translateY(-10px);
}


.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;

    transition: 0.5s;
}

.product-card-modern:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


.product-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

.product-actions {
    margin-top: auto;
}

.product-description {
    color: #777;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: 48px;
}


.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin-bottom: 20px;
}


.btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    background: var(--primary-color);
    color: #fff;

    padding: 14px 20px;

    border-radius: 50px;

    text-decoration: none;

    transition: 0.3s;
}


.btn-whatsapp:hover {
    opacity: 0.9;
}

/* PRODUCT FILTER */

.products-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}


.products-filter a {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}


.products-filter a:hover {
    background: var(--primary-color);
}

/* =========================
   CTA PREMIUM SECTION
========================= */

.home-cta {
    position: relative;
    overflow: hidden;

    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0;
}


/* BACKGROUND */

.cta-video,
.cta-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}


/* VIDEO */

.cta-video {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    transform: scale(1.05);
}


/* IMAGE */

.cta-image {

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    transform: scale(1.03);
}


/* OVERLAY */

.home-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.55)
        );

    z-index: 2;
}


/* CONTENT */

.cta-content {

    position: relative;

    z-index: 3;

    text-align: center;

    max-width: 850px;
}


/* TITLE */

.cta-content h2 {

    font-size: 64px;

    line-height: 1.15;

    margin-bottom: 25px;

    color: #fff;
}


/* TEXT */

.cta-content p {

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255,255,255,0.85);

    margin-bottom: 40px;
}


/* PAGE HERO */

.page-hero {
    padding: 180px 0 100px;
    background: var(--secondary-color);
    text-align: center;
}


.page-hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

/* DYNAMIC HERO */

.dynamic-hero {
    background-size: cover;
    background-position: center;
}


/* SERVICES PAGE */

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}


/* CONTACT PAGE */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
}


.contact-info,
.contact-form-wrapper {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
}


.contact-item {
    margin-bottom: 30px;
}


.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}


.contact-item a {
    color: #fff;
    text-decoration: none;
}


.contact-item a:hover {
    color: var(--primary-color);
}


/* FORM */

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background: #1b1b1b;
    color: #fff;
    border-radius: 5px;
}


.contact-form-wrapper input[type="submit"] {
    background: var(--primary-color);
    cursor: pointer;
    transition: 0.3s;
}


.contact-form-wrapper input[type="submit"]:hover {
    background: var(--primary-color);
}


/* MAP */

.map-section iframe {
    filter: grayscale(100%);
}


/* PREMIUM FOOTER */

.site-footer {

    position: relative;

    padding: 120px 0 40px;

    background:
        linear-gradient(
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.92)
        ),
        url('../images/footer-bg.jpg');

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* GRID */

.footer-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 50px;

    align-items: start;
}


/* TITLES */

.footer-column h3,
.footer-logo {

    color: #fff;

    margin-bottom: 30px;
}


.footer-logo {
    font-size: 38px;
}


/* TEXT */

.footer-column p,
.footer-column a {

    color: rgba(255,255,255,0.75);

    line-height: 1.9;

    text-decoration: none;

    transition: 0.3s;
}


.footer-column a:hover {
    color: var(--primary-color);
}


/* PHONE */

.footer-phone {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 25px;

    padding: 14px 24px;

    background: var(--primary-color);

    border-radius: 50px;

    color: #fff !important;

    transition: 0.3s;
}


.footer-phone:hover {
    transform: translateY(-3px);
}


/* HOURS */

.footer-hours {
    margin-top: 35px;
}


/* MENU */

.footer-menu {
    list-style: none;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 15px;
}


/* SOCIALS */

.footer-socials {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


.footer-socials a {

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: #fff;

    font-size: 18px;

    transition: 0.3s;
}


.footer-socials a:hover {

    background: var(--primary-color);

    transform: translateY(-5px);
}


/* MAP */

.footer-column iframe {

    border-radius: 20px;

    overflow: hidden;

    filter: grayscale(100%);

    transition: 0.4s;
}


.footer-column iframe:hover {
    filter: grayscale(0%);
}


/* BOTTOM */

.footer-bottom {

    margin-top: 80px;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-bottom-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


/* LEGAL */

.footer-legal-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}


.footer-legal-links a {

    color: rgba(255,255,255,0.65);
}


/* FLOATING WHATSAPP */

.floating-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #fff;

    font-size: 28px;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    transition: 0.3s;
}


.floating-whatsapp:hover {

    transform: scale(1.1);
}

/* FIX OVERLAY QUI CACHE LE FOOTER BOTTOM */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* ou ce que tu veux */
    z-index: 1;
}

/* SÉCURITÉ : tout le contenu du footer passe AU-DESSUS */
.site-footer .footer-grid,
.site-footer .footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-bottom {
    display: block;
    width: 100%;
}

/* RESPONSIVE */

  /* Menu mobile*/
  .mobile-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

@media(max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        text-align: center;
        height: auto;
        padding: 150px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .grid-3,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

     .home-cta{
        min-height: 550px;
        padding: 80px 0;
    }

    .cta-content h2{
        font-size: 38px;
    }

    .cta-content p{
        font-size: 17px;
    }

    .cta-video{
        object-position: center;
    }

    .cta-image{
        background-position: center;
    }
}

@media(max-width: 992px) {

     .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 450px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .mobile-toggle {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 30px;
        display: none;
    }

    .main-menu.active {
        display: block;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-cta a{
       display: none;
    }

}

/* =========================
   FOOTER BOTTOM OPTIMISÉ
========================= */

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
}

/* Contenu aligné proprement */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* COPYRIGHT */
.footer-bottom-content p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.6;
}

/* LIENS LÉGAUX */
.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* liens propres */
.footer-legal-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;   /* enlève le soulignement */
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

/* hover discret mais premium */
.footer-legal-links a:hover {
    color: var(--primary-color);
}

/* petit effet underline animé (propre UX moderne) */
.footer-legal-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    transition: 0.3s;
}

.footer-legal-links a:hover::after {
    width: 100%;
}


/* =========================
   HEADER MOBILE FIX
========================= */

.mobile-phone{
    display: none;
}

/* TABLETTE + MOBILE */
@media(max-width: 992px){

    /* navbar horizontale */
    .navbar{

        flex-direction: row !important;

        justify-content: space-between;

        align-items: center;

        gap: 10px;

        position: relative;
    }

    /* logo */
    .logo{
        flex: 1;
    }

    .custom-logo{
        max-height: 55px;
        width: auto;
    }

    /* téléphone mobile */
    .mobile-phone{

        display: flex;

        justify-content: center;

        flex: 2;
    }

    .mobile-phone a{

        color: #fff;

        text-decoration: none;

        font-size: 15px;

        font-weight: 600;

        display: flex;

        align-items: center;

        gap: 8px;
    }

    .mobile-phone i{
        color: var(--primary-color);
    }

    /* bouton commander caché */
    .header-cta{
        display: none;
    }

    /* menu burger */
    .mobile-toggle{

        display: flex !important;

        align-items: center;

        justify-content: center;

        width: 42px;

        height: 42px;

        border-radius: 50%;

        background: rgba(255,255,255,0.08);

        color: #fff;

        font-size: 22px;
    }

    /* menu déroulant */
    .main-menu{

        position: absolute;

        top: calc(100% + 15px);

        left: 0;

        width: 100%;

        background: #111;

        padding: 25px;

        border-radius: 20px;

        display: none;

        z-index: 999;
    }

    .main-menu.active{
        display: block;
    }

    .main-menu ul{
        flex-direction: column;
        gap: 20px;
    }

}


/* PETITS ÉCRANS */
@media(max-width: 480px){

    .mobile-phone a{
        font-size: 12px;
    }

    .custom-logo{
        max-height: 45px;
    }

}

/* =========================
   SERVICES PAGE PREMIUM
========================= */

/* HEADER */

.services-page-header{

    max-width: 850px;

    margin: 0 auto 80px;

    text-align: center;
}

.services-page-header h2{

    font-size: 56px;

    line-height: 1.2;

    margin: 25px 0;

    color: #fff;
}

.services-page-header p{

    color: rgba(255,255,255,0.75);

    line-height: 1.9;

    font-size: 18px;
}


/* GRID */

.services-page-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 35px;
}


/* CARD */

.service-page-card{

    background: var(--secondary-color);

    border-radius: 25px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.4s;

    display: flex;

    flex-direction: column;

    position: relative;
}

.service-page-card:hover{

    transform: translateY(-12px);

    border-color: rgba(214,40,40,0.35);

    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}


/* IMAGE */

.service-page-image{

    overflow: hidden;

    position: relative;
}

.service-page-image img{

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: 0.6s;
}

.service-page-card:hover .service-page-image img{

    transform: scale(1.08);
}


/* CONTENT */

.service-page-content{

    padding: 35px;

    display: flex;

    flex-direction: column;

    flex: 1;
}

.service-page-content h3{

    font-size: 30px;

    margin-bottom: 18px;

    color: #fff;
}

.service-page-content p{

    color: rgba(255,255,255,0.72);

    line-height: 1.9;

    margin-bottom: 30px;

    flex: 1;
}


/* BUTTON */

.service-page-content a{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    padding: 14px 24px;

    border-radius: 50px;

    background: var(--primary-color);

    color: #fff;

    text-decoration: none;

    transition: 0.3s;
}

.service-page-content a:hover{

    transform: translateX(6px);

    background: #b71c1c;
}


/* RESPONSIVE */

@media(max-width: 992px){

    .services-page-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .services-page-header h2{
        font-size: 42px;
    }

}


@media(max-width: 768px){

    .services-page-grid{
        grid-template-columns: 1fr;
    }

    .services-page-header{
        margin-bottom: 60px;
    }

    .services-page-header h2{
        font-size: 34px;
    }

    .service-page-content{
        padding: 25px;
    }

}



/* =========================
   PREMIUM SHOP PAGE
========================= */

.products-page{
    position: relative;
}

/* HERO */
.page-hero.dynamic-hero{
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center;

    text-align: center;

    position: relative;
}

.page-hero.dynamic-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
}

.page-hero .container{
    position: relative;
    z-index: 2;
}

.page-hero h1{
    font-size: 72px;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero p{
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 18px;
}

/* =========================
   FILTERS
========================= */

.products-filter{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 15px;

    margin-bottom: 70px;
}

.products-filter a{

    padding: 14px 24px;

    background: var(--secondary-color);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50px;

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;
}

.products-filter a:hover{

    background: var(--primary-color);

    border-color: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);
}

/* =========================
   GRID
========================= */

.products-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 35px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card-modern{

    position: relative;

    background: var(--secondary-color);

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.4s;

    display: flex;
    flex-direction: column;

    height: 100%;
}

.product-card-modern:hover{

    transform: translateY(-10px);

    border-color: rgba(214,40,40,0.35);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

/* IMAGE */

.product-image{

    position: relative;

    overflow: hidden;
}

.product-image img{

    width: 100%;

    height: 320px;

    object-fit: cover;

    transition: 0.6s;
}

.product-card-modern:hover .product-image img{
    transform: scale(1.08);
}

/* OVERLAY */

.product-image::after{

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,0.15)
    );
}

/* CONTENT */

.product-content{

    padding: 28px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

/* TITLE */

.product-content h3{

    font-size: 24px;

    color: #fff;

    margin-bottom: 14px;

    line-height: 1.3;
}

/* DESCRIPTION */

.product-description{

    color: rgba(255,255,255,0.7);

    line-height: 1.8;

    margin-bottom: 25px;

    flex: 1;

    font-size: 15px;
}

/* PRICE */

.product-price{

    font-size: 28px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 25px;
}

/* BUTTON */

.btn-whatsapp{

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px 24px;

    background: var(--primary-color);

    border-radius: 50px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.btn-whatsapp:hover{

    background: #b71c1c;

    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1200px){

    .products-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width: 992px){

    .products-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .page-hero h1{
        font-size: 52px;
    }

}

@media(max-width: 768px){

    .products-grid{
        grid-template-columns: 1fr;
    }

    .page-hero{
        min-height: 320px;
    }

    .page-hero h1{
        font-size: 38px;
    }

    .page-hero p{
        font-size: 16px;
    }

    .product-image img{
        height: 260px;
    }

    .products-filter{
        justify-content: flex-start;
    }

}


/* =========================
   SINGLE SERVICE PREMIUM
========================= */

/* HERO */

.single-service-hero{

    min-height: 520px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    position: relative;
}

.single-service-hero-content{

    max-width: 760px;

    position: relative;
    z-index: 2;
}

.single-service-hero h1{

    font-size: 72px;

    line-height: 1.1;

    margin: 25px 0;

    color: #fff;
}

.single-service-hero p{

    color: rgba(255,255,255,0.82);

    font-size: 18px;

    line-height: 1.9;
}


/* LAYOUT */

.single-service-grid{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}


/* IMAGE */

.single-service-image{

    position: sticky;

    top: 120px;

    border-radius: 24px;

    overflow: hidden;
}

.single-service-image img{

    width: 100%;

    height: 700px;

    object-fit: cover;

    transition: 0.5s;
}

.single-service-image:hover img{
    transform: scale(1.04);
}


/* CONTENT */

.single-service-content{

    display: flex;

    flex-direction: column;

    gap: 35px;
}


/* CARD */

.single-service-card{

    background: var(--secondary-color);

    padding: 45px;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.06);
}

.single-service-card h2{

    font-size: 38px;

    margin-bottom: 25px;

    color: #fff;
}


/* TEXT */

.single-service-text{

    color: rgba(255,255,255,0.78);

    line-height: 2;

    font-size: 17px;
}

.single-service-text p{
    margin-bottom: 20px;
}


/* FEATURES */

.single-service-features{

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.single-feature{

    display: flex;

    gap: 20px;

    background: var(--secondary-color);

    padding: 30px;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.05);

    transition: 0.3s;
}

.single-feature:hover{

    transform: translateY(-5px);

    border-color: rgba(214,40,40,0.35);
}

.single-feature span{

    width: 60px;
    height: 60px;

    min-width: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(214,40,40,0.15);

    color: var(--primary-color);

    font-size: 22px;
}

.single-feature h4{

    font-size: 22px;

    margin-bottom: 10px;

    color: #fff;
}

.single-feature p{

    color: rgba(255,255,255,0.72);

    line-height: 1.8;
}


/* ACTIONS */

.single-service-actions{

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}


/* RESPONSIVE */

@media(max-width: 992px){

    .single-service-grid{
        grid-template-columns: 1fr;
    }

    .single-service-image{
        position: relative;
        top: 0;
    }

    .single-service-image img{
        height: 450px;
    }

    .single-service-hero h1{
        font-size: 52px;
    }

}

@media(max-width: 768px){

    .single-service-hero{

        min-height: 420px;

        text-align: center;
    }

    .single-service-hero h1{
        font-size: 38px;
    }

    .single-service-card{
        padding: 30px;
    }

    .single-service-card h2{
        font-size: 30px;
    }

    .single-feature{
        flex-direction: column;
    }

    .single-service-actions{
        flex-direction: column;
    }

     .contact-form-card,
    .contact-info-card{

        padding: 30px;
    }

    .contact-form-card h2,
    .contact-info-card h2{

        font-size: 28px;
    }

}


/* ====================================
   PREMIUM CONTACT PAGE
==================================== */

.contact-page-wrapper{

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 40px;

    align-items: start;
}


/* LEFT CARD */

.contact-info-card{

    background: var(--secondary-color);

    padding: 45px;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.06);

    position: sticky;

    top: 120px;
}


.contact-info-card h2{

    font-size: 40px;

    margin: 20px 0;
}


.contact-intro{

    color: rgba(255,255,255,0.7);

    line-height: 1.9;

    margin-bottom: 40px;
}


/* ITEM */

.contact-info-item{

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 35px;
}


/* ICON */

.contact-icon{

    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(214,40,40,0.12);

    color: var(--primary-color);

    font-size: 22px;

    transition: 0.3s;
}


.contact-info-item:hover .contact-icon{

    transform: translateY(-5px);

    background: var(--primary-color);

    color: #fff;
}


.contact-info-item h3{

    font-size: 18px;

    margin-bottom: 8px;
}


.contact-info-item a,
.contact-info-item p{

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    line-height: 1.8;

    transition: 0.3s;
}


.contact-info-item a:hover{
    color: var(--primary-color);
}


/* RIGHT CARD */

.contact-form-card{

    background: var(--secondary-color);

    padding: 60px;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.06);
}


.contact-form-card h2{

    font-size: 42px;

    margin: 20px 0;
}


.form-text{

    color: rgba(255,255,255,0.7);

    line-height: 1.9;

    margin-bottom: 40px;
}


/* CONTACT FORM 7 */

.contact-form-premium input,
.contact-form-premium textarea{

    width: 100%;

    background: #1a1a1a;

    border: 1px solid rgba(255,255,255,0.08);

    padding: 18px 22px;

    border-radius: 18px;

    color: #fff;

    margin-bottom: 25px;

    font-size: 15px;

    transition: 0.3s;
}


.contact-form-premium input:focus,
.contact-form-premium textarea:focus{

    border-color: var(--primary-color);

    outline: none;
}


.contact-form-premium textarea{

    min-height: 180px;

    resize: none;
}


/* BUTTON */

.contact-form-premium input[type="submit"]{

    background: var(--primary-color);

    border: none;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.contact-form-premium input[type="submit"]:hover{

    background: #a4161a;

    transform: translateY(-3px);
}


/* MAP */

.premium-map{

    padding-bottom: 0;
}


.premium-map iframe{

    width: 100%;

    height: 500px;

    border: none;

    filter: grayscale(100%);

    transition: 0.4s;
}


.premium-map iframe:hover{

    filter: grayscale(0%);
}


/* RESPONSIVE */

@media(max-width: 992px){

    .contact-page-wrapper{

        grid-template-columns: 1fr;
    }

    .contact-info-card{

        position: relative;

        top: 0;
    }

    .contact-form-card{

        padding: 40px;
    }

    .contact-form-card h2,
    .contact-info-card h2{

        font-size: 34px;
    }

}


/* =========================
   INDEX / BLOG
========================= */

.posts-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.post-card{

    background: var(--secondary-color);

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.4s;
}

.post-card:hover{

    transform: translateY(-8px);

    border-color: rgba(214,40,40,0.4);
}

.post-image img{

    width: 100%;

    height: 260px;

    object-fit: cover;
}

.post-content{

    padding: 25px;
}

.post-content h2{

    margin-bottom: 15px;

    font-size: 24px;
}

.post-content h2 a{

    color: #fff;

    text-decoration: none;
}

.post-content p{

    color: rgba(255,255,255,0.7);

    line-height: 1.8;

    margin-bottom: 25px;
}

.no-content{

    text-align: center;
}

/* ====================================
   PREMIUM 404 PAGE
==================================== */

.error-404-premium{

    position: relative;

    min-height: calc(100vh - 100px);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
    radial-gradient(
        circle at top,
        rgba(214,40,40,0.18),
        transparent 40%
    ),
    #050505;
}


/* BACKGROUND GLOW */

.error-404-premium::before{

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(214,40,40,0.22),
        transparent 70%
    );

    top: -200px;
    right: -200px;

    filter: blur(60px);

    z-index: 1;
}


/* CONTENT */

.error-404-content{

    position: relative;

    z-index: 2;

    max-width: 850px;

    text-align: center;

    padding: 80px 40px;
}


/* 404 NUMBER */

.error-404-number{

    font-size: 220px;

    line-height: 1;

    font-weight: 800;

    color: rgba(255,255,255,0.05);

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    user-select: none;

    pointer-events: none;
}


/* ICON */

.error-404-icon{

    width: 120px;
    height: 120px;

    margin: 0 auto 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background:
    rgba(214,40,40,0.12);

    border: 1px solid rgba(214,40,40,0.25);

    color: var(--primary-color);

    font-size: 42px;

    backdrop-filter: blur(10px);
}


/* TITLE */

.error-404-content h1{

    font-size: 64px;

    line-height: 1.2;

    margin-bottom: 25px;

    color: #fff;

    position: relative;
}


/* TEXT */

.error-404-content p{

    max-width: 650px;

    margin: 0 auto 40px;

    color: rgba(255,255,255,0.72);

    line-height: 1.9;

    font-size: 18px;

    position: relative;
}


/* ACTIONS */

.error-404-actions{

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

    position: relative;
}


/* SECOND BUTTON */

.error-404-secondary{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 28px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.12);

    color: #fff;

    text-decoration: none;

    transition: 0.3s;
}

.error-404-secondary:hover{

    background: rgba(255,255,255,0.08);

    transform: translateY(-3px);
}


/* RESPONSIVE */

@media(max-width: 768px){

    .error-404-number{

        font-size: 120px;
    }

    .error-404-content{

        padding: 60px 20px;
    }

    .error-404-content h1{

        font-size: 38px;
    }

    .error-404-content p{

        font-size: 16px;
    }

    .error-404-icon{

        width: 90px;
        height: 90px;

        font-size: 34px;
    }

    .error-404-actions{

        flex-direction: column;
    }

}


/* =========================
   ACTIVE MENU PREMIUM
========================= */

/* lien menu */

.menu li a,
.main-menu li a{

    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 8px 0;

    color: rgba(255,255,255,0.82);

    transition: 0.3s;
}


/* hover */

.menu li a:hover,
.main-menu li a:hover{

    color: #fff;
}


/* ligne animée */

.menu li a::after,
.main-menu li a::after{

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;

    height: 2px;

    background: var(--primary-color);

    border-radius: 20px;

    transition: 0.35s ease;
}


/* hover animation */

.menu li a:hover::after,
.main-menu li a:hover::after{

    width: 100%;
}


/* =========================
   ACTIVE CURRENT PAGE
========================= */

.menu li.current-menu-item > a,
.menu li.current_page_item > a,
.menu li.current-menu-parent > a,

.main-menu li.current-menu-item > a,
.main-menu li.current_page_item > a,
.main-menu li.current-menu-parent > a{

    color: #fff;

    font-weight: 600;
}


/* active underline */

.menu li.current-menu-item > a::after,
.menu li.current_page_item > a::after,
.menu li.current-menu-parent > a::after,

.main-menu li.current-menu-item > a::after,
.main-menu li.current_page_item > a::after,
.main-menu li.current-menu-parent > a::after{

    width: 100%;
}


/* glow premium */

.menu li.current-menu-item > a,
.main-menu li.current-menu-item > a{

    text-shadow:
    0 0 10px rgba(214,40,40,0.4);
}

.menu li.current-menu-item > a{
    color: var(--primary-color);
}