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

body {
    font-family: 'Poppins', sans-serif;
}

/* Styles des titres */
.section-title, 
.main-title, 
.contact-title,
h1, h2 {
    font-family: 'Antic Didone', serif;
}

/* Styles spécifiques pour les sous-titres */
.section-subtitle,
.section-category,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Styles pour le texte normal */
p, 
.presentation-text, 
.contact-description,
.property-location,
.service-description,
.detail-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Styles pour les boutons et liens */
.btn-savoir-plus,
.btn-voir,
.view-button,
.btn-submit {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

header {
    padding: 20px;
    background-color: white;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.search-icon, .menu-burger {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.logo {
    height: 75.9px;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Pour rendre le header responsive */
@media (max-width: 768px) {
    .logo {
        height: 50.6px;
    }
    
    .search-icon, .menu-burger {
        font-size: 20px;
    }
}

/* Section Présentation */
.presentation {
    padding: 80px 0;
    background-color: #fff;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    position: relative;
}

.presentation-image {
    flex: 1;
    position: relative;
}

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

.presentation-content {
    flex: 1;
    padding: 20px;
    position: relative;
}

.section-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
}

.presentation-text {
    color: #666;
    line-height: 1.6;
}

.presentation-text p {
    margin-bottom: 20px;
}

.btn-savoir-plus {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-savoir-plus:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 968px) {
    .presentation-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .presentation-image {
        margin-bottom: 30px;
    }

    .presentation-image img {
        height: 300px;
    }
}

/* Section Coups de Coeur */
.featured-properties {
    padding: 80px 0;
    background-color: #fff;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-category {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    width: 100px;
    height: 2px;
    background-color: #333;
    margin-top: 30px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.property-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #2c5c74;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;
}

.property-tag.secondary {
    top: 60px;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.view-button {
    padding: 12px 24px;
    background-color: white;
    border: none;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-button:hover {
    background-color: #2c5c74;
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .section-title {
        font-size: 32px;
    }
}

.property-details {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-left: 40px;
    padding-right: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 16px;
}

.detail-item i {
    color: #2c5c74;
    font-size: 18px;
}

/* Section Services */
.services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* En-tête de la section */
.services .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

/* Grille des services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.service-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

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

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .service-card {
        height: 250px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: #2c5c74;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Style des boutons VOIR + dans les cartes de services */
.service-content .btn-voir {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-content .btn-voir:hover {
    background-color: white;
    color: #333;
    transform: translateY(-2px);
}

/* Style du titre dans les cartes de services */
.service-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Section Contact */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item i {
    font-size: 20px;
    color: #333;
}

.contact-item a, .contact-item address {
    color: #333;
    text-decoration: none;
    font-style: normal;
}

/* Formulaire */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-bottom-color: #333;
}

/* Style pour le groupe de la case à cocher */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: auto;
    height: auto;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.required-fields {
    color: #666;
    font-size: 14px;
    margin: 20px 0;
}

.legal-text {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
    margin: 30px 0;
}

.legal-text p {
    margin-bottom: 10px;
}

.btn-submit {
    background-color: #333;
    color: white;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

/* Responsive Contact */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer */
.footer {
    padding: 20px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.separator {
    color: #333;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .separator {
        display: none;
    }
}

.menu-burger {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -50px;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 200px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
    margin-top: 10px;
}

.menu-burger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(238, 238, 238, 0.5);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(245, 245, 245, 0.5);
    color: #000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 53px;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}

/* Styles pour la page Services */
.page-header {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: white;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.7);
}

.header-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}

.main-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 2px;
}

.header-description {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }

    .main-title {
        font-size: 36px;
    }

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

.services-detailed {
    width: 100%;
    padding: 0;
}

.services-detailed .services-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.services-detailed .services-grid {
    display: flex;
    width: 100%;
    gap: 0;
}

.services-detailed .service-card {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.services-detailed .service-image {
    width: 100%;
    height: 100%;
}

.services-detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .services-detailed .services-grid {
        flex-direction: column;
    }
    
    .services-detailed .service-card {
        height: 300px;
    }
}

/* Styles pour le formulaire d'estimation */
.estimation-form {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group select[multiple] {
    height: 120px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background-color: #e9ecef;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2c5c74;
}

.checkbox-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.btn-submit {
    margin-top: 40px;
    padding: 15px 30px;
    background-color: #2c5c74;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a3f4f;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Styles pour la page Vente */
.filters-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.filter-group select {
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
    background-color: white;
    cursor: pointer;
}

.properties-section {
    padding: 80px 0;
}

.properties-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.properties-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.property-info {
    padding: 20px;
    background-color: white;
    border: 1px solid #eee;
}

.property-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.property-location {
    color: #666;
    margin-bottom: 10px;
}

.property-price {
    font-size: 24px;
    font-weight: bold;
    color: #2c5c74;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        width: 100%;
    }
}

/* Styles pour la page À propos */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* Section Valeurs */
.values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #2c5c74;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Style de la section équipe mise à jour */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.profile-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin-left: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.profile-content {
    padding: 20px 0;
}

.profile-header {
    margin-bottom: 30px;
}

.profile-header h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.profile-role {
    font-size: 18px;
    color: #2c5c74;
    font-weight: 500;
}

.profile-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-profile {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .profile-image {
        margin: 0 auto;
    }
}

/* Styles pour les cartes de services */
.service-card .service-image {
    position: relative;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transition: filter 0.3s ease;
}

.service-card .service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-card:hover .service-image img {
    filter: blur(1px);
}

.property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Styles du carrousel */
.property-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f5f5;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 92, 116, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: rgba(44, 92, 116, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button i {
    color: white;
    font-size: 24px;
}

/* Styles de la description */
.property-description {
    padding: 60px 0;
    background-color: white;
}

.description-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.property-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.property-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #2c5c74;
    margin-left: auto;
}

.description-content {
    color: #666;
    line-height: 1.8;
}

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

/* Styles de la section contact */
.property-contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.agent-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.agent-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details {
    text-align: left;
}

.agent-details h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #333;
}

.agent-role {
    color: #666;
    margin-bottom: 15px;
}

.agent-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: #2c5c74;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a3f4f;
}

/* Responsive */
@media (max-width: 768px) {
    .property-carousel {
        height: 400px;
    }

    .property-details {
        flex-direction: column;
        gap: 15px;
    }

    .price {
        margin-left: 0;
    }

    .agent-info {
        flex-direction: column;
        text-align: center;
    }

    .agent-details {
        text-align: center;
    }
}

/* Styles pour les informations techniques */
.technical-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.technical-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.dpe-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dpe-letter {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #2c5c74;
    color: white;
    font-weight: bold;
}

.dpe-number {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        text-align: center;
    }
    
    .dpe-value {
        justify-content: center;
    }
}

.dpe-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dpe-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

/* Style du bouton retour */
.back-button {
    position: fixed;
    top: 120px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #2c5c74;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 1;
}

.back-button i {
    font-size: 16px;
}

.back-button:hover {
    background-color: #1a3f4f;
    transform: translateX(-5px);
}

/* Animation de scroll */
.back-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .back-button {
        top: 80px;
        left: 20px;
        padding: 10px 16px;
    }
}

/* Style de la section hero */
.hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Media Queries pour la responsivité */
@media (max-width: 768px) {
    .hero {
        height: 45vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Style pour la section présentation service */
.service-presentation {
    padding: 80px 0;
    background-color: #fff;
}

.service-presentation .presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-presentation .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-presentation .title-line {
    width: 80px;
    height: 3px;
    background-color: #2c5c74;
    margin: 20px auto;
}

.service-presentation .presentation-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-presentation .presentation-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

.service-presentation .highlight-text {
    font-size: 24px;
    color: #2c5c74;
    margin-bottom: 30px;
    font-weight: 500;
}

.service-presentation .cta-text {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    color: #333;
}

.service-presentation .presentation-image {
    flex: 1;
}

.service-presentation .presentation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-presentation .presentation-content {
        flex-direction: column;
    }

    .service-presentation .presentation-text {
        text-align: center;
    }

    .service-presentation .presentation-image img {
        height: 300px;
    }
}

/* Améliorations du style du formulaire d'estimation */
.styled-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-top: 10px;
    font-size: 16px;
}

.form-group label {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    transition: border-color 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2c5c74;
    outline: none;
    background-color: white;
}

.form-group input::placeholder {
    color: #aaa;
}

.checkbox-grid {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.checkbox-item {
    padding: 8px;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.checkbox-item:hover {
    background-color: #fff;
}

.form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.required-fields {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.btn-submit {
    padding: 16px 40px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .styled-form {
        padding: 20px;
    }

    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn-submit {
        width: 100%;
    }
}

.form-group input[name="dateTravaux"]::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* Améliorations de la section contact */
.enhanced-contact {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.enhanced-contact .contact-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c5c74;
}

.enhanced-contact .contact-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    line-height: 1.6;
}

.enhanced-contact .contact-description p {
    margin-bottom: 20px;
    font-size: 16px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 16px;
}

.expertise-list li i {
    color: #2c5c74;
    font-size: 18px;
}

.enhanced-contact .agent-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.enhanced-contact .agent-expertise {
    color: #2c5c74;
    font-weight: 500;
    margin: 5px 0 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-list {
        grid-template-columns: 1fr;
    }

    .enhanced-contact .contact-description {
        padding: 0 20px;
    }
}

.enhanced-contact .contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Ajustement de la section contact */
.contact-header {
    max-width: 1000px;  /* Même largeur que le formulaire */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-titles {
    margin-bottom: 40px;
}

.enhanced-contact .contact-title {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c5c74;
}

.enhanced-contact .contact-subtitle {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.enhanced-contact .agent-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

.enhanced-contact .agent-photo {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.enhanced-contact .agent-details {
    text-align: left;
}

.enhanced-contact .agent-details h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .enhanced-contact .agent-info {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .enhanced-contact .agent-details {
        text-align: center;
    }
}

/* Section Hero pour services-location */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(2px);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-content h1 {
    font-family: 'Antic Didone', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    position: relative;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .subtitle {
        font-size: 1.2rem;
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Section Services de la page d'accueil uniquement */
.home-services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.home-services .services-container {
    width: 100%;
    padding: 0 40px;
}

.home-services .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.home-services .services-grid {
    display: flex;
    width: 100%;
    gap: 30px;
}

.home-services .service-card {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.home-services .service-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-services .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-services .service-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
}

.home-services .service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.home-services .service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.home-services .service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-services .btn-voir {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.home-services .btn-voir:hover {
    background-color: white;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .home-services .services-container {
        padding: 0 20px;
    }
    
    .home-services .services-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .home-services .service-card {
        height: 300px;
    }
}

/* Section Services de la page d'accueil uniquement */
.featured-properties .services-grid {
    display: flex;
    width: 100%;
    gap: 30px;
    padding: 0 40px;
}

.featured-properties .service-card {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
    max-width: calc(33.33% - 20px);
}

/* Responsive */
@media (max-width: 768px) {
    .featured-properties .services-grid {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .featured-properties .service-card {
        max-width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
}

/* Style spécifique pour la section services de la page d'accueil */
.featured-properties .featured-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.featured-properties .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.services-detailed {
    width: 100%;
    padding: 0;
}

.services-detailed .services-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.services-detailed .services-grid {
    display: flex;
    width: 100%;
    gap: 0;
}

.services-detailed .service-card {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.services-detailed .service-image {
    width: 100%;
    height: 100%;
}

.services-detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Services Style */
.services-section {
    padding: 80px 20px;
    text-align: center;
}

.services-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Antic Didone', serif;
}

.service-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transition: filter 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.service-overlay h3 {
    color: white;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hover Effects */
.service-item:hover img {
    filter: blur(1px);
}

.service-item:hover .service-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        height: 250px;
    }
    
    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
} 