/* === Palette OneClickDJ === */
:root {
    --color-primary: #dbb56e; 
    --color-secondary: #ce9f47; 
    --color-background: #faf9f6;
    --color-muted: #6b6b6b;
    --color-text: #1e1e1e;
    --color-danger: #e53935;
    --color-success: #17b06d;
    --color-light: #f5f1eb;
    --color-neutral: #f5f5f5;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --radius-default: 12px;
    --radius-lg: 16px;
}


body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-background);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
    font-family: var(--font-heading);
}
i{
    font-size: 1.6rem ;
}
/* Custom Theme CSS */

/* Override any default styles here */
.header-banner-wrap {
    position: relative;
}

.header-logo img ,.header-logo-mobile img{
    width:90px !important;
}

.footer-middle-logo img {
    width:90px !important;

}
.footer-input-wrap button {
    background-color: var(--color-primary) !important;
}
.header-logo-mobile {
display:none;
}

.banner-slider-wrap {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom header styles */
.header-nav-list li a.first-a.active {
    color: var(--color-primary);
    font-weight: bold;
}

.header-nav-list li a.first-a:hover {
    color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Custom Theme badge in header */
.header-logo span {
    color: var(--color-primary);
    font-size: 16px;
    vertical-align: middle;
}

/* Additional custom styles can be added here */
.in-subtitle-14px {
    color: var(--color-muted) !important;
}

.banner-slider-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-bg-img {
    position: relative;
    min-height: 240px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-bg-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card-bg-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.38) 100%
        ),
        var(--card-bg) center/cover no-repeat;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-bg-img:hover::before {
    transform: scale(1.05);
}
.card-bg-content {
    position: relative;
    z-index: 2;
    color: #000;
    padding: 2rem 1.5rem;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    transition: transform 0.3s ease;
}
/* Responsive styles */
@media (max-width: 991.98px) {
    .py-100px {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .mb-100px {
        margin-bottom: 60px;
    }
    .feature-card {
        margin-bottom: 2rem;
    }
  
}
@media (max-width: 767.98px) {
    .py-100px {
        padding-top: 36px;
        padding-bottom: 36px;
    }
    .mb-100px {
        margin-bottom: 36px;
    }
    .card-bg-img {
        min-height: 180px;
    }
    .card-bg-content {
        padding: 1.5rem 1rem;
    }
    .feature-card {
        padding: 1.25rem 0.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 575.98px) {
    .card-bg-img {
        min-height: 140px;
    }
    .card-bg-content {
        padding: 1.25rem 0.75rem;
    }
    .feature-card {
        padding: 1.25rem 0.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
   .section-padding {
    padding: 3px 0 96px 0 !important;
}

  
}

.listings-container {
    padding: 40px 0;
}
.listing-card {
    border-radius: var(--radius-default);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}
.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.profile-container {
    padding: 60px 0;
}
.profile-header {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.profile-stats {
    background: var(--color-background);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.main-container {
    padding: 1rem 4rem;
    position: relative;
}
.contact-container {
    padding: 60px 0;
}
.contact-form {
    background: var(--color-background);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-form,
[class*="contact-form"],
[class*="request-form"],
.sticky-form {
    background: #FFFFFF !important;
    border: 1.5px solid #E5E2D8 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(26,24,20,0.08) !important;
}
.contact-form .form-control,
[class*="contact-form"] .form-control,
[class*="request-form"] .form-control,
.sticky-form .form-control,
.contact-form .form-select,
.sticky-form .form-select {
    border: 1.5px solid #E5E2D8 !important;
    border-radius: 8px !important;
    background: #FAFAF7 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13px !important;
    color: #1A1814 !important;
    padding: 10px 14px !important;
}
.contact-form .form-control:focus,
.sticky-form .form-control:focus,
.sticky-form .form-select:focus {
    border-color: #C9A84C !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
    background: #FFFFFF !important;
}
.contact-form button[type="submit"],
[class*="contact-form"] button[type="submit"],
[class*="request-form"] button[type="submit"],
.sticky-form button[type="submit"],
.btn-send-request,
[class*="envoyer"],
[class*="submit-btn"] {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 12px 24px !important;
    width: 100% !important;
    transition: all 0.2s !important;
    box-shadow: 0 2px 10px rgba(201,168,76,0.25) !important;
}
.sticky-form button[type="submit"]:hover {
    background: #A07830 !important;
    color: #fff !important;
}

/* ── SECTION AVIS PREMIUM ── */
.reviews-section,
[class*="avis"],
[class*="reviews"],
[class*="testimonial"] {
    background: #FAFAF7 !important;
    border: 1.5px solid #E5E2D8 !important;
    border-radius: 16px !important;
}

.reviews-section .global-rating,
[class*="reviews"] .rating-score,
[class*="avis"] .note-globale {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 52px !important;
    font-weight: 700 !important;
    color: #C9A84C !important;
    line-height: 1 !important;
}

.reviews-section .stars,
[class*="star"] {
    color: #C9A84C !important;
}

[class*="voir-avis"],
[class*="laisser-avis"],
.btn-reviews,
.btn-leave-review,
[class*="reviews"] .btn-success,
[class*="reviews"] .btn-outline-success,
[class*="avis"] .btn-success,
[class*="avis"] .btn-outline-success {
    background: #1A1814 !important;
    color: #E2C97E !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.2s !important;
}
[class*="reviews"] .btn-success:hover,
[class*="avis"] .btn-success:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
}

[class*="review-card"],
[class*="avis-card"],
[class*="testimonial-card"] {
    background: #FFFFFF !important;
    border: 1.5px solid #E5E2D8 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

/* Neutraliser TOUS les btn-success et btn-outline-success */
.btn-success:not(.nav-btn-gold),
.btn-outline-success {
    background: #1A1814 !important;
    color: #E2C97E !important;
    border-color: #1A1814 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
}
.btn-success:hover,
.btn-outline-success:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border-color: #C9A84C !important;
}

/* Neutraliser btn-warning orange */
.btn-warning {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border: none !important;
    border-radius: 8px !important;
}
.contact-info {
    background: var(--color-primary);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    margin-top: 30px;
}

/* --- Feature card styles améliorés --- */
.feature-card {
    background: var(--color-primary) !important; /* gris très clair */
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(34, 34, 34, 0.06);
    border: 1px solid #f3f3f3;
    color: var(--color-muted);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;

    & i {
        color: var(--color-light);
        font-size: 6rem !important;
        
    }
}
.feature-card:hover {
    box-shadow: 0 8px 32px 0 rgba(142, 36, 170, 0.12);
    transform: translateY(-4px) scale(1.03);
}

/* --- Espace entre les sections --- */
.section-padding {
    padding: 96px 0 96px 0 !important;
}

/* --- Section title spacing --- */
.section-title {
    margin-bottom: 3.5rem !important;
}

.feature-fa-icon {
    color: var(--color-text) !important;
    font-size: 2rem;
    line-height: 1;
}

.strip {
    background: var(--color-background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.strip:hover {
    transform: translateY(-5px);
}

.featured-tag-grid {
    background: var(--color-danger);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    color: #fff;
    font-size: 20px;
}

.wrapper {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
}

.score {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: #ffc107;
}

.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.lg-title-78px {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.in-subtitle-16px {
    font-size: 1.1rem;
    opacity: 0.9;
}
.max-w-621px {
    max-width: 621px;
}

/* Search Section */
#results {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.custom-search-input-2 {
    position: relative;
}
.custom-search-input-2 .form-control {
    height: 50px;
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 50px;
    border: 1px solid #e0e0e0;
}
.custom-search-input-2 .icon_search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.custom-search-input-2 select {
    height: 50px;
    border-radius: 25px;
    padding: 0 20px;
    width: 100%;
    border: 1px solid #e0e0e0;
    appearance: none;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
        no-repeat right 15px center;
}
.custom-search-input-2 .btn {
    height: 50px;
    border-radius: 25px;
    padding: 0 30px;
    font-weight: 600;
}

/* Filters Sidebar */
#filters_col {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#filters_col_bt {
    display: none;
}
.filter_type {
    margin-bottom: 25px;
}
.filter_type h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.container_check {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}
.container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
.container_check:hover input ~ .checkmark {
    background-color: #f8f9fa;
}
.container_check input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container_check input:checked ~ .checkmark:after {
    display: block;
}
.container_check .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* DJ Cards */
.strip {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}
.strip:hover {
    transform: translateY(-5px);
}
.strip figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.strip .img {
    height: 250px;
    background-size: cover;
    background-position: center;
}
.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.featured-tag-grid {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}
.wrapper h5 {
    margin: 0;
    font-size: 1.1rem;
}
.wrapper h5 a {
    color: #fff;
    text-decoration: none;
}
.wrapper small {
    font-size: 0.9rem;
    opacity: 0.9;
}
.read_more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.strip:hover .read_more {
    opacity: 1;
}
.score {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.score img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}
.rating {
    flex: 1;
}
.stars {
    color: #ffc107;
    margin-bottom: 5px;
}
.stars em {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}
.price-tag {
    text-align: right;
}
.price-tag strong {
    display: block;
    color: var(--color-success);
    font-size: 1.2rem;
}
.price-tag a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .lg-title-78px {
        font-size: 2.5rem;
    }
    #filters_col_bt {
        display: block;
        margin-bottom: 15px;
        color: #333;
        text-decoration: none;
        font-weight: 600;
    }
    #filters_col {
        margin-bottom: 30px;
    }
    .search-box .col-md-6 {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .header-banner-wrap {
        height: 300px;
    }
    .lg-title-78px {
        font-size: 2rem;
    }
    .custom-search-input-2 .btn {
        width: 100%;
        margin-top: 10px;
    }
    .search-box .col-md-6 {
        width: 100%;
    }
    .search-box .row > * {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 575px) {
    .search-box {
        padding: 20px !important;
    }
    .search-box .col-12 {
        padding-left: 0;
        padding-right: 0;
    }
}
figure h5 {
    display: flex;
    gap: 3px;
    align-items: center;
}
.claimed_icon img {
    width: 20px;
}
figure a {
    display: block;
}
.dj-thumbnail {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 5px;
}

.loading-spinner {
    padding: 2rem;
}
.lead-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .search-box {
        margin-top: 300px !important;
        padding: 15px !important;
    }

    .banner-slider-wrap {
        height: 300px;
    }

    .banner-slider-content {
        padding-top: 60px;
    }

    .banner-slider-content h1 {
        font-size: 2rem;
    }

    .form-control-lg,
    .form-select-lg {
        font-size: 1rem;
        height: 45px;
    }

    .btn-search {
        width: 100%;
        margin-top: 10px;
    }

    .filter-toggle {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Filter toggle button */
.filter-toggle {
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .filter-toggle {
        display: flex;
    }

    .filters-row {
        display: none;
    }

    .filters-row.show {
        display: flex;
    }
}

/* Reset button */
.btn-reset {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background-color: #d0d0d0;
    color: #000;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 15px;
}

.no-results h3 {
    color: #333;
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
    margin-bottom: 20px;
}
.results-count {
    font-weight: bold;
    color: black;
    margin: 10px 0px;
}

.btn-search {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #1A1814;
    background-color: #FAFAF7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #fff;
    color: var(--color-text);
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    gap: 2rem;
}
.profile-section {
    text-align: center;
}

.header-location {
    text-align: center;
    width: fit-content;
    margin: 10px auto;
    color: var(--color-muted);
}

.header-title h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: -10px;
    color: #2c3e50;
}
.header-title {
    margin-bottom: 40px;
}
.header-location {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.header-location i {
    margin-right: 0.5rem;
}

.price-badge {
    background: var(--color-primary) !important;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: var(--color-text) !important;
    border: 2px solid var(--color-muted);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-badge .label {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-badge .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* ── HERO PROFIL PREMIUM ── */
.profile-hero,
.cover-section,
[class*="profile-cover"],
[class*="hero-cover"] {
    position: relative;
}

.profile-hero h1,
.cover-section h1,
.dj-name,
.profile-title,
[class*="profile"] h1 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(32px, 4vw, 56px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.05 !important;
}

.profile-hero .location,
.cover-section .location,
[class*="profile"] .location {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13px !important;
    opacity: 0.85 !important;
    letter-spacing: 0.3px !important;
}

.price-card,
[class*="price-badge"],
[class*="starting-price"] {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border-radius: 12px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.price-card .amount,
[class*="price-badge"] strong,
[class*="starting-price"] strong {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
}

/* ── H1 NOM DJ — CORMORANT GARAMOND ── */
.dj-profile-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(28px, 4vw, 52px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.05 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    margin-bottom: 6px !important;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 3rem 0;
}

.main-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr) minmax(0, 286px);
    gap: 2rem;
    width: 100%;
    margin-top: 6rem;
    align-items: flex-start;
}

/* Sidebar */
.sidebar {
    padding: 2rem;
    margin-top: -390px;
    height: fit-content;
    /* position: sticky; */
    top: 2rem;
}

.small-sidebar {
    width: 100%;
    padding: 1.2rem 1rem;
}

/* ── SIDEBAR PREMIUM ── */
.sidebar .card,
.small-sidebar .card,
[class*="sidebar"] .card {
    background: #FFFFFF !important;
    border: 1.5px solid #E5E2D8 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    transition: border-color 0.2s !important;
}
[class*="sidebar"] .card:hover {
    border-color: rgba(201,168,76,0.4) !important;
}

.badge-pro,
[class*="badge-pro"],
[class*="pro-badge"] {
    background: #C9A84C !important;
    color: #1A1814 !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: 100px !important;
    padding: 3px 10px !important;
}

.sidebar .btn-success,
.sidebar .btn-primary,
.small-sidebar .btn-success,
.small-sidebar .btn-primary,
[class*="sidebar"] .btn-success,
[class*="sidebar"] .btn-primary {
    background: #F5EDCF !important;
    color: #A07830 !important;
    border: 1px solid rgba(201,168,76,0.4) !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.sidebar .btn-dark,
.sidebar .btn-contact,
.small-sidebar .btn-dark,
[class*="sidebar"] .btn-contact,
[class*="sidebar"] .btn-dark {
    background: #1A1814 !important;
    color: #E2C97E !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.2s !important;
}
[class*="sidebar"] .btn-dark:hover,
[class*="sidebar"] .btn-contact:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
}

[class*="sidebar"] h3,
[class*="sidebar"] h4 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
    color: #1A1814 !important;
}
[class*="sidebar"] p,
[class*="sidebar"] span {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #7A756A !important;
    font-size: 13px !important;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.profile-image {
    width: 275px;
    height: 275px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

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

.pro-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
}

.siret {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.verified {
    color: var(--color-text);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.recommended {
    background: var(--color-neutral);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--color-secondary);

    img {
        display: block;
        width: 90%;
        margin: 20px auto;
    }
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    margin-right: 0.8rem;
    color: var(--color-danger);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

.social-links a {
    color: var(--color-light);
    font-size: 1.2rem;
    transition: color 0.3s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--color-danger);
    background: #fff5f5;
}

/* Content Sections */
.content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section {
    /* background: var(--color-light); */
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

/* Music Styles */
.music-style {
    margin-bottom: 1.5rem;
}

.style-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.style-name {
    font-weight: 500;
    color: #2c3e50;
}

.style-percentage {
    font-weight: 600;
    color: var(--color-danger);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--color-neutral);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-danger) 0%, #c0392b 100%);
    border-radius: 3px;
    transition: width 0.8s ease;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Options */

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 4rem;
}

.options-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.green {
    background-color: var(--color-primary);
}

.dot.gray {
    background-color: #d1d5db;
}

.option-text {
    font-size: 1.25rem;
    color: #111827;
}

.tooltip {
    position: absolute;
    left: 50px;
    width: 115px;
    bottom: 130%;
    margin-bottom: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;

    z-index: 10;
}

.option-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 1.5rem;
    width: 0;
    height: 0;
}

.tooltip > div {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.tooltip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .card {
        padding: 2rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
}
/* Video */
.video-container {
    position: relative;
    background: #2c3e50;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
    background: transparent;
    border: none;
}
.modal-body {
    padding: 0;
}
.modal-body img, .modal-body iframe {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.btn-close {
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 1;
}

.play-button {
    background: var(--color-primary);
    border: 2px solid var(--color-text);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);

}

.play-button i {
    width: 20px !important;
}


.gallery-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 500;
}
.calendar-gold i {
    color: #D4B06A !important;
}

/* Testimonials */
.testimonial {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--color-secondary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.testimonial-author {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1rem 1rem;
    display: none;
    color: #6c757d;
    background: white;
}

.faq-answer.show {
    display: block;
}

/* Quote Form */
.quote-form {
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    z-index: 1000;
    border: 1px solid #e9ecef;
}

.progress-container {
    width: 100%;
    /* max-width: 600px; */
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e8c5d1;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(
        45deg,
        var(--color-primary) 25%,
        var(--color-secondary) 25%,
         var(--color-primary)  50%,
         var(--color-secondary) 50%,
        var(--color-primary) 75%,
         var(--color-secondary) 75%
    );
    background-size: 20px 20px;
    border-radius: 5px;
    position: relative;
    width: 0;
    /* animation: moveStripes 1s linear infinite; */
    transition: width 0.3s ease;
}

.progress-fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    border-radius: 15px;
    width: 100%;
}
/* Custom badge styles */
.badge-agency {
    background-color: #2563eb;
    color: #fff;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}
.badge-elite {
    background-color: #ffd700;
    color: #000;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}
.badge-premium {
    background-color: #c0c0c0;
    color: #000;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}
.badge-pro {
    background-color: #cd7f32;
    color: #fff;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}
@keyframes fillProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 30%;
    }
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

.progress-style-name {
    color: #000000; /* black */
    font-weight: 500; /* font-medium */
}

.progress-percentage {
    color: #000000; /* black */
    font-weight: 600; /* font-semibold */
}

.progress-text {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.progress-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.quote-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
}


/* Avatar Overlap */
.avatar-overlap {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 4px solid #fff;
}

.avatar-overlap img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-header {
    display: none;
}

.listing-header {
    border-radius: 9px;
    overflow: hidden;
    display: flex;
    height: 500px;
    justify-content: space-between;

    align-items: flex-start;
    position: relative;
    flex-direction: column;
    border-bottom: 1px solid #e9ecef;
}
#listings {
    margin-bottom: 200px;
}

#listings .listing-badge {
    position: absolute;
    top: 20px;
    right: 20px;

    padding: 5px 10px;

    z-index: 90;
}
.listing-header::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    inset: 0;
    background-color: #0000006e;
}
.listing-header .profile-image {
    border-radius: 0px;
    background-color: white;
    height: fit-content;
    width: 100%;

    display: flex;
    border: 0.5px solid #918e8e4a;
    padding: 25px 13px;
    gap: 25px;
    margin-bottom: 0 !important;
}
.listing-header .profile-image span {
    font-size: 24px;
    display: block;
}

span.price {
    font-weight: 800;
    color: var(--color-secondary);
    font-size: 28px;
}
.listing-header .profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.listing-header .ratings i {
    /* -webkit-transform: scale(1.5); */
    font-size: 1rem;
    -ms-transform: scale(2);
    transform: scale(2);
    margin: 7px;
    color: var(--color-primary)
}
.header-location {
    width: auto;
    color: white !important;
}
.listing-header .header-title {
    z-index: 7;
    padding: 0 30px;
    margin-top: 184px;
}
.listing-header .header-title h1 {
    margin-bottom: 0;
    color: white !important;
    text-align: center;
}

.rc-pro-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
   
    font-family: var(--font-heading)
        sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.rc-pro-badge:hover {
    background-color: #f1f3f4;
    border-color: #dee2e6;
}

.rc-pro-badge .icon {
    width: 40px;
    height: 40px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: white;
    flex-shrink: 0;
}

.rc-pro-badge .text {
    font-weight: 600;
    color: #1f2937;

    font-size: 14px;
    white-space: nowrap;

    & span{
        background-color: var(--color-primary) !important;

    }
}

.rc-pro-badge .tooltip-text {
    position: absolute;
    top: 85%;
    left: 60%;
    transform: translateX(-50%);
    margin-top: 8px;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    width: 280px;
    text-align: left;
}

.rc-pro-badge:hover .tooltip-text {
    display: block;
}

.tooltip-text::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.tooltip-text .status-text {
    color: #059669;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tooltip-text .download-link {
    color: #2563eb;
    text-decoration: underline;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.tooltip-text .download-link:hover {
    color: #1d4ed8;
}

.tooltip-text .info-text {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.tooltip-text .info-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.statut {
    padding: 10px 36px;
    margin: 0 auto 20px;
    border-radius: 10px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: var(--color-text);
}


.displacement-container {
    background: var(--color-primary);
   
    border-radius: var(--radius-default);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

   
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.displacement-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
}

.displacement-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.icon-wrapper {
    background: var(--color-secondary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    flex-shrink: 0;
    transition: all 0.3s ease;

    & i {
        color: white;
    }
}

.displacement-container:hover .icon-wrapper {
    transform: scale(1.05);
    
}

.globe-icon {
    font-size: 22px;
    color: white;
    /* filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)); */
}

.text-content {
    flex: 1;
}

.displacement-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.displacement-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
}

.displacement-unit {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 600;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}
.phone-card {
   
    
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
   
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.phone-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
}

.phone-card:hover {
   
}


.phone-icon {
    font-size: 28px;
    color: var(--color-secondary);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 8px;
}

.request-button {
    background: #1A1814 !important;
    color: #E2C97E !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 10px 20px !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.request-button:hover:not(:disabled) {
    background: #C9A84C !important;
    color: #1A1814 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.25);
}

.request-button:active:not(:disabled) {
    transform: translateY(0);
}

.request-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-text {
    transition: opacity 0.3s ease;
}

.loading-spinner {
    width: 10px;
    height: 10px;
    border: 10px solid rgba(255, 255, 255, 0.3);
    border-top: 10px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    scale: 0.4;
}

.request-button.loading .button-text {
    opacity: 0;
}

.request-button.loading .loading-spinner {
    display: block;
    position: absolute;
}

.success-message {
    background: var(--color-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.success-message.show {
    display: flex;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.success-message.show {
    animation: fadeIn 0.3s ease;
}

/* Responsive design */
@media (max-width: 480px) {
    .phone-card {
        min-width: 280px;
        padding: 20px;
    }

    .icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .phone-icon {
        font-size: 24px;
    }

    .card-title {
        font-size: 18px;
    }

    .request-button {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 160px;
    }
}

/* Responsive design */
@media (max-width: 480px) {
    .displacement-container {
        min-width: 280px;
        padding: 16px 20px;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .globe-icon {
        font-size: 18px;
    }

    .displacement-value {
        font-size: 20px;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .main-content-grid {
        grid-template-columns: 280px 700px;
    }

    .new-quote-form {
        width: 100%;
        margin-bottom: 2rem;
        grid-column: span 2;
    }
}

/* Mobile Styles */
@media (max-width: 900px) {
    .main-container {
        padding : 1rem .5rem;
    }
     .testimonials-section {
                 max-width:600px;
            }
    
    body > div.main-container > div > aside > div.profile-section {
        margin: 50px 0;
    }
    .main-content-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    body > div.main-container > div > main {
        width: 580px;
        padding: 0;
    }
    .main-container {
        padding: 1rem;
        width: 600px;
        margin: 0 auto;
    }
    .small-sidebar {
        padding: 1rem 0;
    }
    .small-sidebar,
    .new-quote-form {
        width: 100%;
        margin-bottom: 2rem;
        grid-column: span 1;
    }
    .profile-section > div.profile-image {
        display: none !important;
    }
    .profile-section > div.header-title {
        display: none;
    }
    body > header.header > div.container > div {
        display: none;
    }
    .mobile-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid #e9ecef;
    }
    .mobile-header .profile-image {
        border-radius: 30px;
        background-color: white;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 20px;
        gap: 25px;
    }
    .mobile-header .profile-image span {
        margin-top: 13px;
        font-size: 19px;
        display: block;
    }
    .mobile-header .profile-image button {
        padding: 16px 20px;
        border-radius: 10px;
        font-size: 30px;
        background: var(--color-primary);
        color: white;
        float: right;
        margin: 10px 0;
    }
    .mobile-header .profile-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }
    .mobile-header .ratings i {
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        margin: 7px;
        color: rgba(128, 128, 128, 0.425);
    }
    .header-location {
        width: auto;
    }
    .home-margin {
        margin-top: 300px !important;
    }
    .header-logo-mobile {
        display:block !important;
    }
    .header-logo {
        display:none !important;

    }
}
@media (max-width: 500px) {
    .main-container {
        padding : 1rem .5rem;
    }
     .testimonials-section {
                 max-width:600px;
            }
    
    body > div.main-container > div > aside > div.profile-section {
        margin: 50px 0;
    }
    .main-content-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    body > div.main-container > div > main {
        width: 380px;
        padding: 0;
    }
    .main-container {
        padding: 1rem;
        width: 420px;
        margin: 0 auto;
    }
    .small-sidebar {
        padding: 1rem 0;
    }
    .small-sidebar,
    .new-quote-form {
        width: 100%;
        margin-bottom: 2rem;
        grid-column: span 1;
    }
    .profile-section > div.profile-image {
        display: none !important;
    }
    .profile-section > div.header-title {
        display: none;
    }
    body > header.header > div.container > div {
        display: none;
    }
    .mobile-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid #e9ecef;
    }
    .mobile-header .profile-image {
        border-radius: 30px;
        background-color: white;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 20px;
        gap: 25px;
    }
    .mobile-header .profile-image span {
        margin-top: 13px;
        font-size: 19px;
        display: block;
    }
    .mobile-header .profile-image button {
        padding: 16px 20px;
        border-radius: 10px;
        font-size: 30px;
        background: var(--color-primary);
        color: white;
        float: right;
        margin: 10px 0;
    }
    .mobile-header .profile-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }
    .mobile-header .ratings i {
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        margin: 7px;
        color: rgba(128, 128, 128, 0.425);
    }
    .header-location {
        width: auto;
    }
    .home-margin {
        margin-top: 360px !important;
    }
    .header-logo-mobile {
        display:block !important;
    }
    .header-logo {
        display:none !important;

    }
}

.certification-card,
.activity-card {
    border-radius: var(--radius-default);
    box-shadow: none !important;
    transition: transform 0.2s ease;
}

.certification-card:hover,
.activity-card:hover {
    transform: translateY(-2px);
}

body > div.header-banner-wrap .button-primary a {
    background-color: var(--color-primary);
    color: var(--color-text);
}

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

        .venue-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .venue-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .venue-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .venue-content {
            padding: 24px;
        }

        .venue-title {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .venue-location {
            color: #666;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .venue-quote {
            font-style: italic;
            color: #555;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .venue-services {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .venue-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: transparent;
            color: #333;
            text-decoration: none;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
        }

        .venue-button:hover {
            background-color: #333;
            color: white;
            border-color: #333;
        }

        @media (max-width: 768px) {
            .venues-grid {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 24px;
            }
        }
/* ============================================
   BLOG PREMIUM ONECLICKDJ - SCOPE .ocdj-blog
   ============================================ */

/* Hero Blog Premium Compact */
.ocdj-blog-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.ocdj-blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient si pas d'image */
    background: linear-gradient(135deg, rgba(219, 181, 110, 0.2) 0%, rgba(206, 159, 71, 0.15) 100%);
}

/* Si une image est définie, elle sera appliquée via style inline et écrasera le fallback */
.ocdj-blog-hero-background[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

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

.ocdj-blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.ocdj-blog-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ocdj-blog-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ocdj-blog-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons Premium OR */
.ocdj-btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(219, 181, 110, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ocdj-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 181, 110, 0.4);
    color: white;
    text-decoration: none;
}

.ocdj-btn-primary-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.ocdj-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ocdj-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Outline button for light backgrounds */
.ocdj-blog-content .ocdj-btn-outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.ocdj-blog-content .ocdj-btn-outline:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.ocdj-btn-outline-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Blog Content Section */
.ocdj-blog-content {
    padding: 2rem 0 4rem;
}

.ocdj-blog-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.ocdj-blog-section-title::before {
    display: none !important;
}

/* Blog Grid */
.ocdj-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card Premium */
.ocdj-blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.ocdj-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ocdj-blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    background: var(--color-light);
}

.ocdj-blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ocdj-blog-card:hover .ocdj-blog-card-image img {
    transform: scale(1.05);
}

.ocdj-blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ocdj-blog-card-body {
    padding: 1.5rem;
}

.ocdj-blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.ocdj-blog-card-excerpt {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ocdj-blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.ocdj-blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-premium-inner {
    width: 100%;
    max-width: none;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

@media (max-width: 768px) {
    .footer-premium-inner {
        flex-direction: column;
        text-align: center;
        padding-inline: 1rem;
    }
    .footer-links { justify-content: center; }
}

.ocdj-blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.ocdj-blog-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.ocdj-blog-date {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.ocdj-blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ocdj-blog-read-more i {
    transition: transform 0.3s ease;
}

.ocdj-blog-card:hover .ocdj-blog-read-more i {
    transform: translateX(4px);
}

/* Empty State Premium */
.ocdj-blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ocdj-blog-empty-icon {
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.ocdj-blog-empty-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.ocdj-blog-empty-text {
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ocdj-blog-empty-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pagination */
.ocdj-blog-pagination {
    margin-top: 3rem;
}

.ocdj-blog-pagination .pagination {
    justify-content: center;
}

.ocdj-blog-pagination .page-link {
    color: var(--color-primary);
    border-color: #e9ecef;
    padding: 0.5rem 1rem;
}

.ocdj-blog-pagination .page-link:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.ocdj-blog-pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Sidebar Premium */
.ocdj-blog-sidebar {
    position: sticky;
    top: 2rem;
}

.ocdj-blog-sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ocdj-blog-sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

/* Search */
.ocdj-blog-search {
    position: relative;
    display: flex;
}

.ocdj-blog-search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.ocdj-blog-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(219, 181, 110, 0.1);
    background: white;
}

.ocdj-blog-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ocdj-blog-search-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-50%) scale(1.05);
}

/* Categories */
.ocdj-blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ocdj-blog-category-item {
    border-bottom: 1px solid #f0f0f0;
}

.ocdj-blog-category-item:last-child {
    border-bottom: none;
}

.ocdj-blog-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ocdj-blog-category-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.ocdj-blog-category-item.active .ocdj-blog-category-link {
    color: var(--color-primary);
    font-weight: 600;
}

.ocdj-blog-category-count {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.ocdj-blog-sidebar-empty {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Guides */
.ocdj-blog-guides {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ocdj-blog-guide-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-text);
}

.ocdj-blog-guide-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.ocdj-blog-guide-icon {
    color: var(--color-primary);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Newsletter */
.ocdj-blog-newsletter {
    background: linear-gradient(135deg, rgba(219, 181, 110, 0.05) 0%, rgba(206, 159, 71, 0.02) 100%);
}

.ocdj-blog-newsletter-text {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ocdj-blog-newsletter-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ocdj-blog-hero {
        min-height: 280px;
    }
    
    .ocdj-blog-hero-title {
        font-size: 2.25rem;
    }
    
    .ocdj-blog-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ocdj-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ocdj-blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .ocdj-blog-hero {
        min-height: 220px;
    }
    
    .ocdj-blog-hero-title {
        font-size: 1.75rem;
    }
    
    .ocdj-blog-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .ocdj-blog-hero-ctas {
        flex-direction: column;
    }
    
    .ocdj-blog-hero-ctas .ocdj-btn-primary,
    .ocdj-blog-hero-ctas .ocdj-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .ocdj-blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ocdj-blog-empty-ctas {
        flex-direction: column;
    }
    
    .ocdj-blog-empty-ctas .ocdj-btn-primary,
    .ocdj-blog-empty-ctas .ocdj-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .ocdj-blog-newsletter-ctas {
        flex-direction: column;
    }
}


/* ── BOUTONS GLOBAUX PREMIUM — override Bootstrap ── */

/* btn-primary → ink + gold text */
.btn-primary {
    background: #1A1814 !important;
    color: #E2C97E !important;
    border-color: #1A1814 !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.2s !important;
}
.btn-primary:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border-color: #C9A84C !important;
}

/* btn-secondary → ghost border gold */
.btn-secondary {
    background: transparent !important;
    color: #1A1814 !important;
    border: 1.5px solid #D4CFC2 !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}
.btn-secondary:hover {
    border-color: #C9A84C !important;
    color: #A07830 !important;
    background: transparent !important;
}

/* btn-success → gold */
.btn-success {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border-color: #C9A84C !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
}
.btn-success:hover {
    background: #A07830 !important;
    color: #fff !important;
    border-color: #A07830 !important;
}

/* btn-outline-success → ghost gold */
.btn-outline-success {
    background: transparent !important;
    color: #A07830 !important;
    border: 1.5px solid #C9A84C !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
}
.btn-outline-success:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
}

/* btn-warning → gold cohérent */
.btn-warning {
    background: #C9A84C !important;
    color: #1A1814 !important;
    border-color: #C9A84C !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
}

/* btn-dark → ink premium */
.btn-dark {
    background: #1A1814 !important;
    color: #E2C97E !important;
    border-color: #1A1814 !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
}
.btn-dark:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
}

/* btn-follow, btn-details → gold pale */
.btn-follow,
.btn-details {
    background: #F5EDCF !important;
    color: #A07830 !important;
    border: 1px solid rgba(201,168,76,0.4) !important;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 12px !important;
}
.btn-follow:hover,
.btn-details:hover {
    background: #C9A84C !important;
    color: #1A1814 !important;
}


/* ── TITRES SECTIONS PROFIL — Cormorant ── */
.profile-section-title,
.section-title,
[class*="profile"] h2,
[class*="profile"] h3,
[class*="section"] h2,
[class*="section"] h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
    color: #1A1814 !important;
    letter-spacing: -0.01em !important;
}

/* Corps de texte bio */
.bio-text,
[class*="bio"] p,
[class*="description"] p,
.profile-description {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    color: #2E2B25 !important;
    line-height: 1.7 !important;
}

/* ============================================================
   PATCH custom_theme.css
   À ajouter à la FIN de public/assets/custom_theme.css
   (ne pas écraser le fichier existant — append uniquement)

   Objectif : corriger les 3 points de l'audit sans toucher
   aux règles globales existantes du site.
   ============================================================ */


/* ----------------------------------------------------------
   A. TOKENS MANQUANTS dans :root
   Ajouter ces variables si elles n'existent pas déjà.
   --color-primary-dark : version foncée de l'or pour textes sur fond clair
   --color-ink          : noir chaud (si absent)
   --color-muted        : gris texte secondaire (si absent)
   ---------------------------------------------------------- */
:root {
  --color-primary-dark: #8b6914;   /* or foncé — textes sur fond clair */
  --color-ink:          #1a1814;   /* noir chaud marque */
  --color-muted:        #6b6b6b;   /* gris secondaire */
}


/* ----------------------------------------------------------
   B. CLASSES COULEURS MARQUE — scopées pour éviter
      tout effet de bord sur les autres pages
   ---------------------------------------------------------- */

/* Or marque — remplace text-warning dans les articles blog */
.text-ocdj-gold {
  color: var(--color-primary, #dbb56e) !important;
}

/* Bordeaux marque — remplace text-danger dans les articles blog */
.text-ocdj-red {
  color: #9b1b30 !important;
}


/* ----------------------------------------------------------
   C. STATS ARTICLE PRIX — neutralise text-primary bleu BS
      Scope : uniquement le bloc .blog-prix-stats
      (pas d'impact sur les autres usages de text-primary)
   ---------------------------------------------------------- */
.blog-prix-stats .text-primary,
.blog-prix-stats [class*="text-primary"],
.blog-prix-stats .h4,
.blog-prix-stats .h3,
.blog-prix-stats .display-6 {
  color: var(--color-primary, #dbb56e) !important;
}


/* ----------------------------------------------------------
   D. OVERRIDE text-warning / text-danger dans .blog-prix-dj-mariage
      Garantit la cohérence si du contenu Bootstrap non transformé
      se retrouve dans le scope (ex : migration partielle)
   ---------------------------------------------------------- */
.blog-prix-dj-mariage .text-warning,
.blog-prix-dj-mariage strong.text-warning,
.blog-prix-dj-mariage span.text-warning {
  color: var(--color-primary, #dbb56e) !important;
}

.blog-prix-dj-mariage .text-danger,
.blog-prix-dj-mariage strong.text-danger,
.blog-prix-dj-mariage span.text-danger {
  color: #9b1b30 !important;
}

/* Neutralise le bleu Bootstrap dans le scope article */
.blog-prix-dj-mariage .text-primary {
  color: var(--color-primary, #dbb56e) !important;
}


/* ----------------------------------------------------------
   E. BOUTON CTA article (si .btn-ocdj-gold non défini ailleurs)
   ---------------------------------------------------------- */
.btn-ocdj-gold {
  display: inline-block;
  background: var(--color-primary, #dbb56e);
  color: var(--color-ink, #1a1814);
  font-family: var(--font-sans, sans-serif);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s ease;
}
.btn-ocdj-gold:hover {
  opacity: 0.88;
  color: var(--color-ink, #1a1814);
  text-decoration: none;
}

/* ----------------------------------------------------------
   BLOG — Callouts réutilisables (maillage interne)
   ---------------------------------------------------------- */
.blog-callout {
  border: 1px solid rgba(219, 181, 110, 0.35);
  background: rgba(219, 181, 110, 0.10);
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  margin: 1.25rem 0;
}

.blog-callout-title {
  font-weight: 800;
  color: var(--color-ink, #1a1814);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
}

.blog-callout.is-tip {
  border-left: 4px solid var(--color-primary, #dbb56e);
}
