/* 
 * Lfreshridge - Main Stylesheet
 * Author: Lfreshridge Design Team
 * Version: 1.0
 */


:root {
    
    --color-primary: #7D2027;
    --color-primary-dark: #4B1D22;
    --color-cream: #F5F0E5;
    
    
    --color-beige: #E9DDCA;
    --color-brown: #6C4B3F;
    --color-green: #223A27;
    
    
    --color-gold: #CAAB69;
    --color-purple: #4A334F;
    
    
    --color-slate: #484952;
    --color-gray-light: #E3E1DC;
    --color-off-white: #FDFBF7;
    
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    
    --header-height: 80px;
    --footer-bg: var(--color-primary-dark);
    --body-bg: var(--color-off-white);
    
    
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}


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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--body-bg);
    color: var(--color-slate);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, a:focus {
    color: var(--color-primary-dark);
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}


.vintage-corner {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath fill='%23CAAB69' fill-opacity='0.15' d='M0 0h200v200H0z'/%3E%3Cpath fill='%237D2027' fill-opacity='0.1' d='M20 20h160v160H20z'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.vintage-corner.top-right {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.vintage-corner.bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
}

.image-decorative-element {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23CAAB69' fill-opacity='0.25' d='M0 0h80v80H0z'/%3E%3Cpath stroke='%237D2027' stroke-width='2' stroke-opacity='0.2' fill='none' d='M20 20h40v40H20z'/%3E%3C/svg%3E");
    z-index: 1;
}


.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
}


.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    z-index: 999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    color: white;
}




.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
    transition: all 0.3s ease;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
}

.site-header .uk-navbar-container {
    background: transparent !important;
}

.site-header .uk-navbar-nav > li > a {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: var(--color-slate);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0 16px;
    min-height: 60px;
}

.site-header .uk-navbar-nav > li:hover > a,
.site-header .uk-navbar-nav > li > a:focus,
.site-header .uk-navbar-nav > li.uk-active > a {
    color: var(--color-primary);
    text-decoration: none;
}

.site-header .uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .uk-navbar-nav > li:hover > a::after,
.site-header .uk-navbar-nav > li > a:focus::after,
.site-header .uk-navbar-nav > li.uk-active > a::after {
    width: 30px;
}

.site-header .uk-navbar-dropdown {
    background-color: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 25px;
    width: 220px;
}

.site-header .uk-navbar-dropdown-nav > li > a {
    color: var(--color-slate);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.site-header .uk-navbar-dropdown-nav > li:hover > a,
.site-header .uk-navbar-dropdown-nav > li > a:focus,
.site-header .uk-navbar-dropdown-nav > li.uk-active > a {
    color: var(--color-primary);
    background-color: var(--color-gray-light);
}

.header-buttons {
    margin-left: 24px;
}

.header-buttons a + a {
    margin-left: 8px;
}


.site-footer {
    background-color: var(--footer-bg);
    color: var(--color-gray-light);
    padding: 60px 0 30px;
}

.site-footer h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.site-footer a {
    color: var(--color-gray-light);
    transition: color 0.3s;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--color-gold);
    text-decoration: none;
}

.site-footer .uk-list-divider > li:not(:first-child) {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.contact-list i {
    color: var(--color-gold);
    width: 20px;
    margin-right: 10px;
}

.footer-logo {
    filter: brightness(1.2);
}




.uk-button {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.2px;
}

.uk-button-default {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
}

.uk-button-default:hover,
.uk-button-default:focus {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.uk-button-primary {
    background-color: var(--color-primary);
}

.uk-button-primary:hover,
.uk-button-primary:focus {
    background-color: var(--color-primary-dark);
}

.uk-button-secondary {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
}

.uk-button-secondary:hover,
.uk-button-secondary:focus {
    background-color: #BFA05E;
    color: var(--color-primary-dark);
}

.uk-button-text {
    color: var(--color-primary);
}

.uk-button-text:hover,
.uk-button-text:focus {
    color: var(--color-primary-dark);
}


.uk-card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.uk-card:hover {
    box-shadow: var(--shadow-md);
}


.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
}

.uk-text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.uk-section-primary {
    background-color: var(--color-primary);
}

.uk-section-secondary {
    background-color: var(--color-primary-dark);
}

.uk-section-muted {
    background-color: var(--color-gray-light);
}


.uk-modal-dialog {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.uk-modal-title {
    color: var(--color-primary-dark);
}




.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    color: white;
    z-index: 1;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gold);
}

.hero-content h1 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    margin-bottom: 30px;
}

.hero-buttons a + a {
    margin-left: 15px;
}


.about-section {
    position: relative;
    overflow: hidden;
}

.about-section h2 {
    color: white;
}

.about-section h2::after {
    background-color: var(--color-gold);
}

.about-section p {
    color: var(--color-gray-light);
}

.about-section .uk-text-lead {
    color: white;
}

.about-image {
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
}


.course-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border-top: 3px solid var(--color-gold);
}

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

.course-header {
    padding: 20px 25px 10px;
    border-bottom: 1px solid var(--color-gray-light);
}

.course-header h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: var(--color-slate);
}

.course-meta span i {
    margin-right: 5px;
    color: var(--color-gold);
}

.course-body {
    padding: 20px 25px;
}

.course-price {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-primary);
    margin: 15px 0;
}


.calendar-controls {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 15px;
    transition: all 0.3s;
}

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

.calendar-table {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.calendar-table th {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.calendar-item td {
    vertical-align: middle;
}


.process-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 3px solid var(--color-gold);
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.process-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.process-card h3 {
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}


.advantage-card {
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

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

.advantage-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.advantage-card h3 {
    color: white;
    margin-bottom: 15px;
}

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


.gallery-section .uk-grid a {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-section .uk-grid a:hover {
    transform: scale(1.03);
}


.uk-accordion-title {
    color: var(--color-primary-dark);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.uk-accordion-title:hover {
    background-color: white;
    color: var(--color-primary);
}

.uk-accordion-content {
    padding: 0 15px 15px;
}


.contact-form-section {
    position: relative;
    overflow: hidden;
}

.contact-form-section h2 {
    color: white;
}

.contact-form-section h2::after {
    background-color: var(--color-gold);
}

.contact-form-section p {
    color: var(--color-gray-light);
}

.contact-form-section .uk-text-lead {
    color: white;
}

.contact-form {
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.contact-form .uk-form-label {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.contact-form .uk-input,
.contact-form .uk-textarea {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(125, 32, 39, 0.1);
}

.contact-info {
    color: var(--color-gray-light);
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--color-gold);
    font-size: 24px;
    margin-right: 15px;
    width: 24px;
}

.contact-item h4 {
    color: white;
    margin-bottom: 5px;
}


.thank-you-section {
    background-color: var(--color-off-white);
    min-height: calc(100vh - var(--header-height) - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background-color: white;
    position: relative;
}

.thank-you-icon {
    font-size: 70px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.thank-you-icon i {
    background: -webkit-linear-gradient(var(--color-gold), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.consultant-hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-off-white);
}

.consultant-portrait img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    border: 10px solid white;
    transition: all 0.3s ease;
}

.consultant-portrait img:hover {
    transform: rotate(0deg) scale(1.02);
}

.consultant-intro h1 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.consultant-intro .uk-text-lead {
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 30px;
}

.consultant-quote {
    padding: 25px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 3px solid var(--color-gold);
    font-style: italic;
}

.consultant-bio h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.methodology-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
}

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

.methodology-icon {
    font-size: 35px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.methodology-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.methodology-quote {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--color-off-white);
    border-radius: var(--radius-md);
    position: relative;
    font-style: italic;
    box-shadow: var(--shadow-sm);
}

.module-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.module-image {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.module-image img {
    transition: all 0.5s ease;
}

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

.module-content h3 {
    color: var(--color-primary);
    margin-bottom: 5px;
}

.module-meta {
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.module-content h4 {
    color: var(--color-primary-dark);
    margin: 20px 0 10px;
    font-weight: 600;
}

.publication-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.publication-card h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-gray-light);
}

.publication-date {
    font-weight: 600;
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px;
}

.publication-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.publication-source {
    font-style: italic;
    color: var(--color-slate);
    font-size: 14px;
}



.corporate-hero,
.formation-hero,
.events-hero,
.subscription-hero {
    position: relative;
    padding: 60px 0;
}

.corporate-hero h1,
.formation-hero h1,
.events-hero h1,
.subscription-hero h1 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.corporate-hero .uk-text-lead,
.formation-hero .uk-text-lead,
.events-hero .uk-text-lead,
.subscription-hero .uk-text-lead {
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

.corporate-hero p,
.formation-hero p,
.events-hero p,
.subscription-hero p {
    color: var(--color-gray-light);
    margin-bottom: 25px;
}

.corporate-service-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.corporate-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 35px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.scenario-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 3px solid var(--color-gold);
}

.scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.scenario-icon {
    font-size: 30px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.scenario-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.process-step-card {
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

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

.process-step-card .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--color-gold);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.process-step-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.uk-section-primary .process-step-card .step-number {
    background-color: white;
    color: var(--color-primary);
}

.uk-section-primary .process-step-card h3 {
    color: white;
}

.uk-section-primary .process-step-card p {
    color: var(--color-gray-light);
}


.formation-benefits-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.formation-benefit {
    display: flex;
    margin-bottom: 25px;
}

.formation-benefit:last-child {
    margin-bottom: 0;
}

.formation-benefit .benefit-icon {
    font-size: 24px;
    color: var(--color-gold);
    margin-right: 15px;
    width: 24px;
}

.formation-benefit h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.programme-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.programme-card h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.programme-meta {
    background-color: var(--color-off-white);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.programme-meta p {
    margin-bottom: 10px;
}

.programme-meta p:last-child {
    margin-bottom: 0;
}

.module-item {
    background-color: var(--color-off-white);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.module-item h5 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.module-item p {
    margin: 0;
    font-size: 14px;
}

.tarif-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.tarif-card.featured {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gold);
}

.tarif-card.featured:hover {
    transform: translateY(-15px) scale(1.03);
}

.tarif-header {
    padding: 20px 25px;
    background-color: var(--color-primary-dark);
    color: white;
}

.tarif-card.featured .tarif-header {
    background-color: var(--color-gold);
}

.tarif-header h3 {
    color: white;
    margin-bottom: 5px;
}

.tarif-duration {
    font-size: 14px;
    opacity: 0.8;
}

.tarif-content {
    padding: 25px;
    flex-grow: 1;
}

.tarif-note {
    font-style: italic;
    margin-top: 20px;
    font-size: 14px;
}

.tarif-footer {
    padding: 20px 25px;
    background-color: var(--color-off-white);
}

.tarif-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.tarif-price-detail {
    font-size: 14px;
    color: var(--color-slate);
}

.formation-logistics {
    background-color: var(--color-off-white);
}

.logistics-item {
    margin-bottom: 15px;
}

.logistics-icon {
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.logistics-item h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}


.event-concept-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.concept-image {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.concept-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

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

.concept-content h3 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.concept-content .uk-text-lead {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.case-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
}

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

.case-icon {
    font-size: 30px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.case-card h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.case-card h4 {
    color: var(--color-primary-dark);
    margin: 15px 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.requirements-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.requirements-card h3 {
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-gray-light);
    font-weight: 600;
}

.requirement-item {
    display: flex;
    margin-bottom: 25px;
}

.requirement-item:last-child {
    margin-bottom: 0;
}

.requirement-icon {
    font-size: 24px;
    color: var(--color-gold);
    margin-right: 15px;
    width: 24px;
}

.requirement-item h4 {
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}


.subscription-audience {
    background-color: var(--color-off-white);
    border-radius: var(--radius-sm);
    padding: 20px;
    height: 100%;
}

.audience-icon {
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.subscription-audience h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.subscription-benefits {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.subscription-benefits h3 {
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.subscription-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.subscription-card.featured {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gold);
}

.subscription-card.featured:hover {
    transform: translateY(-5px) scale(1.03);
}

.subscription-header {
    padding: 25px;
    background-color: var(--color-primary-dark);
    color: white;
    text-align: center;
}

.subscription-card.featured .subscription-header {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
}

.subscription-header h3 {
    color: white;
    margin-bottom: 15px;
}

.subscription-card.featured .subscription-header h3 {
    color: var(--color-primary-dark);
}

.subscription-price {
    margin-top: 15px;
}

.subscription-price .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.subscription-price .period {
    font-size: 14px;
    opacity: 0.8;
}

.subscription-content {
    padding: 25px;
    flex-grow: 1;
}

.subscription-note {
    font-style: italic;
    margin-top: 20px;
    font-size: 14px;
}

.subscription-footer {
    padding: 20px 25px;
    background-color: var(--color-off-white);
}

.subscription-custom {
    background-color: var(--color-off-white);
    border-left: 3px solid var(--color-gold);
}

.corporate-benefit {
    display: flex;
    margin-bottom: 20px;
}

.corporate-benefit:last-child {
    margin-bottom: 0;
}

.corporate-benefit .benefit-icon {
    font-size: 24px;
    color: var(--color-gold);
    margin-right: 15px;
    width: 24px;
    margin-bottom: 0;
}

.corporate-benefit h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-example-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.example-image {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.example-image img {
    width: 100%;
    height: auto;
}

.example-content h3 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.example-content .uk-text-lead {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 15px;
}


.contact-hero {
    padding: 60px 0;
}

.contact-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.contact-hero p {
    color: var(--color-gray-light);
}

.contact-hero .uk-text-lead {
    color: white;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background-color: white;
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 24px;
    color: var(--color-gold);
    margin-right: 15px;
}

.contact-card h3 {
    color: var(--color-slate) !important;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.contact-card p {
    margin: 0;
    color: var(--color-slate);
}

.map-container {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.directions-card {
    height: 100%;
}

.direction-item {
    display: flex;
    margin-bottom: 20px;
}

.direction-item:last-child {
    margin-bottom: 0;
}

.direction-icon {
    font-size: 20px;
    color: var(--color-gold);
    margin-right: 15px;
    width: 20px;
}

.direction-item h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}

.direction-item p {
    margin: 0;
}

.space-item {
    background-color: var(--color-off-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.space-item:last-child {
    margin-bottom: 0;
}

.space-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item {
    background-color: var(--color-off-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}


.policy-content {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.policy-content h2 {
    color: var(--color-primary);
    margin: 30px 0 15px;
    font-weight: 600;
}

.policy-content h3 {
    color: var(--color-primary-dark);
    margin: 25px 0 10px;
    font-weight: 600;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-categories {
    margin-top: 30px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-gray-light);
}

.cookie-category:last-child {
    border-bottom: none;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch.disabled {
    opacity: 0.7;
    pointer-events: none;
}


.iti {
    width: 100%;
}


@media (max-width: 959px) {
    .uk-section {
        padding: 40px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .corporate-hero h1,
    .formation-hero h1,
    .events-hero h1,
    .subscription-hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons a + a,
    .uk-button + .uk-button {
        margin-left: 10px;
    }
}

@media (max-width: 639px) {
    .uk-section {
        padding: 30px 0;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-buttons a,
    .hero-buttons a + a {
        display: block;
        width: 100%;
        margin: 10px 0 0 0;
    }
    
    .process-step {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .uk-text-lead {
        font-size: 18px;
    }
    
    .consultant-portrait img {
        transform: rotate(0);
    }
    
    .corporate-hero .uk-button,
    .formation-hero .uk-button,
    .events-hero .uk-button,
    .subscription-hero .uk-button {
        width: 100%;
        margin: 10px 0 0 0;
    }
}