/* Variables - Thème RAFIS BATIMAT */
:root {
    --primary: #FF6B35;          /* Orange vif pour le secteur construction */
    --primary-dark: #E85A2B;     /* Orange foncé */
    --secondary: #004E89;        /* Bleu profond */
    --secondary-light: #1A7CAC;  /* Bleu clair */
    --accent: #FFA630;           /* Orange-jaune pour accents */
    --success: #47B881;          /* Vert pour succès */
    --dark: #1F2937;             /* Gris très foncé */
    --gray: #6B7280;             /* Gris moyen */
    --light-gray: #F3F4F6;       /* Gris très clair */
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-top {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info span {
    margin-right: 20px;
}

.header-links a {
    margin-left: 20px;
    opacity: 0.9;
}

.header-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.header-main {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 48px;
    line-height: 1;
}

.logo-image {
    height: 70px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-slogan {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

/* Barre de recherche centrée */
.search-container {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    width: 100%;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: var(--gray);
}

.search-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: var(--primary-dark);
}

/* Actions header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.action-link:hover {
    color: var(--primary);
    background: var(--light-gray);
}

.action-link svg {
    flex-shrink: 0;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cart-count {
    background: var(--white);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* Barre de navigation */
.header-nav {
    background: var(--secondary);
    box-shadow: var(--shadow-md);
}

/* Navigation */
.main-nav {
    width: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 24px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
}

.nav-link:hover {
    background: var(--secondary-light);
    color: var(--white);
}

.nav-link-promo {
    background: var(--primary);
    font-weight: 600;
}

.nav-link-promo:hover {
    background: var(--primary-dark);
}

.dropdown-icon {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 20px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.dropdown-header h3 {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
}

.view-all {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.subcategory-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--light-gray);
    transition: var(--transition);
}

.subcategory-item:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateX(5px);
}

.subcategory-name {
    font-weight: 500;
}

.subcategory-count {
    font-size: 12px;
    opacity: 0.7;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn,
.cart-btn {
    position: relative;
    padding: 10px;
    border-radius: 50%;
    color: var(--dark);
}

.search-btn:hover,
.cart-btn:hover {
    background: var(--light-gray);
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
}

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

.search-container {
    position: relative;
    width: 90%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 18px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    outline: none;
    background: var(--white);
}

.search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--gray);
    padding: 5px;
}

/* Main Content */
.main-content {
    min-height: 60vh;
}

/* Carrousel Hero */
.carousel-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 36, 22, 0.4), rgba(44, 36, 22, 0.7));
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.carousel-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-style: italic;
}

.carousel-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--dark);
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Sections */
.categories-showcase,
.featured-products,
.values-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 50px;
    font-style: italic;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: var(--primary);
}

.category-image {
    margin-bottom: 20px;
}

.category-icon {
    font-size: 60px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--accent);
}

.category-card p {
    color: var(--gray);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray);
    opacity: 0.3;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 14px;
}

.price-current {
    font-size: 22px;
    font-weight: bold;
    color: var(--accent);
}

.product-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: var(--primary);
    color: var(--dark);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.value-item p {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    margin-top: 80px;
}

.footer-main {
    padding: 60px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    color: var(--primary);
}

.footer-logo .logo-slogan {
    color: var(--secondary);
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 228, 193, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--primary);
}

.newsletter-text {
    margin-bottom: 15px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 0 8px 8px 0;
    font-weight: 600;
}

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

.payment-methods {
    margin-top: 20px;
}

.payment-text {
    opacity: 0.8;
    font-size: 14px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header-main-content {
        gap: 15px;
    }
    
    .search-container {
        max-width: 400px;
    }
    
    .action-link span {
        display: none;
    }
    
    .nav-list {
        gap: 0;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 14px;
        font-size: 14px;
    }
    
    .carousel-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-main-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
    }
    
    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .action-link {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .carousel-hero {
        height: 400px;
    }
    
    .carousel-title {
        font-size: 28px;
    }
    
    .carousel-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   STYLES RAFIS BATIMAT - Sections supplémentaires
   ============================================ */

/* Section "Pourquoi choisir RAFIS BATIMAT" */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Section Spécialités */
.specialties-section {
    padding: 80px 0;
    background: var(--white);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialty-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.specialty-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.specialty-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.specialty-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.specialty-card ul {
    list-style: none;
    padding: 0;
}

.specialty-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark);
}

.specialty-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

/* Footer Logo Icon */
.footer-logo-icon {
    font-size: 48px;
    line-height: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* ============================================
   PAGE QUI SOMMES-NOUS
   ============================================ */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-tagline {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

/* Introduction */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
}

.intro-content .lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.intro-content p {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Pourquoi Choisir */
.why-choose {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Spécialités Page About */
.specialties {
    padding: 80px 0;
    background: var(--white);
}

.specialty-section {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    border-left: 5px solid var(--primary);
}

.specialty-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.specialty-icon-large {
    font-size: 64px;
}

.specialty-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.specialty-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.check-icon {
    background: var(--success);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.specialty-item span:last-child {
    color: var(--dark);
    font-weight: 500;
}

/* Section Promesse */
.promise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promise-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.promise-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.promise-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promise-tagline {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Ajustements */
@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }
    
    .about-tagline {
        font-size: 18px;
    }
    
    .benefits-grid,
    .features-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-header {
        flex-direction: column;
        text-align: center;
    }
    
    .specialty-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}