/* ===== ENHANCED STYLES FOR HDS-IMPACT ===== */
/* Nouvelle charte graphique */

:root {
    --primary-blue: #0A3D62;
    --secondary-green: #2ECC71;
    --accent-orange: #F39C12;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Override primary colors */
.btn-primary {
    background: var(--primary-blue) !important;
}

.btn-primary:hover {
    background: var(--secondary-green) !important;
}

.btn-secondary {
    background: var(--accent-orange) !important;
    color: var(--white) !important;
}

.btn-secondary:hover {
    background: #e67e22 !important;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 280px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem !important;
    color: var(--text-dark) !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-blue) !important;
    padding-left: 2rem !important;
}

.dropdown-menu i {
    font-size: 1.2rem;
    color: var(--secondary-green);
}

.lang-toggle {
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border: 1px solid currentColor !important;
    border-radius: 5px;
}

/* ===== FOOTER ENHANCED ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #062642 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: var(--secondary-green);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 0.5rem;
}

.footer-links i {
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--accent-orange);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: 4rem 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-text .lead {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vision-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ===== SERVICES MAIN GRID ===== */
.services-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-main-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-blue);
}

.service-main-card:nth-child(2) {
    border-top-color: var(--secondary-green);
}

.service-main-card:nth-child(3) {
    border-top-color: var(--accent-orange);
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-main-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-highlights {
    list-style: none;
    margin: 1.5rem 0;
}

.service-highlights li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-highlights i {
    color: var(--secondary-green);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-orange);
}

.testimonial-stars {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--primary-blue);
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 8rem 0 4rem;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-content .lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

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

.section-intro h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-intro .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== TIMELINE (PROCESS) ===== */
.process-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-green);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.3rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.timeline-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ===== SERVICE DETAILS CARDS ===== */
.services-details-section {
    padding: 4rem 0;
}

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

.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-blue);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-green);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.service-detail-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-detail-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-detail-card ul li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

/* ===== CASE STUDIES ===== */
.case-studies-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.case-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.case-study-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.case-challenge, .case-solution {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

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

.result-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-bottom: 0.3rem;
}

.result-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== SPECIALIZED CONTACT ===== */
.specialized-contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.05), rgba(46, 204, 113, 0.05));
}

.specialized-contact-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-green);
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.portfolio-category {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.portfolio-stats .stat {
    text-align: center;
}

.portfolio-stats strong {
    display: block;
    font-size: 1.3rem;
    color: var(--secondary-green);
}

.portfolio-stats span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== TOOLS SECTION ===== */
.tools-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.tool-card i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.tool-card h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ===== FORMATION TYPES ===== */
.formation-types-section {
    padding: 4rem 0;
}

.formation-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.formation-type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.formation-type-card.featured {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.type-icon i {
    font-size: 2rem;
    color: var(--white);
}

.formation-type-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.type-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.type-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.type-benefits i {
    color: var(--secondary-green);
}

/* ===== CATALOG ===== */
.catalog-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.catalog-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.training-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.training-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.training-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.training-category {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.training-duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.training-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.training-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--secondary-green);
}

.price {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== E-LEARNING ===== */
.elearning-section {
    padding: 4rem 0;
}

.elearning-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.elearning-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.module-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 10;
}

.module-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.module-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.module-content {
    padding: 2rem;
}

.module-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.module-rating {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.module-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.module-includes {
    list-style: none;
    margin: 1rem 0;
}

.module-includes li {
    padding: 0.3rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.module-includes i {
    color: var(--secondary-green);
}

.module-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--light-gray);
}

.module-price {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: bold;
}

/* ===== CUSTOM TRAINING ===== */
.custom-training-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.custom-training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.custom-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.custom-training-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary-green);
    flex-shrink: 0;
}

/* ===== PUBLICATIONS ===== */
.filters-section {
    padding: 2rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.publications-filters {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    min-width: 180px;
}

.publications-grid-section {
    padding: 4rem 0;
}

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

.publication-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.publication-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.publication-badge.free {
    background: var(--secondary-green);
    color: var(--white);
}

.publication-badge.paid {
    background: var(--accent-orange);
    color: var(--white);
}

.publication-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.publication-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.publication-category {
    color: var(--secondary-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.publication-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.publication-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.publication-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.publication-price {
    margin: 1rem 0;
    text-align: center;
}

.publication-price strong {
    font-size: 1.3rem;
    color: var(--accent-orange);
}

.publication-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== BLOG ===== */
.blog-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

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

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-date .month {
    display: block;
    font-size: 0.85rem;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 4rem 0;
    background: var(--primary-blue);
    color: var(--white);
}

.newsletter-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
}

/* ===== CONTACT ENHANCEMENTS ===== */
.request-type-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.type-btn {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.type-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.type-btn i {
    font-size: 1.5rem;
}

.contact-form {
    display: none;
}

.contact-form.active {
    display: block;
}

.service-specific-fields {
    display: none;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .vision-content,
    .custom-training-content {
        grid-template-columns: 1fr;
    }

    .contact-features,
    .portfolio-stats,
    .case-results {
        grid-template-columns: 1fr;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .services-main-grid {
        grid-template-columns: 1fr;
    }

    .formation-type-card.featured {
        transform: scale(1);
    }
}
