/* ==============================================
   custom-style.css - Styles principaux
   ============================================== */

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

body {
    background-color: #f4f4f4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

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

/* ==============================================
   HEADER TOP
   ============================================== */
.header-top {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 24px;
    background: var(--raymb-red);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.contact-info:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--raymb-red);
}

.contact-hours {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--raymb-red);
    transform: translateY(-2px);
}

/* ==============================================
   HEADER BOTTOM
   ============================================== */
.header-bottom {
    background: var(--raymb-blue);
    padding: 15px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 70px;
    width: auto;
}

.site-title a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

/* Navigation */
.main-navigation {
    flex-grow: 1;
}

.primary-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    background: var(--raymb-red);
}

/* Sous-menus */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--raymb-blue);
    min-width: 220px;
    display: none;
    list-style: none;
    padding: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.primary-menu li:hover > .sub-menu {
    display: block;
}

.primary-menu .sub-menu a {
    padding: 10px 20px;
}

/* Bouton CTA */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--raymb-red);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: transparent;
    color: var(--raymb-red);
    border: 2px solid var(--raymb-red);
    padding: 10px 23px;
}

/* Menu mobile */
.menu-toggle {
    display: none;
    background: var(--raymb-red);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
    background: #0a2b5e;
    color: white;
    margin-top: 60px;
}

.footer-main {
    padding: 60px 0 40px;
}

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

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--raymb-red);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--raymb-red);
    transform: translateX(5px);
}

/* Contact items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon-small {
    font-size: 20px;
    min-width: 25px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--raymb-red);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
    color: white;
}

.social-icon:hover {
    background: var(--raymb-red);
    transform: translateY(-3px);
}

/* Footer CTA */
.footer-cta {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.footer-cta .btn-footer {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.footer-cta .btn-footer:hover {
    background: transparent;
    border: 2px solid var(--raymb-red);
    padding: 10px 23px;
}

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

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--raymb-red);
}

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

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--raymb-blue);
        z-index: 1000;
    }
    
    .main-navigation.show {
        display: block;
    }
    
    .primary-menu {
        flex-direction: column;
        padding: 10px;
    }
    
    .primary-menu .sub-menu {
        position: static;
        display: none;
    }
    
    .primary-menu .sub-menu.show {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-top {
        display: none;
    }
}

/* ==============================================
   STYLES PAGES - BLOG - ARTICLES
   ============================================== */

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn-large {
    padding: 15px 35px;
    font-size: 18px;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.section-gray {
    background: #f5f5f5;
}

.services-section, .flotte-section, .blog-preview {
    padding: 60px 20px;
}

/* Services et véhicules */
.service-card, .vehicle-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card:hover, .vehicle-card:hover {
    transform: translateY(-5px);
}

.service-icon, .vehicle-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: bold;
}

/* Page article single */
.single-post {
    padding: 0px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 30px;
}

.post-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.post-meta {
    color: #666;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-thumbnail {
    margin: 30px 0;
}

.post-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
}

.post-content h2, .post-content h3 {
    margin: 30px 0 15px;
}

.post-tags {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Archive page */
.archive-page {
    padding: 40px 0;
}

.archive-title {
    text-align: center;
    margin-bottom: 40px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.archive-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.archive-image {
    flex: 0 0 200px;
}

.archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-content {
    flex: 1;
    padding: 20px;
}

.archive-meta {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination .current {
    background: var(--raymb-red);
    color: white;
}

/* Page 404 */
.error-404 {
    padding: 80px 0;
    text-align: center;
}

.error-code {
    font-size: 120px;
    color: var(--raymb-red);
    margin-bottom: 0;
}

.error-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-search {
    margin: 40px 0;
}

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

.error-links li {
    margin: 10px 0;
}

/* Page services full */
.services-page {
    padding: 40px 0;
}

.page-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

.service-full-card {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-full-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.service-full-content {
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-features li {
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 20px;
}

.services-cta {
    text-align: center;
    background: var(--raymb-blue);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.services-cta h3 {
    color: white;
    margin-bottom: 20px;
}

/* Page flotte */
.flotte-page {
    padding: 40px 0;
}

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

.flotte-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.flotte-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.flotte-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.spec {
    background: var(--raymb-blue);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Page contact */
.contact-page {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.contact-map {
    margin-top: 40px;
}

.contact-map h3 {
    margin-bottom: 20px;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .archive-card {
        flex-direction: column;
    }
    
    .archive-image {
        flex: 0 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-full-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .post-title {
        font-size: 28px;
    }
}

/* ==============================================
   PAGE CONTACT STYLES
   ============================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.contact-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.contact-card p {
    margin: 10px 0;
}

.contact-card a {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card small {
    color: #666;
    font-size: 12px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Formulaire */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.contact-form-container > p {
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--raymb-red);
}

.checkbox {
    margin: 20px 0;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    cursor: pointer;
}

.btn-submit {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Alert messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Google Maps */
.contact-map-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-map-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.map-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 24px;
    min-width: 40px;
}

/* Social Connect */
.social-connect {
    text-align: center;
}

.social-connect h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons-large a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.social-icon-fb {
    background: #1877f2;
}

.social-icon-li {
    background: #0077b5;
}

.social-icon-wa {
    background: #25d366;
}

.social-icons-large a:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

/* FAQ Section */
.contact-faq {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-faq h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--raymb-blue);
}

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

.faq-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--raymb-blue);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-map-container,
    .contact-faq {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons-large {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons-large a {
        width: 100%;
        justify-content: center;
    }
}


/* ==============================================
   PAGE DEVIS STYLES
   ============================================== */

/* Devis Hero */
.devis-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.devis-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.devis-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Steps */
.devis-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--raymb-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.step p {
    color: #666;
    font-size: 14px;
}

.step-arrow {
    font-size: 30px;
    color: var(--raymb-red);
}

/* Devis Wrapper */
.devis-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Form Container */
.devis-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.devis-form-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.devis-form-container > p {
    color: #666;
    margin-bottom: 30px;
}

.required {
    color: var(--raymb-red);
    font-weight: bold;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.section-title-form {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
    padding-left: 15px;
    border-left: 4px solid var(--raymb-red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--raymb-red);
    box-shadow: 0 0 0 3px rgba(193,39,45,0.1);
}

.checkbox {
    margin: 20px 0;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    cursor: pointer;
}

.btn-submit-devis {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit-devis:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Alert messages */
.alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.alert-icon {
    font-size: 30px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Sidebar */
.devis-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--raymb-red);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    font-size: 28px;
}

.contact-option strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-option a {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-option a:hover {
    text-decoration: underline;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certifications span {
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
}

.testimonial {
    background: linear-gradient(135deg, #f8f9fa, white);
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--raymb-blue);
}

/* Guarantee */
.devis-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.guarantee-item {
    text-align: center;
}

.guarantee-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.guarantee-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.guarantee-item p {
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .devis-wrapper {
        grid-template-columns: 1fr;
    }
    
    .devis-steps {
        gap: 15px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step {
        min-width: 140px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .devis-hero h1 {
        font-size: 32px;
    }
    
    .devis-form-container {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .devis-steps {
        flex-direction: column;
    }
    
    .step {
        width: 100%;
    }
    
    .devis-guarantee {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}


/* ==============================================
   PAGE FLOTTE STYLES
   ============================================== */

.flotte-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.flotte-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.flotte-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.flotte-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #333;
}

.filter-btn:hover {
    border-color: var(--raymb-red);
    color: var(--raymb-red);
}

.filter-btn.active {
    background: var(--raymb-red);
    border-color: var(--raymb-red);
    color: white;
}

.flotte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.flotte-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flotte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.flotte-image {
    height: 220px;
    overflow: hidden;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flotte-card:hover .vehicle-image {
    transform: scale(1.05);
}

.flotte-icon {
    background: linear-gradient(135deg, #f5f5f5, white);
    padding: 40px;
    text-align: center;
}

.vehicle-icon-large {
    font-size: 80px;
}

.flotte-content {
    padding: 25px;
}

.vehicle-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.vehicle-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-icon {
    font-size: 24px;
}

.spec-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.vehicle-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-badge {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.vehicle-price {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--raymb-red);
}

.btn-devis-vehicle {
    background: var(--raymb-red);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-devis-vehicle:hover {
    background: var(--raymb-blue);
    transform: translateX(5px);
}

.flotte-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin-top: 30px;
}

.flotte-cta h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.flotte-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: var(--raymb-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.no-vehicles {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
}

/* Shortcode Flotte */
.flotte-shortcode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.flotte-shortcode-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.flotte-shortcode-card .vehicle-icon-large {
    font-size: 60px;
    margin-bottom: 15px;
}

.flotte-shortcode-card .vehicle-specs {
    margin: 15px 0;
    font-size: 14px;
}

.flotte-shortcode-card .vehicle-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.flotte-shortcode-card .feature-tag {
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
}

.flotte-shortcode-card .vehicle-price {
    margin: 15px 0;
}

.flotte-shortcode-card .btn-rent {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .flotte-hero h1 {
        font-size: 32px;
    }
    
    .flotte-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .flotte-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .flotte-card {
        margin: 0 10px;
    }
    
    .vehicle-specs-grid {
        grid-template-columns: 1fr;
    }
}


/* No vehicles message */
.no-vehicles {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.no-vehicles-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-vehicles-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.no-vehicles h3 {
    font-size: 28px;
    color: var(--raymb-blue);
    margin-bottom: 15px;
}

.no-vehicles p {
    color: #666;
    margin-bottom: 10px;
}

.no-vehicles .btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: var(--raymb-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.no-vehicles .btn-primary:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
}
/* ==============================================
   PAGE SERVICES STYLES
   ============================================== */

.services-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.services-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.services-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-grid-custom {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card-custom {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 350px 1fr;
}

.service-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-header {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.service-subtitle-custom {
    color: var(--raymb-red);
    font-weight: 600;
    font-size: 16px;
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-benefits {
    margin-bottom: 25px;
}

.benefits-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.benefits-list-custom {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.benefits-list-custom li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.service-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.service-meta {
    display: flex;
    gap: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    font-size: 24px;
}

.meta-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.btn-service-devis {
    background: var(--raymb-red);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-service-devis:hover {
    background: var(--raymb-blue);
    transform: translateX(5px);
}

/* Why choose us */
.why-choose-us {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--raymb-blue);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Main */
.services-cta-main {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.cta-content h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    color: white;
    opacity: 0.95;
    font-size: 18px;
    margin-bottom: 30px;
}

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

.btn-cta-primary {
    background: white;
    color: var(--raymb-red);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--raymb-blue);
}

/* No services */
.no-services {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
}

.no-services-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-services-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.no-services h3 {
    font-size: 28px;
    color: var(--raymb-blue);
    margin-bottom: 15px;
}

.no-services p {
    color: #666;
    margin-bottom: 10px;
}

/* Shortcode services */
.services-shortcode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-shortcode-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-shortcode-card:hover {
    transform: translateY(-5px);
}

.service-shortcode-card .service-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.service-shortcode-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.service-shortcode-card .service-subtitle {
    color: var(--raymb-red);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-shortcode-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.btn-service:hover {
    color: var(--raymb-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .service-card-custom {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .benefits-list-custom {
        grid-template-columns: 1fr;
    }
    
    .service-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }
    
    .services-intro h2 {
        font-size: 28px;
    }
    
    .services-intro p {
        font-size: 16px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-meta {
        flex-wrap: wrap;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-main {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-header {
        padding: 25px 20px;
    }
    
    .service-icon-large {
        font-size: 60px;
    }
}


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

.about-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.about-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Stats Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--raymb-red);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Our History */
.our-history {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.history-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.history-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.history-timeline {
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-year {
    min-width: 80px;
    font-weight: bold;
    color: var(--raymb-red);
    font-size: 18px;
}

.timeline-text {
    color: #555;
}

.history-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.history-logo img {
    max-height: 150px;
    margin-bottom: 30px;
}

.history-quote {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: var(--raymb-red);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.history-quote p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-weight: bold;
    color: var(--raymb-blue);
}

/* Our Values */
.our-values {
    margin-bottom: 60px;
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--raymb-blue);
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Our Team */
.our-team {
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
}

.team-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 80px;
    opacity: 0.5;
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--raymb-blue);
}

.team-position {
    color: var(--raymb-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-contacts {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.contact-link {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    transform: translateY(-3px);
}

/* Why Us */
.why-us {
    margin-bottom: 60px;
}

.reasons-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.reason-about-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.reason-about-card:hover {
    transform: translateY(-5px);
}

.reason-about-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.reason-about-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.reason-about-card p {
    color: #666;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.cta-content-about h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content-about p {
    color: white;
    opacity: 0.95;
    font-size: 18px;
    margin-bottom: 30px;
}

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

.btn-cta-about-primary {
    background: white;
    color: var(--raymb-red);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-cta-about-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-about-secondary:hover {
    background: white;
    color: var(--raymb-blue);
}

/* No team */
.no-team {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .our-history {
        grid-template-columns: 1fr;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .stats-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .our-team {
        padding: 25px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .cta-content-about h3 {
        font-size: 24px;
    }
    
    .cta-buttons-about {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-about-primary,
    .btn-cta-about-secondary {
        width: 100%;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid-about {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--raymb-blue) 0%, #0a2b5e 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    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" opacity="0.05"><path fill="white" d="M20,20 L80,20 L80,80 L20,80 Z"/></svg>');
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--raymb-red);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--raymb-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { width: 0; left: 50%; }
    50% { width: 100%; left: 0; }
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--raymb-red);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: white;
    color: var(--raymb-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--raymb-blue);
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow,
.btn-hero-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
}

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

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-section-home {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--raymb-red);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-home {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--raymb-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-icon-home {
    font-size: 60px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card-home:hover .service-icon-home {
    transform: scale(1.1);
}

.service-title-home {
    font-size: 22px;
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 10px;
}

.service-subtitle-home {
    color: var(--raymb-red);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-description-home {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--raymb-blue);
}

/* ==============================================
   FLOTTE SECTION
   ============================================== */
.flotte-section-home {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.flotte-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.flotte-text {
    animation: fadeInLeft 1s ease;
}

.flotte-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 20px;
}

.flotte-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.flotte-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.flotte-stat {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.flotte-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--raymb-red);
}

.flotte-stat .stat-label {
    font-size: 12px;
    color: #666;
}

.btn-flotte {
    display: inline-block;
    background: transparent;
    color: var(--raymb-red);
    border: 2px solid var(--raymb-red);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-flotte:hover {
    background: var(--raymb-red);
    color: white;
    transform: translateX(5px);
}

.vehicle-showcase {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vehicle-card-slide {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vehicle-card-slide:hover {
    transform: translateY(-5px);
}

.vehicle-icon-showcase {
    font-size: 50px;
    margin-bottom: 15px;
}

.vehicle-card-slide h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--raymb-blue);
}

.vehicle-card-slide p {
    font-size: 12px;
    color: #666;
}

/* ==============================================
   WHY CHOOSE SECTION
   ============================================== */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

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

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-hover-bg {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--raymb-red) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-hover-bg {
    opacity: 0.05;
}

/* ==============================================
   STATS SECTION
   ============================================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    color: white;
    animation: fadeInUp 0.6s ease;
}

.stat-number-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 16px;
    opacity: 0.9;
}

/* ==============================================
   TESTIMONIALS SECTION
   ============================================== */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--raymb-red);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    font-size: 48px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    color: var(--raymb-blue);
}

.author-company {
    font-size: 12px;
    color: #999;
}

/* ==============================================
   BLOG SECTION
   ============================================== */
.blog-section-home {
    padding: 80px 0;
    background: white;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card-home {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card-home:hover {
    transform: translateY(-5px);
}

.blog-image-home {
    height: 200px;
    overflow: hidden;
}

.blog-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-home:hover .blog-image-home img {
    transform: scale(1.05);
}

.blog-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.blog-content-home {
    padding: 25px;
}

.blog-meta-home {
    margin-bottom: 10px;
}

.blog-date {
    font-size: 12px;
    color: #999;
}

.blog-title-home {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-title-home a {
    color: var(--raymb-blue);
    text-decoration: none;
}

.blog-excerpt-home {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link-home {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link-home:hover {
    color: var(--raymb-blue);
}

/* ==============================================
   CTA FINALE
   ============================================== */
.cta-final-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
}

.cta-final-content {
    text-align: center;
    color: white;
}

.cta-final-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-final-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-cta-final-primary {
    background: white;
    color: var(--raymb-red);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-final-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta-final-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-final-secondary:hover {
    background: white;
    color: var(--raymb-blue);
    transform: translateY(-3px);
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .flotte-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-grid-home {
        grid-template-columns: 1fr;
    }
    
    .cta-final-title {
        font-size: 28px;
    }
    
    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vehicle-showcase {
        flex-direction: column;
    }
}


/* ==============================================
   BLOG STYLES
   ============================================== */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.blog-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    margin-bottom: 60px;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-search-form {
    display: flex;
    flex: 1;
    max-width: 300px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: var(--raymb-red);
}

.search-button {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: var(--raymb-blue);
}

.blog-categories-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-weight: 600;
    color: #333;
}

.category-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
}

/* Blog Grid */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
}

.cat-badge {
    background: var(--raymb-red);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.no-image {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 60px;
    opacity: 0.5;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.meta-date, .meta-author, .meta-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--raymb-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--raymb-red);
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.read-more-btn {
    background: transparent;
    color: var(--raymb-red);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 12px;
}

.blog-tags {
    font-size: 12px;
    color: #999;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--raymb-red);
    display: inline-block;
}

.category-list,
.recent-posts-list,
.archives-list {
    list-style: none;
    padding: 0;
}

.category-list li,
.archives-list li {
    margin-bottom: 12px;
}

.category-list li a,
.archives-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list li a:hover,
.archives-list li a:hover {
    color: var(--raymb-red);
}

.cat-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.recent-post-link {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.recent-post-link:hover {
    transform: translateX(5px);
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-image-placeholder {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.recent-post-info {
    flex: 1;
}

.recent-post-title {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.recent-post-date {
    font-size: 11px;
    color: #999;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: #f0f0f0;
    color: #555;
    padding: 6px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--raymb-red);
    color: white;
    transform: translateY(-2px);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: white;
}

.newsletter-widget p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    background: white;
    color: var(--raymb-red);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.pagination .current {
    background: var(--raymb-red);
    color: white;
    border-color: var(--raymb-red);
}

.pagination a:hover {
    background: var(--raymb-blue);
    color: white;
    border-color: var(--raymb-blue);
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
}

.no-results-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.no-results p {
    color: #666;
    margin-bottom: 25px;
}

.back-to-blog {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar-widget {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-search-form {
        max-width: none;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pagination a,
    .pagination span {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ==============================================
   PAGE À PROPOS - DESIGN MODERNE 2024
   ============================================== */

/* Hero Section */
.about-hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--raymb-blue) 0%, #0a2b5e 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--raymb-red);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

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

.btn-primary-modern {
    background: var(--raymb-red);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-modern:hover {
    background: white;
    color: var(--raymb-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
    background: white;
    color: var(--raymb-blue);
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

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

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

/* Stats Section */
.stats-modern {
    padding: 60px 0;
    background: white;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card-modern {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    color: var(--raymb-blue);
    line-height: 1;
}

.stat-plus, .stat-text {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--raymb-red);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.stat-text {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    margin-left: 5px;
}

/* History Section */
.history-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(193,39,45,0.1);
    color: var(--raymb-red);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 42px;
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.history-text .lead {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.history-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.signature-line {
    width: 50px;
    height: 3px;
    background: var(--raymb-red);
    margin-bottom: 15px;
}

.signature-text strong {
    display: block;
    color: var(--raymb-blue);
    font-size: 18px;
}

.signature-text span {
    color: #666;
    font-size: 14px;
}

/* Timeline */
.history-timeline-modern {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--raymb-red), var(--raymb-blue));
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--raymb-red);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--raymb-red);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-year {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--raymb-blue);
}

.timeline-content p {
    color: #666;
    font-size: 14px;
}

/* Values Section */
.values-modern {
    padding: 80px 0;
    background: white;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle-modern {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card-modern {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card-modern:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-icon-wrapper {
    margin-bottom: 20px;
}

.value-icon {
    font-size: 60px;
    display: inline-block;
}

.value-card-modern h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.value-card-modern p {
    color: #666;
    line-height: 1.6;
}

.value-hover-bg {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--raymb-red) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card-modern:hover .value-hover-bg {
    opacity: 0.05;
}

/* Team Section */
.team-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-photo-modern {
    height: 250px;
    overflow: hidden;
}

.team-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-modern:hover .team-image-modern {
    transform: scale(1.05);
}

.team-photo-placeholder-modern {
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #999;
}

.team-info-modern {
    padding: 20px;
    text-align: center;
}

.team-name-modern {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--raymb-blue);
}

.team-position-modern {
    color: var(--raymb-red);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-bio-modern {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-social-modern {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social-link {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--raymb-red);
    color: white;
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us-modern {
    padding: 80px 0;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-check {
    width: 30px;
    height: 30px;
    background: rgba(193,39,45,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--raymb-red);
    font-weight: bold;
    flex-shrink: 0;
}

.reason-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--raymb-blue);
}

.reason-item p {
    color: #666;
    font-size: 14px;
}

.why-us-image {
    position: relative;
}

.image-card {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.image-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.image-content {
    position: relative;
    z-index: 1;
}

.image-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.image-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.image-card-small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.image-card-small span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--raymb-red);
}

.image-card-small p {
    font-size: 12px;
    color: #666;
}

/* Testimonials Section */
.testimonials-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-modern {
    background: white;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 80px;
    color: var(--raymb-red);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-name {
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 3px;
}

.author-company {
    font-size: 12px;
    color: #999;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 14px;
}

/* CTA Section */
.cta-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
}

.cta-content-modern {
    text-align: center;
    color: white;
}

.cta-content-modern h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-content-modern p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.btn-cta-primary-modern {
    background: white;
    color: var(--raymb-red);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta-secondary-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary-modern:hover {
    background: white;
    color: var(--raymb-blue);
    transform: translateY(-3px);
}

/* JavaScript pour les compteurs */
.stat-number {
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid-modern,
    .values-grid-modern,
    .team-grid-modern,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title-modern {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .stats-grid-modern,
    .values-grid-modern,
    .team-grid-modern,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .cta-content-modern h2 {
        font-size: 28px;
    }
    
    .hero-buttons,
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern,
    .btn-cta-primary-modern,
    .btn-cta-secondary-modern {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .image-card-small {
        position: static;
        margin-top: 20px;
    }
}

/* Services Archive */
.services-archive-hero,
.blog-archive-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.services-archive-hero h1,
.blog-archive-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.services-archive-hero p,
.blog-archive-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-archive-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-archive-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-archive-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.service-subtitle {
    color: var(--raymb-red);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    color: var(--raymb-blue);
}

/* Blog Archive */
.blog-archive-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-archive-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 250px 1fr;
}

.blog-archive-card .blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-archive-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}

.blog-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: var(--raymb-blue);
    text-decoration: none;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--raymb-blue);
}

.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination .current {
    background: var(--raymb-red);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .services-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-archive-card {
        grid-template-columns: 1fr;
    }
    
    .services-archive-hero h1,
    .blog-archive-hero h1 {
        font-size: 32px;
    }
}

/* ==============================================
   PAGE SERVICES - STYLES COMPLETS
   ============================================== */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.services-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Services Introduction */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.services-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Services Grid */
.services-grid-custom {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card-custom {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.service-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Service Header */
.service-header {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.service-subtitle-custom {
    color: var(--raymb-red);
    font-weight: 600;
    font-size: 16px;
}

/* Service Content */
.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Benefits */
.service-benefits {
    margin-bottom: 25px;
}

.benefits-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.benefits-list-custom {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.benefits-list-custom li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

/* Service Footer */
.service-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.service-meta {
    display: flex;
    gap: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    font-size: 24px;
}

.meta-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.btn-service-devis {
    background: var(--raymb-red);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-service-devis:hover {
    background: var(--raymb-blue);
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose-us {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--raymb-blue);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Main */
.services-cta-main {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.cta-content h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    color: white;
    opacity: 0.95;
    font-size: 18px;
    margin-bottom: 30px;
}

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

.btn-cta-primary {
    background: white;
    color: var(--raymb-red);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--raymb-blue);
}

/* No Services */
.no-services {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
}

.no-services-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-services-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.no-services h3 {
    font-size: 28px;
    color: var(--raymb-blue);
    margin-bottom: 15px;
}

.no-services p {
    color: #666;
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--raymb-blue);
}

/* Menu actif - Pour la page en cours */
.primary-menu .current-menu-item a,
.primary-menu .current_page_item a,
.primary-menu .current-page-ancestor a,
.primary-menu .current-menu-parent a {
    background: var(--raymb-red);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .service-card-custom {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .benefits-list-custom {
        grid-template-columns: 1fr;
    }
    
    .service-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }
    
    .services-intro h2 {
        font-size: 28px;
    }
    
    .services-intro p {
        font-size: 16px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-meta {
        flex-wrap: wrap;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-main {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-header {
        padding: 25px 20px;
    }
    
    .service-icon-large {
        font-size: 60px;
    }
}
/* ==============================================
   PAGE ACTUALITÉS - STYLES
   ============================================== */

/* Hero Section */
.actualites-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.actualites-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.actualites-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Layout */
.actualites-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    margin-bottom: 60px;
}

/* Filters */
.actualites-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-form-actu {
    display: flex;
    flex: 1;
    max-width: 350px;
}

.search-input-actu {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.search-input-actu:focus {
    outline: none;
    border-color: var(--raymb-red);
}

.search-button-actu {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button-actu:hover {
    background: var(--raymb-blue);
}

.categories-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-weight: 600;
    color: #333;
}

.category-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
}

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

.actu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.actu-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.actu-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.actu-card:hover .actu-thumbnail {
    transform: scale(1.05);
}

.actu-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.cat-badge-actu {
    background: var(--raymb-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.no-image-actu {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.image-placeholder-actu {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #999;
}

.actu-card-content {
    padding: 20px;
}

.actu-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.meta-date, .meta-author, .meta-comments {
    display: flex;
    align-items: center;
    gap: 4px;
}

.actu-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.actu-card-title a {
    color: var(--raymb-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.actu-card-title a:hover {
    color: var(--raymb-red);
}

.actu-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.actu-card-footer {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.read-more-actu {
    background: transparent;
    color: var(--raymb-red);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    font-size: 14px;
}

.read-more-actu:hover {
    gap: 12px;
}

/* Pagination */
.pagination-actu {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-actu a,
.pagination-actu span {
    display: inline-block;
    padding: 10px 16px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.pagination-actu .current {
    background: var(--raymb-red);
    color: white;
    border-color: var(--raymb-red);
}

.pagination-actu a:hover {
    background: var(--raymb-blue);
    color: white;
    border-color: var(--raymb-blue);
}

/* Sidebar */
.actualites-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget-actu {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title-actu {
    font-size: 18px;
    font-weight: 700;
    color: var(--raymb-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--raymb-red);
    display: inline-block;
}

/* Catégories */
.category-list-actu,
.archives-list-actu {
    list-style: none;
    padding: 0;
}

.category-list-actu li,
.archives-list-actu li {
    margin-bottom: 12px;
}

.category-list-actu li a,
.archives-list-actu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list-actu li a:hover,
.archives-list-actu li a:hover {
    color: var(--raymb-red);
}

.cat-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

/* Articles récents */
.recent-posts-actu {
    list-style: none;
    padding: 0;
}

.recent-posts-actu li {
    margin-bottom: 15px;
}

.recent-post-link-actu {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.recent-post-link-actu:hover {
    transform: translateX(5px);
}

.recent-post-image-actu {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image-actu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-image-placeholder-actu {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.recent-post-info-actu {
    flex: 1;
}

.recent-post-title {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

.recent-post-date {
    font-size: 11px;
    color: #999;
}

/* Tags */
.tag-cloud-actu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item-actu {
    background: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag-item-actu:hover {
    background: var(--raymb-red);
    color: white;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-widget-actu {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
}

.newsletter-widget-actu .widget-title-actu {
    color: white;
    border-bottom-color: white;
}

.newsletter-widget-actu p {
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form-actu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form-actu input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form-actu button {
    background: white;
    color: var(--raymb-red);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form-actu button:hover {
    transform: translateY(-2px);
}

/* CTA Widget */
.cta-widget {
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.cta-widget-btn {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-widget-btn:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
}

/* No articles */
.no-actus {
    grid-column: span 3;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
}

.no-actus-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.no-actus h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

.no-actus p {
    color: #666;
    margin-bottom: 25px;
}

.back-to-actus {
    display: inline-block;
    background: var(--raymb-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .actualites-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .actualites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pagination-actu {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .actualites-hero h1 {
        font-size: 32px;
    }
    
    .actualites-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-form-actu {
        max-width: none;
    }
    
    .actualites-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-actu {
        grid-column: span 1;
    }
    
    .actu-card-title {
        font-size: 18px;
    }
    
    .pagination-actu a,
    .pagination-actu span {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .actu-card-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* ==============================================
   SINGLE POST - PAGE D'ARTICLE
   ============================================== */

/* Hero Section */
.single-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

.single-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.single-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.single-category {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.single-category:hover {
    background: white;
    color: var(--raymb-red);
}

.single-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.single-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.meta-icon {
    font-size: 16px;
}

/* Layout */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    margin-bottom: 60px;
}

/* Fil d'Ariane */
.single-breadcrumb {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
}

.single-breadcrumb a {
    color: var(--raymb-blue);
    text-decoration: none;
}

.single-breadcrumb a:hover {
    color: var(--raymb-red);
}

.single-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.single-breadcrumb .current {
    color: #666;
}

/* Image mise en avant */
.single-featured-image {
    margin-bottom: 35px;
}

.featured-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

/* Contenu de l'article */
.single-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    color: var(--raymb-blue);
    margin: 30px 0 15px;
}

.single-content h2 {
    font-size: 32px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.single-content h3 {
    font-size: 26px;
}

.single-content p {
    margin-bottom: 20px;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.single-content ul,
.single-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-content li {
    margin-bottom: 10px;
}

.single-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--raymb-red);
    padding: 20px 30px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.single-content blockquote p {
    margin-bottom: 0;
}

.single-content code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.single-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
}

/* Page links */
.page-links {
    margin: 30px 0;
    text-align: center;
}

.page-link {
    display: inline-block;
    padding: 8px 15px;
    background: #f0f0f0;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.page-link:hover {
    background: var(--raymb-red);
    color: white;
}

/* Tags */
.single-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.tags-title {
    font-weight: 700;
    color: #333;
}

.tags-list a {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    margin: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: var(--raymb-red);
    color: white;
}

/* Partage social */
.single-share {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.share-title {
    font-weight: 700;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.email {
    background: #6c757d;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Auteur */
.single-author-box {
    display: flex;
    gap: 25px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 14px;
    color: var(--raymb-red);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.author-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-link {
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: var(--raymb-blue);
}

/* Navigation entre articles */
.single-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.nav-prev a,
.nav-next a {
    display: inline-block;
    padding: 12px 25px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-prev a:hover,
.nav-next a:hover {
    background: var(--raymb-red);
    color: white;
}

/* Articles similaires */
.related-posts {
    margin-bottom: 50px;
}

.related-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--raymb-blue);
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-content h4 a {
    color: var(--raymb-blue);
    text-decoration: none;
}

.related-content h4 a:hover {
    color: var(--raymb-red);
}

.related-date {
    font-size: 12px;
    color: #999;
}

/* Commentaires */
.single-comments {
    margin-top: 40px;
}

/* Sidebar */
.single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--raymb-blue);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--raymb-red);
    display: inline-block;
}

.widget-categories {
    list-style: none;
    padding: 0;
}

.widget-categories li {
    margin-bottom: 12px;
}

.widget-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.widget-categories li a:hover {
    color: var(--raymb-red);
}

.widget-categories li a span {
    background: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.widget-recent {
    list-style: none;
    padding: 0;
}

.widget-recent li {
    margin-bottom: 15px;
}

.widget-recent li a {
    display: flex;
    flex-direction: column;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-recent li a:hover {
    color: var(--raymb-red);
}

.widget-recent li a span {
    font-size: 12px;
    color: #999;
}

.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    background: white;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--raymb-red);
    color: white;
}

/* CTA Widget */
.cta-widget-single {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
}

.cta-content-single .cta-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.cta-content-single h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-content-single p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-btn-single {
    display: inline-block;
    background: white;
    color: var(--raymb-red);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-single:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-title {
        font-size: 32px;
    }
    
    .single-meta {
        gap: 15px;
    }
    
    .single-content {
        font-size: 16px;
    }
    
    .single-content h2 {
        font-size: 28px;
    }
    
    .single-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .single-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .single-share {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .single-title {
        font-size: 28px;
    }
    
    .single-meta {
        flex-direction: column;
        align-items: center;
    }
}


/* ==============================================
   PAGE CARRIÈRE STYLES
   ============================================== */

.carriere-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.carriere-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

/* Why Join */
.why-join {
    text-align: center;
    margin-bottom: 60px;
}

.why-join h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--raymb-blue);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

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

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

/* Our Values */
.our-values-career {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 60px;
}

.our-values-career h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--raymb-blue);
}

.values-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-item {
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--raymb-red);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--raymb-red);
    color: white;
    border-color: var(--raymb-red);
}

/* Jobs Section */
.jobs-section {
    margin-bottom: 60px;
}

.jobs-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--raymb-blue);
    text-align: center;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.job-card-header h3 {
    font-size: 24px;
    color: var(--raymb-blue);
    margin: 0;
}

.job-urgent {
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.info-icon {
    font-size: 16px;
}

.job-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-apply-btn {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
}

.no-jobs {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
    color: #666;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--raymb-red);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.submit-application {
    width: 100%;
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-application:hover {
    background: var(--raymb-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .carriere-hero h1 {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-card-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .values-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page carrière et le modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background: var(--raymb-blue);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: white;
}

.modal-close {
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
    color: white;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Job card buttons */
.job-card-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.job-details-btn {
    background: var(--raymb-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.job-details-btn:hover {
    background: #0a2b5e;
    transform: translateY(-2px);
    color: white;
}

.job-apply-btn {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: #a01d22;
    transform: translateY(-2px);
}

/* Job detail page */
.job-detail-hero {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

.job-detail-header {
    max-width: 800px;
    margin: 0 auto;
}

.job-breadcrumb {
    margin-bottom: 20px;
}

.job-breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.job-breadcrumb a:hover {
    opacity: 1;
}

.job-title-section {
    margin-bottom: 30px;
}

.urgent-badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-title-section h1 {
    color: white;
    font-size: 42px;
    margin: 0;
}

.job-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-meta-item .meta-icon {
    font-size: 24px;
}

.job-meta-item .meta-label {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

.job-meta-item .meta-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

/* Job detail layout */
.job-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.job-description-full h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.job-description-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.job-description-text ul,
.job-description-text ol {
    margin: 20px 0;
    padding-left: 25px;
}

.job-description-text li {
    margin-bottom: 10px;
}

.job-apply-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.job-apply-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.btn-apply-large {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-apply-large:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
}

/* Job sidebar */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-info-card,
.job-contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.job-info-card h3,
.job-contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--raymb-blue);
}

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

.job-info-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.job-contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    padding: 8px 0;
    color: var(--raymb-red);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--raymb-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .job-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .job-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-title-section h1 {
        font-size: 32px;
    }
    
    .job-meta-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card-buttons {
        flex-direction: column;
    }
    
    .job-details-btn,
    .job-apply-btn {
        text-align: center;
        justify-content: center;
    }
}

/* Job detail container */
.job-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.job-back-link {
    margin-bottom: 30px;
}

.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--raymb-blue);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.back-to-list:hover {
    gap: 12px;
    color: var(--raymb-red);
}

.job-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.job-detail-header {
    background: linear-gradient(135deg, var(--raymb-blue), var(--raymb-red));
    color: white;
    padding: 40px;
}

.job-title-area {
    margin-bottom: 25px;
}

.job-detail-title {
    color: white;
    font-size: 36px;
    margin: 10px 0 0;
}

.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
}

.job-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-detail-meta .meta-icon {
    font-size: 24px;
}

.job-detail-meta .meta-label {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.job-detail-meta .meta-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.job-detail-description {
    padding: 40px;
}

.job-detail-description h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--raymb-blue);
}

.description-content {
    color: #555;
    line-height: 1.8;
}

.description-content ul,
.description-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.description-content li {
    margin-bottom: 8px;
}

.job-detail-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px 40px;
    border-top: 1px solid #e0e0e0;
}

.contact-info-side h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--raymb-blue);
}

.contact-info-side p {
    color: #666;
    margin-bottom: 15px;
}

.contact-email {
 
    color: var(--raymb-red);
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    color: var(--raymb-blue);
}

.btn-apply-from-detail {
    background: var(--raymb-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-apply-from-detail:hover {
    background: var(--raymb-blue);
    transform: translateY(-2px);
}

.job-card-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.job-details-btn {
    background: var(--raymb-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.job-details-btn:hover {
    background: #0a2b5e;
    transform: translateY(-2px);
    color: white;
}

.job-not-found {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    background: var(--raymb-red);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .job-detail-header {
        padding: 25px;
    }
    
    .job-detail-meta {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .job-detail-title {
        font-size: 28px;
    }
    
    .job-detail-description {
        padding: 25px;
    }
    
    .job-detail-footer {
        grid-template-columns: 1fr;
        padding: 25px;
        text-align: center;
    }
    
    .job-card-buttons {
        flex-direction: column;
    }
    
    .job-details-btn,
    .job-apply-btn {
        text-align: center;
        justify-content: center;
    }
}

/* ==============================================
   SLIDER STYLES
   ============================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,43,94,0.85), rgba(193,39,45,0.75));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.slide-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-title .highlight {
    color: var(--raymb-red);
}

.slide-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--raymb-red);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: white;
    color: var(--raymb-red);
    transform: translateY(-3px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--raymb-red);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--raymb-red);
    opacity: 1;
}

/* Stats Banner Home */
.stats-banner-home {
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item-home {
    text-align: center;
}

.stat-item-home .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--raymb-red);
    margin-bottom: 8px;
}

.stat-item-home .stat-label {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .stats-grid-home {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .stats-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

