/* ==========================================================================
   Contact Page - Conciergerie des Hauts de Provence
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header (repris de services.css)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 18, 80, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 97, 0.1);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo img {
    height: 90px;
    width: auto;
}

.header-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #C9A861;
}

.btn-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #C9A861;
    color: #001250;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-header-phone:hover {
    background: #DFC07A;
    color: #001250;
}

.btn-header-phone svg {
    width: 16px;
    height: 16px;
}

/* --------------------------------------------------------------------------
   Contact Hero
   -------------------------------------------------------------------------- */
.contact-hero {
    background: #001250;
    padding: 10rem 0 4rem;
    text-align: center;
}

.contact-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: #C9A861;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.contact-hero__subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    background: #fff;
    padding: 5rem 0;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 0;
}

.form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #001250;
    margin: 0 0 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    margin: 0 0 2rem;
}

/* Form Styles */
.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #001250;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 1rem 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #001250;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #fff;
    border-color: #C9A861;
    box-shadow: 0 0 0 3px rgba(201, 168, 97, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

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

/* Radio Cards */
.form-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-check-card {
    flex: 1;
    min-width: 140px;
    cursor: pointer;
}

.form-check-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-check-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.form-check-card__content svg {
    width: 32px;
    height: 32px;
    stroke: #001250;
    transition: stroke 0.3s ease;
}

.form-check-card__content span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #001250;
}

.form-check-card input:checked + .form-check-card__content {
    background: #001250;
    border-color: #001250;
}

.form-check-card input:checked + .form-check-card__content svg {
    stroke: #C9A861;
}

.form-check-card input:checked + .form-check-card__content span {
    color: #fff;
}

.form-check-card:hover .form-check-card__content {
    border-color: #C9A861;
}

/* Checkbox - utilise les styles Bootstrap par défaut */
.form-check-input {
    border: 2px solid #001250;
    border-radius: 0;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #001250;
    border-color: #001250;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(201, 168, 97, 0.2);
}

.form-check-label {
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
}

.form-check-label a {
    color: #C9A861;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #001250;
    background: #C9A861;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit-form:hover {
    background: #DFC07A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 97, 0.3);
}

.btn-submit-form svg {
    width: 20px;
    height: 20px;
}

/* --------------------------------------------------------------------------
   Contact Info
   -------------------------------------------------------------------------- */
.contact-info {
    background: #001250;
    padding: 2.5rem;
    height: 100%;
}

.info-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #C9A861;
    margin: 0 0 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-item__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 97, 0.1);
    border: 1px solid rgba(201, 168, 97, 0.2);
}

.info-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: #C9A861;
}

.info-item__content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.5rem;
}

.info-item__content a,
.info-item__content address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-decoration: none;
    line-height: 1.6;
}

.info-item__content a:hover {
    color: #C9A861;
}

/* Associates */
.info-associates {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-associates h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1rem;
}

.associates-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.associate {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
}

.associate svg {
    width: 20px;
    height: 20px;
    stroke: #C9A861;
}

/* Hours */
.info-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.5rem;
}

.info-hours p {
    font-size: 1rem;
    color: #C9A861;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Map Section
   -------------------------------------------------------------------------- */
.map-section {
    position: relative;
    background: #001250;
}

.map-container {
    height: 450px;
    filter: grayscale(30%) contrast(1.1);
}

.map-container iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    pointer-events: none;
}

.map-card {
    display: inline-block;
    background: #001250;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(201, 168, 97, 0.3);
    pointer-events: auto;
}

.map-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #C9A861;
    margin: 0 0 0.5rem;
}

.map-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A861;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.btn-directions:hover {
    color: #DFC07A;
}

.btn-directions svg {
    width: 16px;
    height: 16px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #001250;
    padding: 3rem 0;
	padding-bottom: 120px;
    border-top: 1px solid rgba(201, 168, 97, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-links {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C9A861;
}

.footer-links span {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 5rem;
    }
}

@media (max-width: 576px) {
    .form-check-card {
        min-width: 100%;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .map-card {
        margin: 0 1rem;
    }
}
