/* ========================================
   VARIABLES & BASE
======================================== */

:root {
    --gold: #c9a84c;
    --gold-light: #e0c068;
}

/* ========================================
   BREADCRUMB MOBILE
======================================== */

.ct-breadcrumb-mobile {
    display: none;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.65rem 0;
    margin-top: 10px;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ct-breadcrumb a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ct-breadcrumb a:hover { color: #c9a84c; }

.ct-breadcrumb span:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.ct-breadcrumb-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.8rem;
}

.desktop-only { display: flex; }

@media (max-width: 767px) {
    .ct-breadcrumb-mobile { display: block; }
    .desktop-only { display: none !important; }
}

/* ========================================
   HERO
======================================== */

.ct-hero {
    position: relative;
    padding: 2.5rem 0 2rem;
    background: #111111;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at left, rgba(201,168,76,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.ct-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ct-hero-breadcrumb {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ct-hero-body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ct-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.ct-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ct-hero-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.ct-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.ct-hero-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 0;
    max-width: 650px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .ct-hero { padding: 2rem 0 1.75rem; }
    .ct-hero-title { font-size: 1.9rem; }
    .ct-hero-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .ct-breadcrumb a {font-size: 0.78rem;}
    .ct-breadcrumb span:last-child {font-size: 0.78rem;}
}

@media (max-width: 767px) {
    .ct-hero { padding: 1.5rem 0; }
    .ct-hero-body { gap: 1.1rem; }
    .ct-hero-title { font-size: 1.6rem; }
    .ct-hero-icon { width: 50px; height: 50px; font-size: 1.2rem; border-radius: 12px; }
    .ct-hero-subtitle { font-size: 0.82rem; }
    .ct-breadcrumb a {font-size: 0.75rem;}
    .ct-breadcrumb span:last-child {font-size: 0.75rem;}
}

@media (max-width: 575px) {
    .ct-hero { padding: 1.25rem 0; }
    .ct-hero-title { font-size: 1.4rem; }
    .ct-hero-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 10px; }
    .ct-breadcrumb a {font-size: 0.7rem;}
    .ct-breadcrumb span:last-child {font-size: 0.7rem;}
}

/* ========================================
   SECTION CONTACT
======================================== */

.ct-section {
    padding: 4rem 0;
    background: #0d0d0d;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

/* ========================================
   FORMULAIRE
======================================== */

.ct-form-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ct-form-wrapper {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 14px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ct-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ct-form-header-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ct-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ct-form-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.ct-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.ct-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.ct-form-group-full { grid-column: 1 / -1; }

.ct-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.ct-label i { color: #c9a84c; font-size: 0.72rem; }
.ct-required { color: #c9a84c; }

.ct-input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
    appearance: none;
}

.ct-input::placeholder { color: rgba(255,255,255,0.2); }

.ct-input:focus {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.04);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.ct-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.ct-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.ct-textarea { resize: vertical; min-height: 140px; }

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ct-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ========================================
   CARTE
======================================== */

.ct-map-wrapper {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 14px;
    overflow: hidden;
}

.ct-map-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ct-map-header i { color: #c9a84c; font-size: 0.9rem; }

.ct-map-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ct-map-container {
    height: 300px;
    position: relative;
}

.ct-map-container iframe { display: block; }

/* ========================================
   SIDEBAR
======================================== */

.ct-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 90px;
}

.ct-info-card {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct-info-card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ct-info-card-title i { color: #c9a84c; font-size: 0.9rem; }

/* Info items */
.ct-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.ct-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ct-info-content h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.3rem;
}

.ct-info-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.ct-info-content p a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.ct-info-content p a:hover { color: #e0c068; }

/* Réseaux sociaux */
.ct-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ct-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.ct-social-link:hover { transform: translateY(-3px); }
.ct-social-link.facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.ct-social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; color: #fff; }
.ct-social-link.youtube:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.ct-social-link.tiktok:hover { background: #000; border-color: #69c9d0; color: #fff; }
.ct-social-link.twitter:hover { background: #000; border-color: #000; color: #fff; }
.ct-social-link.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* Important */
.ct-info-card-highlight {
    border-color: rgba(201,168,76,0.2);
    border-top: 3px solid #c9a84c;
}

.ct-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.1rem;
}

.ct-highlight-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 0;
}

/* Logo */
.ct-logo-card {
    align-items: center;
    padding: 1.25rem;
}

.ct-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ct-logo-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.ct-logo-image:hover { opacity: 1; }

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1199px) {
    .ct-grid { grid-template-columns: 1fr 300px; gap: 2rem; }
}

@media (max-width: 991px) {
    .ct-section { padding: 3rem 0; }
    .ct-grid { grid-template-columns: 1fr 280px; gap: 1.75rem; }
    .ct-sidebar { position: static; }
    .ct-form-wrapper { padding: 2rem; }
}

@media (max-width: 767px) {
    .ct-section { padding: 2rem 0; }
    .ct-grid { grid-template-columns: 1fr; }
    .ct-sidebar { position: static; }
    .ct-form-wrapper { padding: 1.5rem; }
    .ct-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .ct-section { padding: 1.5rem 0; }
    .ct-form-wrapper { padding: 1.25rem; border-radius: 10px; }
    .ct-map-container { height: 220px; }
}

/* ========================================
   MODALE
======================================== */

.ct-modal-content {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    overflow: hidden;
}

.ct-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ct-modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 2px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.8rem;
    animation: ct-modal-pop 0.4s ease;
}

@keyframes ct-modal-pop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.ct-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ct-modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.ct-modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.ct-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ct-modal-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 0;
}

.ct-modal-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin: 0 auto;
}

.ct-modal-info i { color: #c9a84c; font-size: 0.75rem; }

.ct-modal-footer {
    padding: 1.25rem 2rem 2rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ct-modal-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ct-modal-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ========================================
   MESSAGE FORMULAIRE
======================================== */

#formMessage {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
}

#formMessage.success {
    background: rgba(40,167,69,0.1);
    border: 1px solid rgba(40,167,69,0.25);
    color: #5cb85c;
}

#formMessage.error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.25);
    color: #dc3545;
}