/* services.css - Page des services The Nava's Group */

/* ===== SERVICES HERO ===== */
.services-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
                url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== SERVICES PAGE NAV ===== */
.services-page-nav {
    background: var(--dark-gray);
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.services-page-nav .nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--light-gray);
    padding: 1rem 1.5rem;
    border-radius: 2px;
    transition: var(--transition);
    min-width: 120px;
}

.nav-item i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.nav-item.active,
.nav-item:hover {
    background: rgba(201, 169, 106, 0.1);
    color: var(--cream);
}

.nav-item.active i {
    color: var(--gold-light);
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    padding: 6rem 2rem;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 169, 106, 0.05);
}

.service-detail:nth-child(even) {
    background: var(--dark-gray);
}

.active-banner {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-image {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== SERVICE DESCRIPTION ===== */
.service-description h3 {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.service-description > p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.3rem;
}

.feature h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.service-options h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-options ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.service-options li {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-options li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.service-options li strong {
    color: var(--cream);
}

/* ===== SERVICE STATS ===== */
.service-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(201, 169, 106, 0.05);
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 106, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 500;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SERVICES COMPARISON ===== */
.services-comparison {
    padding: 6rem 2rem;
    background: var(--dark-gray);
    text-align: center;
}

.services-comparison .section-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.services-comparison .section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.comparison-item {
    background: var(--black);
    border: 1px solid rgba(201, 169, 106, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.comparison-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.comparison-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.comparison-item h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comparison-badge {
    display: inline-block;
    background: rgba(201, 169, 106, 0.1);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== SYNERGY EXAMPLE ===== */
.synergy-example {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--black);
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 106, 0.1);
}

.synergy-example h3 {
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.synergy-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.synergy-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 150px;
}

.synergy-step i {
    font-size: 2.5rem;
    color: var(--gold);
    background: rgba(201, 169, 106, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.synergy-step span {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.synergy-flow .fa-arrow-right {
    color: var(--gold);
    font-size: 1.5rem;
}

.synergy-note {
    color: var(--gold-light);
    font-style: italic;
    text-align: center;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 169, 106, 0.1);
}

/* ===== SERVICES CTA ===== */
.services-cta {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-image {
        order: -1;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .services-page-nav .nav-container {
        gap: 1rem;
    }
    
    .nav-item {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }
    
    .service-header h2 {
        font-size: 2.5rem;
    }
    
    .services-comparison .section-header h2 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 4rem 1.5rem;
    }
    
    .services-comparison,
    .services-cta {
        padding: 4rem 1.5rem;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .synergy-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .synergy-flow .fa-arrow-right {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-description h3 {
        font-size: 1.5rem;
    }
    
    .services-page-nav .nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        width: 100%;
        max-width: 250px;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .services-comparison .section-header h2 {
        font-size: 2rem;
    }
    
    .synergy-example {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .service-cta .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ===== SECTION PÂTISSERIE ===== */
.patisserie-section {
    background: linear-gradient(135deg, #fdf6f0 0%, #fff9f5 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #ffe8d6;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.08);
}

.patisserie-section h3 {
    color: #7c2d12;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.patisserie-section h3 i {
    color: #ea580c;
}

.patisserie-subtitle {
    color: #9a3412;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.patisserie-description {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ea580c;
    margin-bottom: 30px;
}

.patisserie-description p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.patisserie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.patisserie-category {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #ffedd5;
    transition: transform 0.3s ease;
}

.patisserie-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 146, 60, 0.12);
}

.patisserie-category h4 {
    color: #ea580c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.patisserie-category ul {
    list-style: none;
    padding-left: 0;
}

.patisserie-category li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.patisserie-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
}

/* Galerie pâtisserie */
.patisserie-gallery {
    margin-top: 40px;
}

.patisserie-gallery h4 {
    color: #7c2d12;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    color: #7c2d12;
    font-weight: 500;
    margin: 0;
}

/* CTA pâtisserie */
.patisserie-cta {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 2px dashed #fdba74;
}

.patisserie-cta p {
    color: #9a3412;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.patisserie-cta .btn {
    background: #ea580c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.patisserie-cta .btn:hover {
    background: #c2410c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .patisserie-section {
        padding: 25px;
        margin: 30px 0;
    }
    
    .patisserie-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .patisserie-section h3 {
        font-size: 1.8rem;
    }
}