
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Info Bar */
.top-info-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.contact-details {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon {
    color: #3b82f6;
}

.mobile-hours {
    display: none;
}

/* Header */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: auto;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.logo-text p {
    font-size: 12px;
    color: #F97316;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu > a, .dropdown-trigger {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-menu > a:hover, .dropdown-trigger:hover {
    color: #3B82F6;
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #3B82F6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-search, .btn-cart {
    background: none;
    border: none;
    padding: 8px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-search:hover, .btn-cart:hover {
    color: #3B82F6;
}

.cart-container {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.btn-boutique {
    background: #3B82F6;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-boutique:hover {
    background: #2563eb;
}

.btn-reserve {
    background: #F97316;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-reserve:hover {
    background: #EA580C;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #64748b;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #F97316;
    color: white;
}

.btn-primary:hover {
    background: #EA580C;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.btn-tertiary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-tertiary:hover {
    background: rgba(255,255,255,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    background: #EEF2FF;
    color: #3B82F6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #7C3AED;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: white;
}

.solutions-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #6b7280;
    font-size: 1.1rem;
}

.solutions-dropdown {
    max-width: 800px;
    margin: 0 auto;
}

.dropdown-btn {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.dropdown-btn:hover {
    border-color: #8B5CF6;
    background: #faf5ff;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: white;
}

.dropdown-content.active {
    display: block;
}

.problem-showcase h3 {
    color: #8B5CF6;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.windows-screens {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.screen-item {
    text-align: center;
}

.screen-mockup {
    width: 80px;
    height: 60px;
    background: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.solution-details ul {
    list-style: none;
    padding-left: 0;
}

.solution-details li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.solution-details li:before {
    content: "•";
    color: #8B5CF6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #f8fafc;
}

.advantage-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.tab-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.tab-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.tab-btn.active {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

.tab-content {
    display: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
}

.tab-content.active {
    display: block;
}

.advantage-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #f3f4f6;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f2937;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    stroke: #64748b;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 25px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Style pour le logo dans le footer */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo-icon {
    width: 250px;
    height: 110px;
    margin-right: 12px;
    border-radius: 6px;
    object-fit: contain;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #F97316;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-boutique,
    .btn-reserve {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        padding: 5px 0;
    }
    
    .info-content {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .desktop-hours {
        display: none;
    }
    
    .mobile-hours {
        display: inline;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-actions {
        order: 3;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .windows-screens {
        flex-direction: column;
        align-items: center;
    }
    
    .advantage-tabs {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .tab-btn {
        border-radius: 8px !important;
        margin-bottom: 10px;
    }
    
    .advantage-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .services, .solutions, .advantages, .faq {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }
}

/* Mobile Navigation */
.nav-menu.mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    font-size: 1.2rem;
    z-index: 1001;
    display: flex;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

a.btn {
  text-decoration: none;
}
