/* style.css - Complete responsive styles with side menu */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f;
    color: #e5e7eb;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Side Menu Overlay */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Side Menu Drawer */
.side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0f0f1a 0%, #0a0a0f 100%);
    border-right: 1px solid rgba(232, 111, 44, 0.3);
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 30px 20px;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.side-menu.open {
    left: 0;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #e86f2c;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg);
}

/* Side Menu Logo */
.side-logo {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(232, 111, 44, 0.3);
}

.side-logo h2 {
    background: linear-gradient(135deg, #e86f2c, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.8rem;
}

/* Side Menu Navigation */
.side-nav {
    list-style: none;
    margin: 30px 0;
}

.side-nav li {
    margin: 5px 0;
}

.side-nav a {
    display: block;
    padding: 14px 20px;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.side-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(232,111,44,0.2), transparent);
    transition: width 0.3s;
}

.side-nav a:hover::before {
    width: 100%;
}

.side-nav a:hover {
    color: #e86f2c;
    padding-left: 30px;
}

.side-nav a i {
    width: 28px;
    margin-right: 12px;
    color: #e86f2c;
}

/* Side Menu Contact Info */
.side-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 111, 44, 0.3);
}

.side-contact p {
    margin: 12px 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.side-contact i {
    color: #e86f2c;
    width: 30px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 111, 44, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e86f2c, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

/* Menu Trigger Button */
.menu-trigger {
    background: none;
    border: none;
    color: #e86f2c;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s;
}

.menu-trigger:hover {
    transform: scale(1.1);
}

/* Desktop Navigation (hidden on mobile, visible on desktop) */
.desktop-nav {
    display: none;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e86f2c, #f39c12);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 111, 44, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #e86f2c;
    color: #e86f2c;
}

.btn-outline:hover {
    background: #e86f2c;
    color: white;
}

/* Page Header with Graphic Image */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.85), rgba(0,0,0,0.7));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #fff, #e86f2c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.page-header p {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Individual Page Header Backgrounds */
.header-home {
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-services {
    background-image: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-prestations {
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-tarifs {
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-boutique {
    background-image: url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-apropos {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-blog {
    background-image: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}
.header-contact {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #e86f2c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-sub {
    text-align: center;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    padding: 0 15px;
}

/* Cards Grid */
.services-grid, .products-grid, .blog-grid, .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* Category Styles */
.category-section {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    color: #e86f2c;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #e86f2c;
}

.prestations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card, .presta-item, .product-card, .blog-card, .team-card {
    background: #111118;
    border: 1px solid #1f2937;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s;
}

.service-card:hover, .presta-item:hover, .product-card:hover, .blog-card:hover, .team-card:hover {
    transform: translateY(-5px);
    border-color: #e86f2c;
    box-shadow: 0 15px 25px -10px rgba(232,111,44,0.2);
}

.service-card i, .presta-item i {
    font-size: 2rem;
    color: #e86f2c;
    margin-bottom: 15px;
}

.service-card h3, .presta-item h4, .product-card h3, .blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.badge {
    background: rgba(232, 111, 44, 0.15);
    color: #e86f2c;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

/* Price */
.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e86f2c;
    margin: 15px 0;
}

/* Guarantee */
.guarantee {
    background: linear-gradient(135deg, #111118, #1a1a2e);
    border: 1px solid rgba(232, 111, 44, 0.3);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    margin: 30px 0;
}

.guarantee h3 {
    font-size: 1.4rem;
    margin: 15px 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.pricing-card {
    background: #111118;
    border: 1px solid #1f2937;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
}

.pricing-card.featured {
    border-color: #e86f2c;
    background: linear-gradient(135deg, #111118, #1a1a2e);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.2rem;
    margin: 15px 0;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid #1f2937;
    font-size: 0.9rem;
}

.badge-popular {
    background: #e86f2c;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #111118;
    border-radius: 24px;
    padding: 30px 20px;
    border: 1px solid #1f2937;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0a0a0f;
    border: 1px solid #1f2937;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e86f2c;
}

/* Footer */
footer {
    background: #050508;
    padding: 40px 0 20px;
    margin-top: 50px;
    border-top: 1px solid #1f2937;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: #e86f2c;
}

.social-icons i {
    font-size: 1.5rem;
    margin: 0 8px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #e86f2c;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1f2937;
    color: #64748b;
    font-size: 0.8rem;
}

/* Values */
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.value-item {
    background: #111118;
    padding: 20px;
    border-radius: 16px;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.value-item i {
    font-size: 1.8rem;
    color: #e86f2c;
    margin-bottom: 10px;
}

.value-item h3 {
    font-size: 1rem;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.about-text h2 {
    color: #e86f2c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid, .products-grid, .blog-grid, .team-grid, .pricing-grid, .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        flex-direction: row;
        padding: 40px;
    }
    
    .contact-grid > div {
        flex: 1;
    }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .about-section {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .menu-trigger {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
        gap: 28px;
        list-style: none;
    }
    
    .desktop-nav a {
        text-decoration: none;
        font-weight: 500;
        color: #cbd5e1;
        transition: color 0.3s;
    }
    
    .desktop-nav a:hover, .desktop-nav a.active {
        color: #e86f2c;
    }
    
    .services-grid, .products-grid, .blog-grid, .team-grid, .prestations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .prestations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}