

/* Service Provisions Specific Styles */

  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #ff6b35;
    --secondary: #f7931e;
    --accent: #ffb347;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --purple: #9b59b6;
    --teal: #1abc9c;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ====== HEADER STYLES (Same as webservice) ====== */
header {
    width: 90%;
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    margin: 0 auto;
    padding: 0 30px;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1003;
}

.logo img {
    width: 180px;
    height: 140px;
    border-radius: 0%;
    background: transparent;
}

header ul {
    display: flex;
    gap: 25px;
}

header ul li {
    list-style: none;
    text-transform: capitalize;
}

header ul a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 5px;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header ul i {
    margin-right: 5px;
}

header ul a i {
    margin-left: 5px;
}

header ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: rgb(126, 24, 24);
    transition: width 0.6s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
header ul li ul {
    position: absolute;
    top: 100px;
    background: rgba(255, 255, 255, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
}

header ul li ul li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    width: 100%;
}

header ul li ul li a {
    padding: 12px 20px;
    color: #000;
}

header ul li ul li:hover {
    background: rgb(100, 98, 98);
    color: #fff;
    padding: 10px;
}

header ul li ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #fff;
    transition: width 0.6s ease;
}

header ul li.show ul,
header ul li:hover ul {
    display: flex;
}

header ul li:hover ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ====== HERO SECTION ====== */
.hero-services {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}



.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.6) 0%, rgba(247, 147, 30, 0.5) 50%, rgba(155, 89, 182, 0.4) 100%);
    z-index: 1;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: #000;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.hero-services::before {
    display: none;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons span {
    position: absolute;
    color: rgba(255, 255, 255, 0.45);
    font-size: 2rem;
    animation: float 15s infinite linear;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(102, 126, 234, 0.4);
}

.floating-icons span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icons span:nth-child(2) { top: 60%; right: 15%; animation-delay: -3s; }
.floating-icons span:nth-child(3) { bottom: 30%; left: 20%; animation-delay: -6s; }
.floating-icons span:nth-child(4) { top: 40%; right: 30%; animation-delay: -9s; }
.floating-icons span:nth-child(5) { bottom: 20%; right: 10%; animation-delay: -12s; }
.floating-icons span:nth-child(6) { top: 70%; left: 40%; animation-delay: -15s; }
.floating-icons span:nth-child(7) { top: 15%; right: 25%; animation-delay: -18s; }
.floating-icons span:nth-child(8) { bottom: 40%; left: 60%; animation-delay: -21s; }
.floating-icons span:nth-child(9) { top: 35%; left: 5%; animation-delay: -24s; }
.floating-icons span:nth-child(10) { bottom: 15%; right: 35%; animation-delay: -27s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

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

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

/* ====== BUTTONS ====== */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

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

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    color: white;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    to { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 40px rgba(102, 126, 234, 0.6); }
}

/* ====== TRUST INDICATORS ====== */
.trust-section {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-section::after {
    content: '⭐ SATISFACTION GARANTIE ⭐';
    position: absolute;
    top: 20px;
    right: -100px;
    background: var(--warning);
    color: white;
    padding: 8px 120px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 3;
}

.trust-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.5rem;
    animation: pulse-icon 2s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.trust-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background: linear-gradient(135deg, #fff5f0 0%, #ffeee6 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,107,53,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(247,147,30,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(155,89,182,0.06)"/></svg>') repeat;
    animation: sparkleMove 15s linear infinite;
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

#services {
    scroll-margin-top: 150px;
}

.service-card {
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::after {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 25px 25px 0 0;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
    border-color: var(--primary);
}



.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.1rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.service-features i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.service-price {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    border: 2px solid rgba(255, 107, 53, 0.3);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.service-price::after {
    content: '🔥 POPULAIRE';
    position: absolute;
    top: -8px;
    right: -25px;
    background: var(--warning);
    color: white;
    padding: 2px 30px;
    font-size: 10px;
    transform: rotate(25deg);
    font-weight: 600;
}

/* ====== FOOTER STYLES (Same as webservice) ====== */
.footer {
    background: #fff;
    color: #000;
    padding: 40px 5% 35px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 240px;
}

.footer h3,
.footer h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
}

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

.footer-contact a {
    text-decoration: none;
    color: var(--primary);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
}

.footer-contact .mail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-contact .whatsapp,
.footer-contact .mailing,
.footer-contact .location {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-socials a img {
    width: 30px;
    height: 30px;
}

.footer .logo img {
    width: 160px;
    height: 130px;
}

.newsletter {
    background: #111;
    padding: 25px 20px;
    text-align: center;
    border-radius: 6px;
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    outline: none;
    width: 260px;
    max-width: 100%;
}

.newsletter-form button {
    padding: 12px 24px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.7);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 991px) {
    header {
        padding: 10px 20px;
        width: 95%;
        border-radius: 40px 40px 0 0;
    }

    .logo img {
        width: 120px;
        height: 100px;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.5);
        flex-direction: column;
        padding: 15px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: flex !important;
    }

    .menu li {
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-services {
        min-height: 70vh;
    }
    
    .hero-services .container {
        padding-top: 120px !important;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
        margin-top: 0;
    }
    
    .hero-services h1 {
        font-size: 2rem !important;
    }
    
    .hero-services .lead {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        min-height: 400px;
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 576px) {
    header {
        padding: 8px 15px;
        width: 98%;
        top: 10px;
        border-radius: 40px 40px 0 0;
    }
    
    .logo img {
        width: 100px;
        height: 80px;
    }
    
    .hamburger {
        gap: 3px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .menu {
        padding: 10px;
    }
    
    .hero-services h1 {
        font-size: 1.75rem !important;
    }
    
    .floating-icons span {
        font-size: 1.5rem !important;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}