/* ===================================
   DESIGN SYSTEM - VARIABLES
   =================================== */
:root {
    /* Colors */
    --primary: #4B2E2B;
    --secondary: #F5F5DC;
    --accent-red: #e31e24;
    --accent-orange: #ff5722;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 30px;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===================================
   BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background-color: var(--primary);
    padding: 12px 0;
    font-size: 0.85rem;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-link {
    color: var(--bg-white);
    font-weight: var(--font-weight-medium);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.top-bar-link.active {
    border-bottom: 2px solid var(--bg-white);
    padding-bottom: 8px;
}

.top-bar-link:hover {
    opacity: 0.85;
    color: var(--bg-white);
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.top-bar-icon {
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 24px;
    height: auto;
}

.top-bar-link-right {
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link-right:hover {
    opacity: 0.85;
    color: var(--bg-white);
}

.top-bar-link-red {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--border-radius-sm);
}

.top-bar-link-red:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* ===================================
   MAIN NAVIGATION
   =================================== */
.main-nav {
    background-color: var(--secondary);
    /* padding: 15px 0; */
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar-toggler {
    border: 1px solid var(--primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* ===================================
   LOGO NAVBAR - VERSION IMAGE
   =================================== */

.navbar-brand {
    padding: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Si vous voulez ajuster la hauteur selon l'écran */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 40px;
    }
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-hexagon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    position: relative;
}

.logo-hexagon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--accent-orange);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtitle {
    color: var(--text-gray);
    font-size: 0.55rem;
    line-height: 1.3;
    margin-top: 3px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    gap: 10px;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .search-box {
        margin-top: 0;
    }
}

.search-box i {
    color: var(--text-light);
    font-size: 1rem;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: var(--text-dark);
    width: 100%;
    min-width: 150px;
}

.search-input::placeholder {
    color: var(--text-light);
}

/* ===================================
   HERO CAROUSEL - VERSION FINALE
   =================================== */

/* Container principal */
.hero-carousel-section {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

/* Image du carousel */
.hero-carousel-image {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

/* Overlay sombre sur l'image */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Bloc de contenu centré avec fond */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 750px;
    width: 90%;
    z-index: 2;
    padding: 60px 70px;
    border-radius: 16px;
}

/* Titre du carousel */
.carousel-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

/* Description du carousel */
.carousel-description {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
}

/* Bouton du carousel */
.btn-carousel-hero {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 16px 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-carousel-hero:hover {
    background-color: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Boutons de navigation (Previous/Next) */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
    z-index: 100 !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Indicateurs (points) */
.carousel-indicators {
    bottom: 25px;
    margin-bottom: 0;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    background-color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ===================================
   QUICK ACTIONS - 2 PAR LIGNE MOBILE
   =================================== */
.hero-quick-actions {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

.quick-actions-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 35px 20px;
}

.action-item {
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 25px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.action-item:hover {
    background-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.action-icon {
    width: 65px;
    height: 65px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.action-item:hover .action-icon {
    background-color: var(--primary);
    transform: scale(1.15) rotate(5deg);
}

.action-icon i {
    font-size: 1.9rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.action-item:hover .action-icon i {
    color: #ffffff;
}

.action-text {
    font-size: 0.95rem;
    color: var(--primary);
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

/* ===================================
   RESPONSIVE - QUICK ACTIONS
   =================================== */

/* Tablettes (≤ 991px) - 2 colonnes */
@media (max-width: 991px) {
    .quick-actions-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 20px;
    }
    
    .action-item {
        padding: 20px 15px;
    }
}

/* Smartphones (≤ 767px) - 2 colonnes */
@media (max-width: 767px) {
    .quick-actions-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 25px 15px;
    }
    
    .action-item {
        padding: 18px 12px;
        gap: 12px;
    }
    
    .action-icon {
        width: 55px;
        height: 55px;
    }
    
    .action-icon i {
        font-size: 1.6rem;
    }
    
    .action-text {
        font-size: 0.85rem;
    }
}

/* Petits smartphones (≤ 576px) - 2 colonnes */
@media (max-width: 576px) {
    .quick-actions-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 12px;
    }
    
    .action-item {
        padding: 16px 10px;
        gap: 10px;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
    }
    
    .action-icon i {
        font-size: 1.5rem;
    }
    
    .action-text {
        font-size: 0.8rem;
    }
}

/* Très petits smartphones (≤ 480px) - 2 colonnes compactes */
@media (max-width: 480px) {
    .quick-actions-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 18px 10px;
    }
    
    .action-item {
        padding: 14px 8px;
        gap: 8px;
    }
    
    .action-icon {
        width: 48px;
        height: 48px;
    }
    
    .action-icon i {
        font-size: 1.4rem;
    }
    
    .action-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Si vous voulez 1 colonne sur très petits écrans (optionnel) */
@media (max-width: 360px) {
    .quick-actions-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .action-text {
        text-align: left;
        font-size: 0.85rem;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablettes et écrans moyens (≤ 1200px) */
@media (max-width: 1200px) {
    .hero-carousel-image {
        height: 550px;
    }
    
    .carousel-caption-custom {
        max-width: 650px;
        padding: 50px 60px;
    }
    
    .carousel-title {
        font-size: 2.4rem;
    }
    
    .carousel-description {
        font-size: 1.2rem;
    }
    
    .action-item {
        max-width: 200px;
        padding: 20px 15px;
    }
}

/* Tablettes (≤ 991px) */
@media (max-width: 991px) {
    .hero-carousel-image {
        height: 500px;
    }
    
    .carousel-caption-custom {
        max-width: 600px;
        padding: 45px 50px;
    }
    
    .carousel-title {
        font-size: 2.2rem;
    }
    
    .carousel-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .btn-carousel-hero {
        padding: 14px 40px;
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 30px;
    }
    
    .carousel-control-next {
        right: 30px;
    }
    
    /* Actions rapides sur 2 colonnes */
    .quick-actions-wrapper {
        flex-wrap: wrap;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .action-item {
        flex: 0 0 calc(50% - 15px);
        max-width: none;
        margin: 0;
    }
}

/* Smartphones et petites tablettes (≤ 767px) */
@media (max-width: 767px) {
    .hero-carousel-image {
        height: 450px;
    }
    
    .carousel-caption-custom {
        max-width: calc(100% - 40px);
        padding: 40px 35px;
    }
    
    .carousel-title {
        font-size: 1.8rem;
    }
    
    .carousel-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-carousel-hero {
        padding: 13px 35px;
        font-size: 0.95rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .carousel-indicators button.active {
        width: 12px;
        height: 12px;
    }
    
    .quick-actions-wrapper {
        padding: 25px 15px;
        gap: 12px;
    }
    
    .action-item {
        flex: 0 0 calc(50% - 12px);
        padding: 18px 12px;
        gap: 12px;
    }
    
    .action-icon {
        width: 55px;
        height: 55px;
    }
    
    .action-icon i {
        font-size: 1.6rem;
    }
    
    .action-text {
        font-size: 0.85rem;
    }
}

/* Petits smartphones (≤ 576px) */
@media (max-width: 576px) {
    .hero-carousel-image {
        height: 400px;
    }
    
    .carousel-caption-custom {
        max-width: calc(100% - 30px);
        padding: 35px 30px;
        border-radius: 12px;
    }
    
    .carousel-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .carousel-description {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }
    
    .btn-carousel-hero {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

/* Très petits smartphones (≤ 480px) */
@media (max-width: 480px) {
    .hero-carousel-image {
        height: 380px;
    }
    
    .carousel-caption-custom {
        max-width: calc(100% - 25px);
        padding: 30px 25px;
    }
    
    .carousel-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .carousel-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-carousel-hero {
        padding: 11px 28px;
        font-size: 0.85rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
        height: 38px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Actions rapides en colonne sur très petits écrans */
    .quick-actions-wrapper {
        flex-direction: column;
        padding: 20px 15px;
        gap: 10px;
    }
    
    .action-item {
        flex: 1;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        text-align: left;
        padding: 15px 20px;
    }
    
    .action-text {
        text-align: left;
        font-size: 0.9rem;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .action-icon i {
        font-size: 1.4rem;
    }
}

/* Écrans ultra-larges (≥ 1920px) */
@media (min-width: 1920px) {
    .hero-carousel-image {
        height: 700px;
    }
    
    .carousel-caption-custom {
        max-width: 900px;
        padding: 70px 80px;
    }
    
    .carousel-title {
        font-size: 3.2rem;
    }
    
    .carousel-description {
        font-size: 1.4rem;
    }
    
    .btn-carousel-hero {
        padding: 18px 55px;
        font-size: 1.1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 65px;
        height: 65px;
    }
    
    .action-item {
        max-width: 250px;
        padding: 30px 25px;
    }
    
    .action-icon {
        width: 75px;
        height: 75px;
    }
    
    .action-icon i {
        font-size: 2.2rem;
    }
    
    .action-text {
        font-size: 1.05rem;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.service-card-large {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-large-image {
    transform: scale(1.05);
}

.service-large-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-large-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 60px;
    max-width: 700px;
    z-index: 2;
}

.service-large-content h2 {
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
    margin-bottom: 30px;
}

.btn-service-link {
    background-color: transparent;
    color: var(--bg-white);
    border: none;
    border-bottom: 2px solid var(--bg-white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-service-link:hover {
    opacity: 0.85;
    transform: translateX(5px);
}

.service-card-accent {
    background-color: var(--bg-white);
    height: 400px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card-accent:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-accent h3 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 25px;
}

.service-card-accent p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-service-accent {
    background-color: var(--primary);
    color: var(--bg-white);
    border: none;
    padding: 15px 35px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    align-self: flex-start;
}

.btn-service-accent:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-card-medium {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card-medium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-medium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-medium:hover .service-medium-image {
    transform: scale(1.08);
}

.service-medium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-medium-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.service-medium-content h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
}



/* ===================================
   STATISTICS SECTION
   =================================== */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--bg-white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

/* ===================================
   VALUES SECTION
   =================================== */
.values-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: var(--font-weight-normal);
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    /* box-shadow: var(--shadow-sm); */
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-white);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.cta-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.cta-banner-content {
    background-color: var(--primary);
    padding: 60px 70px;
    max-width: 650px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-banner-content h2 {
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-banner-content p {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background-color: var(--bg-white);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    padding: 16px 50px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(71, 30, 17, 0.3);
}

.btn-cta:hover {
    /* background-color: #f4511e; */
    transform: translateY(-3px);
    /* box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4); */
}

/* ===================================
   NEWS SECTION
   =================================== */
.news-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.news-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
}

.news-body {
    padding: 30px;
}

.news-category {
    display: inline-block;
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-body h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    border: 2px solid var(--primary);
    padding: 10px 10px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    background-color: var(--primary);
    gap: 12px;
    color: var(--bg-white);
}

.btn-primary-outline {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-weight: var(--font-weight-semibold);
    border-radius: 10px;
    /* transition: var(--transition); */
}

.btn-primary-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners-section {
    /*padding: 60px 0;*/
    background-color: var(--bg-white);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.partners-carousel {
    /*overflow: hidden;*/
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.partner-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 200px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-carousel-section .partner-card {
  background: none !important;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

/* ===================================
   CTA FINAL SECTION
   =================================== */
.cta-section-final {
    padding: 80px 0;
    background: var(--primary);
    color: var(--bg-white);
}

.cta-section-final h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-section-final p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-light {
    background-color: var(--bg-white);
    color: var(--primary);
    padding: 16px 45px;
    border-radius: 10px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
    background-color: transparent;
    color: var(--bg-white);
    padding: 16px 45px;
    border: 2px solid var(--bg-white);
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #000000;
    color: var(--secondary);
    padding: 60px 0 0;
}

.footer h5 {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 25px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.footer-contact i {
    color: var(--secondary);;
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .hero-carousel-image {
        height: 500px;
    }
    
    .carousel-caption {
        padding: 60px 40px 30px;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-actions {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .action-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .service-card-large,
    .service-card-accent {
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-banner {
        height: 400px;
    }
    
    .cta-banner-content {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 15px 0;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.5rem;
    }
    
    .hero-carousel-image {
        height: 450px;
    }
    
    .carousel-caption {
        padding: 40px 30px 20px;
    }
    
    .carousel-title {
        font-size: 1.6rem;
    }
    
    .carousel-description {
        font-size: 1rem;
    }
    
    .carousel-actions {
        padding: 20px 15px;
    }
    
    .action-item span {
        font-size: 0.75rem;
    }
    
    .service-large-content {
        padding: 40px 30px;
    }
    
    .service-large-content h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-banner {
        height: auto;
        min-height: 500px;
    }
    
    .cta-banner-content {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .cta-banner-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-section-final h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-light,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .carousel-actions {
        flex-direction: column;
    }
    
    .action-item {
        flex: 1;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .partners-track {
        gap: 40px;
    }
}