/*
===========================================
    DBR - Aménagement Intérieur
    Design Premium CSS
    Couleurs: #be1d2c, #8c0c19, #6c6c6c
===========================================
*/

/* =========================================
   CSS Variables
========================================= */
:root {
    /* Couleurs principales DBR */
    --dbr-primary: #be1d2c;
    --dbr-primary-dark: #8c0c19;
    --dbr-primary-light: #d63344;
    --dbr-secondary: #6c6c6c;
    --dbr-secondary-dark: #4a4a4a;
    --dbr-secondary-light: #8a8a8a;

    /* Couleurs neutres */
    --dbr-white: #ffffff;
    --dbr-black: #1a1a1a;
    --dbr-dark: #2a2a2a;
    --dbr-gray-100: #f8f9fa;
    --dbr-gray-200: #e9ecef;
    --dbr-gray-300: #dee2e6;
    --dbr-gray-400: #ced4da;
    --dbr-gray-500: #adb5bd;
    --dbr-gray-600: #6c757d;
    --dbr-gray-700: #495057;
    --dbr-gray-800: #343a40;
    --dbr-gray-900: #212529;

    /* Typographie */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Espacements */
    --section-padding: 100px;
    --section-padding-sm: 60px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-cubic: 0.6s cubic-bezier(0.23, 1, 0.32, 1);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.2);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* =========================================
   Global Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dbr-gray-700);
    background-color: var(--dbr-white);
    overflow-x: hidden;
}

::selection {
    background: var(--dbr-primary);
    color: var(--dbr-white);
}

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

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

/* =========================================
   Typography
========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--dbr-black);
    line-height: 1.3;
}

.text-primary {
    color: var(--dbr-primary) !important;
}

.text-highlight {
    color: var(--dbr-primary);
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dbr-primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--dbr-primary);
}

.section-subtitle-light {
    color: rgba(255,255,255,0.7);
}

.section-subtitle-light::before {
    background: rgba(255,255,255,0.5);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--dbr-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-sm) 0;
    }
}

/* =========================================
   Preloader
========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dbr-white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo img {
    width: 120px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.preloader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--dbr-gray-200);
    border-top-color: var(--dbr-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =========================================
   Top Bar
========================================= */
.top-bar {
    background: var(--dbr-primary);
    padding: 10px 0;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dbr-white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.top-contact:hover {
    color: rgba(255,255,255,0.8);
}

.top-contact i {
    font-size: 12px;
}

.top-bar-text {
    color: var(--dbr-white);
    font-size: 14px;
}

.top-bar-text i {
    margin-right: 5px;
}

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

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--dbr-white);
    border-radius: 50%;
    font-size: 13px;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--dbr-white);
    color: var(--dbr-primary);
    transform: translateY(-2px);
}

/* =========================================
   Main Header / Navigation
========================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /*background: var(--dbr-white);*/
    background: var(--dbr-dark);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-main {
    height: 60px;
    transition: var(--transition-normal);
}

.navbar-brand .logo-scroll {
    display: none;
    height: 50px;
}

.main-header.scrolled .logo-main {
    display: none;
}

.main-header.scrolled .logo-scroll {
    display: block;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--dbr-white);
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--dbr-primary);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--dbr-primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

/* Dropdown Menu */
.dropdown-menu-dbr {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    margin-top: 10px;
    min-width: 250px;
}

.dropdown-menu-dbr .dropdown-item {
    padding: 12px 25px;
    font-size: 14px;
    color: var(--dbr-gray-700);
    transition: var(--transition-fast);
}

.dropdown-menu-dbr .dropdown-item i {
    margin-right: 10px;
    font-size: 10px;
    color: var(--dbr-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.dropdown-menu-dbr .dropdown-item:hover {
    background: var(--dbr-gray-100);
    color: var(--dbr-primary);
    padding-left: 35px;
}

.dropdown-menu-dbr .dropdown-item:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    width: 28px;
    gap: 6px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--dbr-white);
    transition: var(--transition-normal);
}

/* =========================================
   Buttons
========================================= */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 16px 38px;
    font-size: 15px;
}

.btn-dbr-primary {
    background: var(--dbr-primary);
    color: var(--dbr-white);
    position: relative;
    overflow: hidden;
}

.btn-dbr-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dbr-primary-dark);
    transition: var(--transition-cubic);
}

.btn-dbr-primary:hover {
    color: var(--dbr-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(190, 29, 44, 0.3);
}

.btn-dbr-primary:hover::before {
    left: 0;
}

.btn-dbr-primary span,
.btn-dbr-primary i {
    position: relative;
    z-index: 1;
}

.btn-dbr-primary i {
    transition: var(--transition-normal);
}

.btn-dbr-primary:hover i {
    transform: translateX(5px);
}

.btn-dbr-outline {
    background: transparent;
    border: 2px solid var(--dbr-primary);
    color: var(--dbr-primary);
}

.btn-dbr-outline:hover {
    background: var(--dbr-primary);
    color: var(--dbr-white);
    transform: translateY(-2px);
}

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

.btn-dbr-white:hover {
    background: var(--dbr-black);
    color: var(--dbr-white);
    transform: translateY(-2px);
}

/* =========================================
   Hero Slider
========================================= */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    max-width: 750px;
}

.slide-subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--dbr-primary);
    margin-bottom: 20px;
}

.slide-title {
    font-family: var(--font-secondary);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--dbr-white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.slide-title .text-highlight {
    color: var(--dbr-primary);
}

.slide-description {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Slider Navigation */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--dbr-white);
    transition: var(--transition-normal);
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: var(--dbr-primary);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
    display: none;
}

.heroSwiper .swiper-button-prev i,
.heroSwiper .swiper-button-next i {
    font-size: 18px;
}

/* Slider Pagination */
.heroSwiper .swiper-pagination {
    bottom: 40px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transition: var(--transition-normal);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--dbr-primary);
    width: 40px;
    border-radius: 6px;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.slider-progress .progress-bar {
    height: 100%;
    background: var(--dbr-primary);
    width: 0;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--dbr-white);
    font-family: var(--font-secondary);
}

.slide-counter .current {
    font-size: 48px;
    font-weight: 700;
    color: var(--dbr-primary);
}

.slide-counter .separator {
    font-size: 24px;
    margin: 0 5px;
}

.slide-counter .total {
    font-size: 24px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dbr-white);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dbr-primary);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Hero Social */
.hero-social {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--dbr-white);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.hero-social a:hover {
    background: var(--dbr-primary);
    transform: scale(1.1);
}

/* =========================================
   About Section
========================================= */
.about-section {
    overflow: hidden;
}

.about-images {
    position: relative;
    padding: 30px;
}

.about-img-main {
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    z-index: 3;
}

.about-img-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 5px solid var(--dbr-white);
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

.experience-inner {
    width: 140px;
    height: 140px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dbr-white);
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 5px;
}

.about-content .lead {
    font-size: 18px;
    color: var(--dbr-gray-700);
    margin-bottom: 20px;
}

.about-text {
    color: var(--dbr-secondary);
    margin-bottom: 15px;
}

.about-features {
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--dbr-primary), var(--dbr-primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-size: 20px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.feature-content p {
    font-size: 14px;
    color: var(--dbr-secondary);
    margin: 0;
}

/* =========================================
   Services Section
========================================= */
.services-section {
    background-color: var(--dbr-gray-100);
}

.service-card {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

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

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 50px;
    height: 50px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.service-card:hover .service-link {
    transform: translateY(0);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--dbr-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.service-text {
    color: var(--dbr-secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--dbr-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-btn i {
    font-size: 10px;
    transition: var(--transition-fast);
}

.service-btn:hover {
    color: var(--dbr-primary-dark);
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Service CTA Card */
.service-card-cta {
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.service-cta-content {
    text-align: center;
    padding: 40px;
}

.service-cta-content h3 {
    color: var(--dbr-white);
    font-size: 28px;
    margin-bottom: 15px;
}

.service-cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* =========================================
   Gallery Section
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-item-lg {
    grid-column: span 2;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dbr-primary);
    margin-bottom: 5px;
    display: block;
}

.gallery-title {
    color: var(--dbr-white);
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
}

.gallery-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dbr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-primary);
    transform: scale(0);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item-lg {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-lg {
        grid-column: span 1;
    }
}

/* =========================================
   Stats Section
========================================= */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--dbr-white);
    padding: 30px 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
}

/* =========================================
   News Section
========================================= */
.news-card {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

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

.news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dbr-primary);
    color: var(--dbr-white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    line-height: 1.2;
}

.news-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.news-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.news-meta span {
    font-size: 13px;
    color: var(--dbr-secondary);
}

.news-meta i {
    margin-right: 5px;
    color: var(--dbr-primary);
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    line-height: 1.4;
}

.news-title a {
    color: var(--dbr-black);
}

.news-title a:hover {
    color: var(--dbr-primary);
}

.news-excerpt {
    color: var(--dbr-secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

.news-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--dbr-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link i {
    font-size: 10px;
    transition: var(--transition-fast);
}

.news-link:hover {
    color: var(--dbr-primary-dark);
}

.news-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   Reviews Section
========================================= */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.google-logo {
    height: 30px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 20px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--dbr-black);
}

.rating-count {
    color: var(--dbr-secondary);
}

.reviewsSwiper {
    padding: 20px 5px 50px;
}

.review-card {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.review-card:hover {
    box-shadow: var(--shadow-xl);
}

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

.reviewer-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--dbr-primary), var(--dbr-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-weight: 700;
    font-size: 18px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

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

.google-icon {
    width: 40px;
    height: 40px;
    background: var(--dbr-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285f4;
    font-size: 18px;
}

.review-text {
    color: var(--dbr-gray-700);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    font-size: 13px;
    color: var(--dbr-secondary);
}

.reviewsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--dbr-gray-300);
    opacity: 1;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    background: var(--dbr-primary);
    width: 30px;
    border-radius: 5px;
}

/* =========================================
   Process Section
========================================= */
.process-section {
    background: var(--dbr-dark);
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.process-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.process-number {
    font-family: var(--font-secondary);
    font-size: 60px;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--dbr-white);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(190, 29, 44, 0.4);
}

.process-title {
    color: var(--dbr-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.process-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

@media (max-width: 991px) {
    .process-timeline::before {
        display: none;
    }
}

/* =========================================
   CTA Section
========================================= */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--dbr-white);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 15px;
}

.cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin: 0;
}

/* =========================================
   Footer
========================================= */
.footer-section {
    background: var(--dbr-dark);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-size: 16px;
    transition: var(--transition-normal);
}

.footer-social .social-link:hover {
    background: var(--dbr-primary);
    transform: translateY(-3px);
}

.footer-widget-title {
    color: var(--dbr-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--dbr-primary);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--dbr-primary);
    margin-right: 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--dbr-white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 10px;
    margin-right: 8px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-primary);
    font-size: 16px;
}

.footer-contact .contact-text span {
    display: block;
    font-size: 13px;
    color: var(--dbr-primary);
    margin-bottom: 3px;
}

.footer-contact .contact-text p,
.footer-contact .contact-text a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.footer-contact .contact-text a:hover {
    color: var(--dbr-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.copyright strong {
    color: var(--dbr-primary);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom-links li a:hover {
    color: var(--dbr-primary);
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
    }
}

/* =========================================
   Back to Top Button
========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dbr-primary);
    color: var(--dbr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dbr-primary-dark);
    color: var(--dbr-white);
    transform: translateY(-5px);
}

/* =========================================
   Mobile Menu (Offcanvas)
========================================= */
.offcanvas-dbr {
    max-width: 350px;
    background: var(--dbr-white);
}

.offcanvas-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--dbr-gray-200);
}

.offcanvas-logo img {
    height: 50px;
}

.btn-close-dbr {
    width: 40px;
    height: 40px;
    background: var(--dbr-gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dbr-black);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-close-dbr:hover {
    background: var(--dbr-primary);
    color: var(--dbr-white);
}

.offcanvas-body {
    padding: 30px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.mobile-nav > li {
    border-bottom: 1px solid var(--dbr-gray-200);
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--dbr-black);
}

.mobile-nav > li > a.active,
.mobile-nav > li > a:hover {
    color: var(--dbr-primary);
}

.mobile-nav .submenu {
    list-style: none;
    padding: 0 0 15px 15px;
    margin: 0;
    display: none;
}

.mobile-nav .submenu.active {
    display: block;
}

.mobile-nav .submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dbr-secondary);
}

.mobile-nav .submenu li a:hover {
    color: var(--dbr-primary);
}

.mobile-contact-info {
    margin-bottom: 25px;
}

.mobile-contact-info h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dbr-black);
    margin-bottom: 15px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--dbr-secondary);
    font-size: 14px;
}

.mobile-contact-info a i {
    color: var(--dbr-primary);
    width: 20px;
}

.mobile-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-social a {
    width: 45px;
    height: 45px;
    background: var(--dbr-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-black);
    font-size: 16px;
    transition: var(--transition-fast);
}

.mobile-social a:hover {
    background: var(--dbr-primary);
    color: var(--dbr-white);
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 1200px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-social,
    .slide-counter,
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }

    .about-images {
        padding: 0;
        margin-bottom: 50px;
    }

    .about-img-secondary {
        position: relative;
        width: 80%;
        margin-top: -100px;
        margin-left: auto;
    }

    .about-experience {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        padding: 80px 0;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        display: none;
    }

    .about-img-main img {
        height: 400px;
    }

    .experience-inner {
        width: 100px;
        height: 100px;
    }

    .experience-number {
        font-size: 32px;
    }

    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-description {
        font-size: 16px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* =========================================
   Animations
========================================= */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom fade animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Utility Classes
========================================= */
.bg-light {
    background-color: var(--dbr-gray-100) !important;
}

.bg-dark {
    background-color: var(--dbr-dark) !important;
}

.text-white {
    color: var(--dbr-white) !important;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* =========================================
   Print Styles
========================================= */
@media print {
    .top-bar,
    .main-header,
    .hero-slider,
    .back-to-top,
    #preloader {
        display: none !important;
    }
}

/* =========================================
   Page Header (Inner Pages)
========================================= */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.6) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}

.page-header .breadcrumb-item {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item a:hover {
    color: var(--dbr-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--dbr-white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "/";
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--dbr-white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

/* =========================================
   Projects Gallery (Galerie Page)
========================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.project-link {
    display: block;
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(190, 29, 44, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: var(--dbr-white);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay-content {
    transform: translateY(0);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: var(--dbr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--dbr-primary);
    font-size: 24px;
}

.project-view {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info {
    padding: 25px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dbr-black);
    margin-bottom: 10px;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--dbr-primary);
}

.project-excerpt {
    font-size: 14px;
    color: var(--dbr-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--dbr-gray-200);
}

.project-photos {
    font-size: 13px;
    color: var(--dbr-secondary);
}

.project-photos i {
    margin-right: 5px;
    color: var(--dbr-primary);
}

.project-arrow {
    width: 35px;
    height: 35px;
    background: var(--dbr-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-primary);
    transition: var(--transition-fast);
}

.project-card:hover .project-arrow {
    background: var(--dbr-primary);
    color: var(--dbr-white);
}

/* No Projects */
.no-projects {
    padding: 80px 40px;
    background: var(--dbr-gray-100);
    border-radius: var(--radius-lg);
}

.no-projects-icon {
    width: 100px;
    height: 100px;
    background: var(--dbr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--dbr-gray-400);
}

.no-projects h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.no-projects p {
    color: var(--dbr-secondary);
    margin-bottom: 25px;
}

/* Gallery CTA Section */
.gallery-cta-section {
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
    padding: 60px 0;
}

.gallery-cta-content {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.gallery-cta-content h2 {
    color: var(--dbr-white);
    font-size: 28px;
    margin-bottom: 10px;
}

.gallery-cta-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 220px;
    }
}

/* =========================================
   Project Detail Page
========================================= */
.page-header-project {
    padding: 180px 0 100px;
}

.project-description {
    margin-bottom: 50px;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dbr-gray-700);
}

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

/* Project Photos Grid */
.project-photos-section {
    margin-top: 50px;
}

.photos-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
}

.photos-title i {
    color: var(--dbr-primary);
}

.photos-count {
    font-size: 14px;
    font-weight: 400;
    color: var(--dbr-secondary);
    margin-left: auto;
}

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

.photo-item a {
    display: block;
}

.photo-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.photo-item:hover .photo-wrapper img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-zoom {
    width: 50px;
    height: 50px;
    background: var(--dbr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-primary);
    font-size: 18px;
    transform: scale(0);
    transition: var(--transition-normal);
}

.photo-item:hover .photo-zoom {
    transform: scale(1);
}

.photo-info {
    padding: 15px 0;
}

.photo-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dbr-black);
    font-family: var(--font-primary);
}

.photo-description {
    font-size: 14px;
    color: var(--dbr-secondary);
    margin: 0;
}

/* Project Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.sidebar-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--dbr-primary);
    font-family: var(--font-primary);
}

.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--dbr-gray-200);
}

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

.info-label {
    color: var(--dbr-secondary);
    font-size: 14px;
}

.info-label i {
    margin-right: 8px;
    color: var(--dbr-primary);
}

.info-value {
    font-weight: 600;
    color: var(--dbr-black);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
}

.cta-card-content h4 {
    color: var(--dbr-white);
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-card-content p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Other Projects */
.other-projects-list {
    margin-bottom: 20px;
}

.other-project-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--dbr-gray-200);
    transition: var(--transition-fast);
}

.other-project-item:last-child {
    border-bottom: none;
}

.other-project-item:hover {
    padding-left: 10px;
}

.other-project-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.other-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-project-info h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dbr-black);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.other-project-item:hover .other-project-info h5 {
    color: var(--dbr-primary);
}

.other-project-info span {
    font-size: 13px;
    color: var(--dbr-secondary);
}

.view-all-link {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dbr-primary);
    padding-top: 15px;
    border-top: 1px solid var(--dbr-gray-200);
}

.view-all-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Project Navigation */
.project-navigation-section {
    background: var(--dbr-gray-100);
    padding: 30px 0;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-prev,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-prev a,
.nav-next a {
    display: inline-block;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: var(--dbr-secondary);
    margin-bottom: 5px;
}

.nav-label i {
    color: var(--dbr-primary);
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dbr-black);
    transition: var(--transition-fast);
}

.nav-prev a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: var(--dbr-primary);
}

.nav-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background: var(--dbr-white);
    border-radius: var(--radius-md);
    color: var(--dbr-black);
    transition: var(--transition-fast);
}

.nav-all i {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dbr-primary);
}

.nav-all span {
    font-size: 13px;
}

.nav-all:hover {
    background: var(--dbr-primary);
    color: var(--dbr-white);
}

.nav-all:hover i {
    color: var(--dbr-white);
}

@media (max-width: 768px) {
    .project-photos-grid {
        grid-template-columns: 1fr;
    }

    .project-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-prev,
    .nav-next {
        width: 100%;
        text-align: center;
    }

    .nav-all {
        order: -1;
    }
}

/* =========================================
   Page Entreprise
========================================= */
.page-header-entreprise {
    padding: 180px 0 100px;
}

/* Story Section */
.about-story-section {
    overflow: hidden;
}

.story-images {
    position: relative;
    padding: 30px;
}

.story-img-main {
    position: relative;
    z-index: 2;
}

.story-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.story-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 3;
}

.story-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 5px solid var(--dbr-white);
    box-shadow: var(--shadow-lg);
}

.story-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

.badge-content {
    width: 130px;
    height: 130px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dbr-white);
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 5px;
}

.story-content .lead {
    font-size: 18px;
    color: var(--dbr-gray-700);
    margin-bottom: 20px;
}

.story-text {
    color: var(--dbr-secondary);
    margin-bottom: 15px;
}

.story-signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-line {
    width: 40px;
    height: 2px;
    background: var(--dbr-primary);
}

.signature-text {
    font-family: var(--font-elegant);
    font-size: 20px;
    font-style: italic;
    color: var(--dbr-black);
    margin: 0;
}

@media (max-width: 991px) {
    .story-images {
        padding: 0;
        margin-bottom: 50px;
    }

    .story-img-secondary {
        position: relative;
        width: 80%;
        margin-top: -80px;
        margin-left: auto;
    }

    .story-badge {
        top: 20px;
        left: 20px;
    }
}

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

.value-card {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--dbr-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(190, 29, 44, 0.1) 0%, rgba(140, 12, 25, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--dbr-primary);
    transition: var(--transition-normal);
}

.value-card:hover .value-icon {
    background: var(--dbr-primary);
    color: var(--dbr-white);
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.value-text {
    font-size: 15px;
    color: var(--dbr-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Commitments Section */
.commitments-section {
    overflow: hidden;
}

.commitments-image {
    position: relative;
}

.commitments-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.commitment-overlay-card {
    position: absolute;
    bottom: -10px;
    left: -30px;
    background: var(--dbr-primary);
    border-radius: var(--radius-lg);
    padding: 25px 35px;
    color: var(--dbr-white);
    box-shadow: var(--shadow-xl);
}

.commitment-overlay-card .card-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.commitment-overlay-card i {
    font-size: 40px;
}

.commitment-overlay-card span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.commitment-list {
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--dbr-gray-200);
}

.commitment-item:last-child {
    border-bottom: none;
}

.commitment-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(190, 29, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-primary);
    font-size: 18px;
}

.commitment-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.commitment-content p {
    font-size: 14px;
    color: var(--dbr-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .commitments-image {
        margin-bottom: 80px;
    }

    .commitment-overlay-card {
        left: 20px;
    }
}

/* Stats Section Entreprise */
.stats-section-entreprise {
    margin-top: 50px;
}

/* Team Section */
.team-section {
    background: var(--dbr-gray-100);
}

.team-content-block {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.team-content-block img {
    border-radius: var(--radius-md);
    height: 300px;
    object-fit: cover;
}

.team-content-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.team-content-block p {
    color: var(--dbr-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Page CTA Section */
.page-cta-section {
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
    padding: 60px 0;
}

.page-cta-content {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.page-cta-content h2 {
    color: var(--dbr-white);
    font-size: 28px;
    margin-bottom: 10px;
}

.page-cta-content p {
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* =========================================
   Page Prestations
========================================= */
.page-header-prestations {
    padding: 180px 0 100px;
}

/* Services Intro */
.services-intro {
    background: var(--dbr-gray-100);
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    color: var(--dbr-secondary);
    line-height: 1.8;
}

.intro-features {
    margin-top: 30px;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.intro-feature-item i {
    width: 30px;
    height: 30px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-size: 12px;
}

.intro-feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--dbr-black);
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.intro-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--dbr-white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.intro-image-badge i {
    font-size: 28px;
    color: var(--dbr-primary);
}

.intro-image-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dbr-black);
}

/* Service Detail Sections */
.service-detail-section {
    overflow: hidden;
}

.service-detail-section.bg-light {
    background: var(--dbr-gray-100);
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--dbr-primary);
    color: var(--dbr-white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.service-badge i {
    font-size: 24px;
}

.service-badge span {
    font-size: 14px;
    font-weight: 600;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content .lead {
    font-size: 18px;
    color: var(--dbr-gray-700);
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--dbr-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    margin: 30px 0;
    padding: 25px;
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--dbr-primary);
}

.service-detail-section.bg-light .service-features {
    background: var(--dbr-white);
}

.service-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    color: var(--dbr-black);
}

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

.service-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dbr-gray-700);
}

.service-features ul li i {
    color: var(--dbr-primary);
    font-size: 12px;
}

@media (max-width: 768px) {
    .service-features ul {
        grid-template-columns: 1fr;
    }
}

/* Process Section - Prestations */
.process-section-prestations {
    background: var(--dbr-dark);
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
    padding-bottom: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: rgba(255,255,255,0.1);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--dbr-white);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    color: var(--dbr-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.timeline-content p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
    }

    .timeline-item::before {
        left: 0;
        top: 60px;
    }

    .timeline-number {
        margin-left: -20px;
    }
}

/* =========================================
   Page Contact
========================================= */
.page-header-contact {
    padding: 180px 0 100px;
}

/* Contact Section */
.contact-section {
    overflow: hidden;
}

/* Alert Styles */
.alert-success-custom,
.alert-error-custom {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.alert-success-custom {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.alert-error-custom {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

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

.alert-success-custom .alert-icon {
    color: #28a745;
}

.alert-error-custom .alert-icon {
    color: #dc3545;
}

.alert-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.alert-success-custom .alert-content h4 {
    color: #155724;
}

.alert-error-custom .alert-content h4 {
    color: #721c24;
}

.alert-content p {
    margin: 0;
    font-size: 14px;
}

.alert-success-custom .alert-content p {
    color: #155724;
}

.alert-error-custom .alert-content p {
    color: #721c24;
}

/* Contact Info */
.contact-info-wrapper {
    padding-right: 30px;
}

.contact-intro {
    font-size: 16px;
    color: var(--dbr-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-info-cards {
    margin-bottom: 35px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--dbr-gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    background: var(--dbr-white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--dbr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-size: 20px;
}

.info-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.info-card-content p {
    margin: 0;
    font-size: 16px;
}

.info-card-content p a {
    color: var(--dbr-black);
    font-weight: 500;
}

.info-card-content p a:hover {
    color: var(--dbr-primary);
}

.info-note {
    display: block;
    font-size: 13px;
    color: var(--dbr-secondary);
    margin-top: 5px;
}

.contact-social {
    padding-top: 20px;
    border-top: 1px solid var(--dbr-gray-200);
}

.contact-social > p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dbr-black);
    margin-bottom: 15px;
}

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

.contact-social .social-link {
    width: 45px;
    height: 45px;
    background: var(--dbr-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-black);
    font-size: 16px;
    transition: var(--transition-normal);
}

.contact-social .social-link:hover {
    background: var(--dbr-primary);
    color: var(--dbr-white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dbr-gray-200);
}

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

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.form-header p {
    color: var(--dbr-secondary);
    margin: 0;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dbr-black);
    margin-bottom: 10px;
}

.form-label .required {
    color: var(--dbr-primary);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dbr-gray-400);
    font-size: 16px;
    transition: var(--transition-fast);
}

.input-wrapper.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.input-wrapper .form-control {
    padding-left: 50px;
    height: 55px;
    border: 2px solid var(--dbr-gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition-fast);
}

.input-wrapper .form-control:focus {
    border-color: var(--dbr-primary);
    box-shadow: 0 0 0 3px rgba(190, 29, 44, 0.1);
}

.input-wrapper .form-control:focus + i,
.input-wrapper:has(.form-control:focus) i {
    color: var(--dbr-primary);
}

.input-wrapper textarea.form-control {
    height: auto;
    min-height: 150px;
    padding-top: 15px;
    resize: vertical;
}

.input-wrapper .form-select {
    padding-left: 50px;
    height: 55px;
    border: 2px solid var(--dbr-gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    cursor: pointer;
}

.input-wrapper .form-select:focus {
    border-color: var(--dbr-primary);
    box-shadow: 0 0 0 3px rgba(190, 29, 44, 0.1);
}

/* Custom Checkbox */
.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--dbr-gray-100);
    border-radius: var(--radius-md);
}

.form-check-custom .form-check-input {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 0;
    border: 2px solid var(--dbr-gray-300);
    cursor: pointer;
}

.form-check-custom .form-check-input:checked {
    background-color: var(--dbr-primary);
    border-color: var(--dbr-primary);
}

.form-check-custom .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(190, 29, 44, 0.1);
}

.form-check-custom .form-check-label {
    font-size: 14px;
    color: var(--dbr-gray-700);
    line-height: 1.5;
}

.form-check-custom .form-check-label a {
    color: var(--dbr-primary);
    text-decoration: underline;
}

.form-check-custom .form-check-label a:hover {
    color: var(--dbr-primary-dark);
}

/* hCaptcha Wrapper */
.hcaptcha-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

/* Submit Button */
#submit-button {
    position: relative;
    overflow: hidden;
}

#submit-button:disabled {
    background: var(--dbr-gray-400);
    cursor: not-allowed;
}

#submit-button:disabled::before {
    display: none;
}

#submit-button.captcha-validated:not(:disabled) {
    background: var(--dbr-primary);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--dbr-secondary);
    margin-top: 15px;
}

.form-note i {
    margin-right: 5px;
    color: #28a745;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Map Section */
.map-section {
    background: var(--dbr-gray-100);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
}

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    max-width: 280px;
}

.overlay-card-content {
    text-align: center;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(190, 29, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--dbr-primary);
}

.map-overlay-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.map-overlay-card p {
    font-size: 14px;
    color: var(--dbr-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .map-overlay-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin: -30px 20px 0;
        border-radius: var(--radius-md);
    }

    .map-wrapper iframe {
        height: 350px !important;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--dbr-gray-100);
}

.faq-accordion {
    background: transparent;
}

.faq-accordion .accordion-item {
    background: var(--dbr-white);
    border: none;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    padding: 25px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dbr-black);
    background: transparent;
    box-shadow: none;
    gap: 15px;
}

.faq-accordion .accordion-button i {
    color: var(--dbr-primary);
    font-size: 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--dbr-primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23be1d2c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 16px;
    height: 16px;
}

.faq-accordion .accordion-body {
    padding: 0 30px 25px 73px;
    font-size: 15px;
    color: var(--dbr-secondary);
    line-height: 1.7;
}

@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        padding: 20px;
        font-size: 15px;
    }

    .faq-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

/* =========================================
   Page Prestations - Détails
========================================= */
.prestations-intro {
    padding-bottom: 40px;
}

/* Prestation Detail Section */
.prestation-detail-section {
    overflow: hidden;
}

.prestation-detail-section.bg-light {
    background: var(--dbr-gray-100);
}

.prestation-images {
    position: relative;
    padding: 20px;
}

.prestation-images-right {
    padding-left: 40px;
    padding-right: 0;
}

.prestation-img-main {
    position: relative;
    z-index: 2;
}

.prestation-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.prestation-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50%;
    z-index: 3;
}

.prestation-images-right .prestation-img-accent {
    right: auto;
    left: 0;
}

.prestation-img-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 5px solid var(--dbr-white);
    box-shadow: var(--shadow-lg);
}

.prestation-content {
    padding-left: 20px;
}

.prestation-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.prestation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-white);
    font-size: 28px;
    box-shadow: var(--shadow-md);
}

.prestation-number {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--dbr-gray-200);
    line-height: 1;
}

.prestation-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.prestation-intro {
    font-size: 18px;
    color: var(--dbr-gray-700);
    margin-bottom: 25px;
    line-height: 1.7;
}

.prestation-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.prestation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dbr-gray-700);
}

.prestation-features li i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(190, 29, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbr-primary);
    font-size: 10px;
}

@media (max-width: 991px) {
    .prestation-images {
        padding: 0;
        margin-bottom: 80px;
    }

    .prestation-images-right {
        padding-left: 0;
    }

    .prestation-img-accent {
        bottom: -40px;
        right: 20px;
        width: 60%;
    }

    .prestation-images-right .prestation-img-accent {
        left: 20px;
        right: auto;
    }

    .prestation-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .prestation-features {
        grid-template-columns: 1fr;
    }

    .prestation-title {
        font-size: 26px;
    }

    .prestation-number {
        font-size: 36px;
    }
}

/* Process Section Prestations */
.process-section-prestations {
    background: var(--dbr-dark);
}

/* Page CTA Prestations */
.page-cta-prestations {
    background: linear-gradient(135deg, var(--dbr-primary) 0%, var(--dbr-primary-dark) 100%);
}

/* =========================================
   Article / News Pages
========================================= */

/* Article Header */
.page-header-article {
    min-height: 50vh;
}

/* No news/articles state */
.no-news {
    padding: 80px 40px;
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.no-news-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dbr-gray-100);
    border-radius: 50%;
    color: var(--dbr-gray-500);
    font-size: 40px;
}

.no-news h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dbr-dark);
}

.no-news p {
    color: var(--dbr-gray-600);
    margin-bottom: 30px;
}

/* Article Section */
.article-section {
    background: var(--dbr-gray-100);
}

.article-content {
    background: var(--dbr-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dbr-gray-200);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dbr-gray-600);
    font-size: 14px;
}

.article-meta span i {
    color: var(--dbr-primary);
}

/* Article Featured Image */
.article-featured-image {
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dbr-gray-700);
}

.article-body h2,
.article-body h3,
.article-body h4 {
    font-family: var(--font-secondary);
    color: var(--dbr-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body h2 {
    font-size: 28px;
}

.article-body h3 {
    font-size: 24px;
}

.article-body h4 {
    font-size: 20px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--dbr-gray-100);
    border-left: 4px solid var(--dbr-primary);
    font-style: italic;
    font-size: 18px;
    color: var(--dbr-gray-700);
}

.article-body img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

/* Article Video */
.article-video {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dbr-gray-200);
}

.article-video h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 22px;
    color: var(--dbr-dark);
    margin-bottom: 20px;
}

.article-video h4 i {
    color: #FF0000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Article Share */
.article-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dbr-gray-200);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: var(--dbr-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dbr-white);
    font-size: 16px;
    transition: var(--transition-normal);
}

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

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-email {
    background: var(--dbr-gray-600);
}

/* Article Back */
.article-back {
    margin-top: 40px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
}

/* Other Articles Card */
.other-articles-card {
    margin-top: 30px;
}

.other-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.other-article-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--dbr-gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.other-article-item:hover {
    background: var(--dbr-gray-200);
    transform: translateX(5px);
}

.other-article-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.other-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-article-info {
    flex: 1;
    min-width: 0;
}

.other-article-info h5 {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: var(--dbr-dark);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.other-article-info span {
    font-size: 12px;
    color: var(--dbr-gray-500);
}

/* News Grid Section */
.news-grid-section .news-card {
    height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .article-content {
        padding: 30px;
    }

    .article-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .article-content {
        padding: 25px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   Image Placeholders
========================================= */
.img-placeholder-wrapper {
    position: relative;
    overflow: hidden;
}

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dbr-gray-200, #e9ecef);
    color: var(--dbr-gray-500, #adb5bd);
    min-height: 300px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    gap: 10px;
}

.img-placeholder i {
    font-size: 2.5rem;
    opacity: 0.6;
}

.img-placeholder span {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.service-img.img-placeholder-wrapper .img-placeholder {
    min-height: 250px;
}

.gallery-item .img-placeholder {
    min-height: 280px;
}

.gallery-item-lg .img-placeholder {
    min-height: 400px;
}

.news-img .img-placeholder {
    min-height: 220px;
}

.prestation-img-main .img-placeholder {
    min-height: 350px;
}

.prestation-img-accent .img-placeholder {
    min-height: 200px;
}

.about-img-main .img-placeholder {
    min-height: 400px;
}

.about-img-secondary .img-placeholder {
    min-height: 250px;
}

.story-img-main .img-placeholder {
    min-height: 400px;
}

.story-img-secondary .img-placeholder {
    min-height: 250px;
}

.other-article-img .img-placeholder {
    min-height: 70px;
    border-radius: 4px;
}

.other-article-img .img-placeholder i {
    font-size: 1.2rem;
}

.other-article-img .img-placeholder span {
    display: none;
}

@media (max-width: 768px) {
    .img-placeholder {
        min-height: 200px;
    }

    .gallery-item-lg .img-placeholder {
        min-height: 250px;
    }

    .prestation-img-main .img-placeholder {
        min-height: 250px;
    }

    .about-img-main .img-placeholder,
    .story-img-main .img-placeholder {
        min-height: 280px;
    }
}

/* =========================================
   Legal Pages (Mentions légales, Confidentialité)
========================================= */
.legal-section {
    background-color: var(--dbr-white, #ffffff);
}

.legal-content {
    background: var(--dbr-white, #ffffff);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.08));
}

.legal-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dbr-gray-200, #e9ecef);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-secondary, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dbr-black, #1a1a1a);
    margin-bottom: 20px;
}

.legal-block h3 {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dbr-secondary-dark, #4a4a4a);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dbr-secondary, #6c6c6c);
    margin-bottom: 12px;
}

.legal-block a {
    color: var(--dbr-primary, #be1d2c);
    text-decoration: none;
    transition: var(--transition-fast, 0.2s ease);
}

.legal-block a:hover {
    color: var(--dbr-primary-dark, #8c0c19);
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dbr-secondary, #6c6c6c);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--dbr-primary, #be1d2c);
    border-radius: 50%;
}

.legal-list li strong {
    color: var(--dbr-black, #1a1a1a);
}

.legal-block .table {
    font-size: 0.9rem;
}

.legal-block .table th {
    background-color: var(--dbr-gray-100, #f8f9fa);
    color: var(--dbr-black, #1a1a1a);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-block .table td {
    color: var(--dbr-secondary, #6c6c6c);
    vertical-align: middle;
}

.legal-update {
    text-align: center;
    padding-top: 20px;
}

.legal-update p {
    color: var(--dbr-gray-500, #adb5bd);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px 20px;
    }

    .legal-block h2 {
        font-size: 1.3rem;
    }

    .legal-block h3 {
        font-size: 1.05rem;
    }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0!important;
    vertical-align: 0!important;
    content: "";
    border-top: 0!important;
    border-right: 0!important;
    border-bottom: 0!important;
    border-left: 0!important;
