/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 @import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #06b6d4;
            --accent-color: #f59e0b;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: #F2F2F2;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Fjalla One", sans-serif;
            font-weight: 700;
        }

        p{
            font-family: "Roboto", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        .bg-pelican{
            background-color:#024692;
        }

        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-publish {
            background-color:#024692;
            border: none;
            border-radius: 25px;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-publish:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 158, 11, 0.4);
        }

        .main-logo{
                width: 150px;
            }

        /* Hero Section */
        .hero {
            background-color: #024692;
            height: 65vh;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .hero-content {
            background-color: #024692;
            height: inherit;
            padding-bottom: 5%;
            padding-left: 5%;
            padding-right: 5%;
            padding-top: 10%;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            background-clip: text;
            margin-bottom: 0.5rem;
            margin-top: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content .subtitle {
            font-size: 18px;
            color: white;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-content .stats {
            font-size: 1.1rem;
            color: #f97316;
            font-weight: 600;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

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

        .hero-form{
            background: url('https://res.cloudinary.com/aseed/image/upload/v1759934468/pelican-visuel-homepage-desktop-new_oddp6m.png') no-repeat center center/cover;
            height: inherit;
            padding-bottom: 5%;
            padding-left: 5%;
            padding-right: 5%;
            padding-top: 10%;
        }

        /* Search Form */
        .search-form {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: 1.5rem;
            animation: fadeInUp 1s ease-out 0.6s both;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .tab-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--text-light);
            font-weight: 500;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-btn.active {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }

        .search-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr auto;
            gap: 1rem;
            align-items: end;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-check{
                font-size: 16px;
            }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }

        .btn-search {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border: none;
            border-radius: 12px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .filters-btn {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .filters-btn:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Agency Section */
        .agency-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--light-bg), white);
        }

        .agency-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

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

        .pelican-logo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            color: white;
            box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
        }

        /* Properties Section */
        .properties-section {
            padding: 6rem 0;
            background: white;
        }

        .property-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .property-image {
            height: 250px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            position: relative;
            overflow: hidden;
        }

        .property-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        .property-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(37, 99, 235, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .property-content {
            padding: 1.5rem;
        }

        .property-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .property-title {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .property-location {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .property-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .property-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn-action {
            flex: 1;
            padding: 0.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            background: white;
            color: var(--text-dark);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .btn-action:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--dark-bg), #1e293b);
            color: white;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .stat-description {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

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

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

        .social-link:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

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

        .le-bien-detail{
            background-color: transparent;
        }

        .le-bien-detail .carousel-inner{
            height: 400px;
        }

        .le-bien-detail .carousel-inner img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .le-bien-detail p{
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            margin-top: 1.5rem;
        }

        .le-bien-card .carousel-inner{
            height: 300px;
        }

        .le-bien-card .carousel-inner img{
            height: 100%;
            width: 100%;
            object-fit:cover;
        }

        .le-bien-card h5{
            font-size: 24px;
        }

        .le-bien-card h2{
            font-size: 24px;
        }

        .le-bien-card p{
            font-size: 14px;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
        }

        .le-bien-card .list-unstyled {
                font-size: 0.9rem;
                color: var(--text-light);
                flex-wrap: wrap;
        }

        /* utilsateur & admin design */
/* Sidebar styles */
.sidebar {
  background-color: #024692;
  color: #fff;
  height: 100vh;
  position: fixed;
  width: 260px;
  left: 0;
  top: 0;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.logo-container {
  padding: 20px;
  border-bottom: 1px solid #333;
}

.logo {
  max-width: 180px;
}

.nav-menu {
  padding: 15px 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.nav-menu a:hover, .nav-menu a.active {
  background-color: #ffffff;
  color: #024692;
  border-left: 4px solid #FFC107;
}

.nav-menu i {
  margin-right: 10px;
}

.disconnect-btn {
  position: absolute;
  bottom: 20px;
  width: 90%;
  margin: 0 5%;
}

/* Main content area */
.main-content {
  margin-left: 260px;
  padding: 20px 30px;
  min-height: 100vh;
  transition: all 0.3s;
}

/* Cards styling */
.content-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 25px;
  margin-bottom: 20px;
}

.card-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Form elements styling */
.form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

.form-control, .form-select {
  border-radius: 6px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
  border-color: #FFC107;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

textarea.form-control {
  min-height: 120px;
}

/* Table styling */
.table-container {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table {
  margin-bottom: 0;
}

.table-dark {
  background-color: #212529;
}

.table th {
  font-weight: 600;
  padding: 15px;
  vertical-align: middle;
}

.table td {
  padding: 15px;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,0.02);
}

/* Buttons styling */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-warning {
  background-color: #FFC107;
  border-color: #FFC107;
  color: #212529;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #c82333;
}

/* Image preview */
.img-preview {
  max-width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.img-kare {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

/* Dropdown styling */
.dropdown-menu {
  padding: 8px 0;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.dropdown-item {
  padding: 8px 20px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid #eee;
}

/* Page header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* utilsateur & admin design */

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .search-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .form-tabs {
                flex-direction: column;
            }
            
            .search-form {
                padding: 1.5rem;
            }
        }

        @media (min-width: 300px) and (max-width: 440px) {
            /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            padding: 1%;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-publish {
            background-color: #024692;
            border: none;
            border-radius: 25px;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-publish:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 158, 11, 0.4);
        }
            .main-logo{
                width: 150px;
            }
            /* Hero Section */
            .hero {
                height: auto;
                background-color: #024692;
                padding: 1rem 0.5rem;
                background-position: center top;
            }

            .hero-content {
            background-color: #024692;
            padding: 0%;
            height: auto;
        }

        .hero-form{
            background: url('https://res.cloudinary.com/aseed/image/upload/v1759935197/acc-hero-mobile_eolxih.png') no-repeat center center/cover;
            height: auto;
        }

            .hero-content h1 {
                font-size: 1.3rem;
                margin-top: 0.5rem;
                margin-bottom: 0.3rem;
                text-align: center;
                word-break: break-word;
            }

            .hero-content .subtitle {
                font-size: 14px;
                margin-bottom: 0.5rem;
                margin-top: 0.5rem;
                text-align: center;
            }

            .hero-content .stats {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
                text-align: center;
            }

            /* Search Form */
            .search-form {
                padding: 1rem 0.5rem;
                margin-top: 1rem;
                border-radius: 14px;
            }

            .form-tabs {
                flex-direction:unset;
                gap: 0.5rem;
                margin-bottom: 1rem;
            }

            .tab-btn {
                padding: 0.5rem 1rem;
                font-size: 0.95rem;
                border-radius: 18px;
            }

            .search-grid {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }

            .form-group label {
                font-size: 0.95rem;
                margin-bottom: 0.2rem;
            }

            .form-control {
                padding: 0.5rem 0.7rem;
                font-size: 0.95rem;
                border-radius: 8px;
            }

            .form-check{
                font-size: 12px;
            }

            .btn-search {
                padding: 0.6rem 1.2rem;
                font-size: 1rem;
                border-radius: 8px;
                width: 100%;
                margin-top: 0.5rem;
            }

            .filters-btn {
                padding: 0.5rem 0.7rem;
                font-size: 0.95rem;
                border-radius: 8px;
                width: 100%;
                margin-top: 0.5rem;
            }

            /* Agency Section */
            .agency-section {
                padding: 2rem 0;
                background: linear-gradient(135deg, var(--light-bg), white);
            }

            .agency-card {
                background: white;
                border-radius: 12px;
                padding: 1.2rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                height: 100%;
                transition: all 0.3s ease;
                border: 1px solid rgba(255, 255, 255, 0.15);
            }

            .agency-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            }

            .pelican-logo {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1rem;
                font-size: 1.5rem;
                color: white;
                box-shadow: 0 6px 18px rgba(6, 182, 212, 0.22);
            }

            /* Properties Section */
            .properties-section {
                padding: 2rem 0;
                background: white;
            }

            .property-card {
                background: white;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                border: 1px solid rgba(255, 255, 255, 0.15);
                height: 100%;
            }

            .property-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
            }

            .property-image {
                height: 120px;
                background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
                position: relative;
                overflow: hidden;
            }

            .property-image::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
                animation: shimmer 3s ease-in-out infinite;
            }

            .property-badge {
                position: absolute;
                top: 0.5rem;
                left: 0.5rem;
                background: rgba(37, 99, 235, 0.9);
                color: white;
                padding: 0.3rem 0.7rem;
                border-radius: 16px;
                font-size: 0.7rem;
                font-weight: 600;
            }

            .property-content {
                padding: 0.8rem;
            }

            .property-price {
                font-size: 1rem;
                font-weight: 800;
                color: var(--primary-color);
                margin-bottom: 0.3rem;
            }

            .property-title {
                font-size: 0.95rem;
                font-weight: 600;
                margin-bottom: 0.3rem;
                color: var(--text-dark);
            }

            .property-location {
                color: var(--text-light);
                margin-bottom: 0.5rem;
                font-size: 0.85rem;
            }

            .property-features {
                display: flex;
                gap: 0.5rem;
                margin-bottom: 0.5rem;
                font-size: 0.8rem;
                color: var(--text-light);
                flex-wrap: wrap;
            }

            .property-actions {
                display: flex;
                gap: 0.3rem;
            }

            .btn-action {
                flex: 1;
                padding: 0.3rem;
                border: 1px solid #e2e8f0;
                border-radius: 6px;
                background: white;
                color: var(--text-dark);
                font-size: 0.8rem;
                transition: all 0.3s ease;
            }

            .btn-action:hover {
                background: var(--primary-color);
                color: white;
                border-color: var(--primary-color);
            }

            /* Stats Section */
            .stats-section {
                padding: 2rem 0;
                background: linear-gradient(135deg, var(--dark-bg), #1e293b);
                color: white;
            }

            .stat-card {
                text-align: center;
                padding: 1rem 0.5rem;
            }

            .stat-icon {
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 0.5rem;
                font-size: 1.1rem;
                box-shadow: 0 6px 18px rgba(6, 182, 212, 0.22);
            }

            .stat-number {
                font-size: 1.2rem;
                font-weight: 800;
                color: var(--secondary-color);
                margin-bottom: 0.2rem;
            }

            .stat-label {
                font-size: 0.95rem;
                font-weight: 600;
                margin-bottom: 0.2rem;
            }

            .stat-description {
                color: #94a3b8;
                font-size: 0.75rem;
            }

            /* Footer */
            .footer {
                background: var(--dark-bg);
                color: white;
                padding: 2rem 0 1rem;
            }

            .footer-brand {
                font-size: 1.1rem;
                font-weight: 800;
                color: var(--secondary-color);
                margin-bottom: 0.7rem;
            }

            .footer-links a {
                color: #94a3b8;
                text-decoration: none;
                display: block;
                margin-bottom: 0.3rem;
                transition: color 0.3s ease;
                font-size: 0.95rem;
            }

            .footer-links a:hover {
                color: var(--secondary-color);
            }

            .social-links {
                display: flex;
                gap: 0.5rem;
                margin-top: 0.5rem;
            }

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

            .social-link:hover {
                background: var(--secondary-color);
                transform: translateY(-2px);
            }

                    .le-bien-detail{
            background-color: transparent;
        }

        .le-bien-detail .carousel-inner{
            height: 300px;
        }

        .le-bien-detail .carousel-inner img{
            height: 100%;
            width: 100%;
            object-fit:fill;
        }

        .le-bien-detail h1{
            font-size: 24px;
        }

        .le-bien-detail h2{
            font-size: 20px;
        }

        .le-bien-detail p{
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            margin-top: 1.5rem;
        }


        .le-bien-card .carousel-inner{
            height: 300px;
        }

        .le-bien-card .carousel-inner img{
            height: 100%;
            width: 100%;
            object-fit:fill;
        }

        .le-bien-card h5{
            font-size: 20px;
        }

        .le-bien-card h2{
            font-size: 20px;
        }

        .le-bien-card p{
            font-size: 14px;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
        }

        .le-bien-card .list-unstyled {
                font-size: 0.8rem;
                color: var(--text-light);
                flex-wrap: wrap;
            }





        }
