  <style>
        :root {
            --primary: #4f46e5;
            --primary-light: #6366f1;
            --primary-dark: #4338ca;
            --secondary: #7c3aed;
            --text: #1e293b;
            --text-light: #64748b;
            --bg: #f8fafc;
            --border: #e2e8f0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
        }
        
        #justimo-estimate-form {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-header h1 {
            font-size: 2.5rem;
            color: #0d3a5c;
            margin-bottom: 0.5rem;
        }
        
        .form-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        .form-container {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            position: relative;
        }
        
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .form-step.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
        }
        
        .form-control {
            width: 90%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            outline: none;
        }
        
        .form-control.invalid {
            border-color: #ef4444;
        }
        
        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary {
            background-color: #0d3a5c;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #2289bf;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: rgba(79, 70, 229, 0.05);
        }
        
        .form-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }
        
      .progress-bar {
            height: 6px;
            background-color: #2289bf;
            border-radius: 3px;
            margin-bottom: 2rem;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background-color: #0d3a5c;
            width: 0%;
            transition: width 0.5s ease;
        }
        
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
            gap: 0.5rem;
        }
        
        .step-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #2289bf;
            transition: all 0.3s ease;
        }
        
        .step-dot.active {
            background-color: #0d3a5c;
            transform: scale(1.2);
        }
        
        .checkbox-group, .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .checkbox-item, .radio-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkbox-item input, .radio-item input {
            width: auto;
        }
        
        .map-container {
            height: 400px; /* Increased height for better map visibility */
            background-color: #e2e8f0;
            border-radius: 0.5rem;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
        }
        
        .estimation-result {
            background-color: #f1f5f9;
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .estimation-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0.5rem 0;
        }
        
        .confidence-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .confidence-bar {
            height: 8px;
            border-radius: 4px;
            background-color: var(--border);
            flex-grow: 1;
            overflow: hidden;
        }
        
        .confidence-level {
            height: 100%;
            background-color: var(--primary);
            width: 0%;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            #justimo-estimate-form {
                padding: 1rem;
            }
            
            .form-header h1 {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 1.5rem;
            }
            
            .form-footer {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
            }
        }
/* 🔷 Bloc IA généré par GPT */
.gpt-synthese {
  background-color: #f7f9fc;
  border: 1px solid #d6e1ec;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #0d3a5c;
  line-height: 1.6;
}

.gpt-synthese h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0d3a5c;
  font-weight: 600;
}

.gpt-synthese p {
  margin: 0.5rem 0;
}

.gpt-synthese ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.gpt-synthese ul li {
  margin-bottom: 0.5rem;
}

.gpt-synthese strong {
  color: #003d66;
  font-weight: 600;
}

@media (max-width: 600px) {
  .gpt-synthese {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .gpt-synthese h3 {
    font-size: 1.2rem;
  }
}

    </style>

<style>
    img.responsive-logo {
  max-width: 100%;
  height: auto;
}
        /* Modifications CSS pour aligner le champ de recherche à droite */
.hero-text ul {
  padding-left: 2.5rem;
  margin-bottom: 1rem;
    margin-top: 1rem;
}

.hero-text li {
  padding-bottom: 0.5rem;
  line-height: 1.6;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-container {
    position: relative;
    min-width: 250px;
}
footer {
  width: 100%;
  margin: 0;
  padding: 2rem 0;
  background-color: #0d3a5c;
  color: white;
}
#search-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e8ecf0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

#search-input:focus {
    border-color: #3498db;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e8ecf0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

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

.autocomplete-item:last-child {
    border-bottom: none;
}
#search-input {
    width: 100%;
    padding: 15px 15px;
    border: 2px solid #0d3a5c;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}
/* Responsive - Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .search-container {
        width: 100%;
        max-width: 400px;
    }
    
    .logo-container {
        flex-direction: column;
        align-items: center;
    }
}
    </style>
<style>
        .estimation-widget {
            max-width: 600px;
            margin: 0 auto;
            padding: 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            font-family: 'Tahoma', Arial, sans-serif;
        }
        
        .widget-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .widget-title {
            color: #0d3a5c;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .widget-subtitle {
            color: #2289bf;
            font-size: 16px;
        }
        
        .step {
            display: none;
            animation: fadeIn 0.3s ease-in;
        }
        
        .step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #0d3a5c;
            font-weight: bold;
            font-size: 14px;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #2289bf;
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            background: white;
            cursor: pointer;
            box-sizing: border-box;
        }
        
        .form-select:focus {
            outline: none;
            border-color: #2289bf;
        }
        
        .btn-primary {
            background: #2289bf;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        
        .btn-primary:hover {
            background: #1a6b94;
        }
        
        .btn-secondary {
            background: #caa978;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            cursor: pointer;
            margin-right: 10px;
        }
        
        .btn-secondary:hover {
            background: #b8976a;
        }
        
        .dpe-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .dpe-item {
            text-align: center;
            padding: 10px;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .dpe-item:hover {
            transform: scale(1.05);
        }
        
        .dpe-item.selected {
            transform: scale(1.1);
            border: 3px solid #0d3a5c;
        }
        
        .dpe-A { background: #00a652; }
        .dpe-B { background: #4cb848; }
        .dpe-C { background: #8fc53e; }
        .dpe-D { background: #f7d000; }
        .dpe-E { background: #f39800; }
        .dpe-F { background: #ee5a24; }
        .dpe-G { background: #d63031; }
        
        .row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .col-half {
            flex: 1;
        }
        
        .suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 0 0 10px 10px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .suggestion-item {
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .suggestion-item:hover {
            background: #f5f5f5;
        }
        
        .address-container {
            position: relative;
        }
        
        .estimation-result {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            border: 2px solid #2289bf;
        }
        
        .estimation-title {
            color: #0d3a5c;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .price-range {
            font-size: 24px;
            color: #2289bf;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .price-detail {
            color: #666;
            font-size: 14px;
            margin-top: 10px;
        }
        
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #c3e6cb;
            text-align: center;
            margin-top: 20px;
        }
        
        .loading {
            text-align: center;
            padding: 20px;
            color: #2289bf;
        }
        
        .progress-bar {
            width: 100%;
            height: 4px;
            background: #e0e0e0;
            border-radius: 2px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: #2289bf;
            transition: width 0.3s ease;
        }
        
        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        
        .radio-item {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .radio-item input[type="radio"] {
            margin-right: 8px;
        }
        
        @media (max-width: 768px) {
            .estimation-widget {
                padding: 20px;
                margin: 10px;
            }
            
            .row {
                flex-direction: column;
            }
            
            .dpe-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        footer {
  width: 100%;
  margin: 0;
  padding: 2rem 0;
  background-color: #0d3a5c;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem;
}

.footer-section {
  flex: 1 1 200px;
  margin: 1rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: #092a45;
}

        .info-row {
            margin: 10px 0;
            font-size: 14px;
        }
        .agence-container a {
            text-decoration: none;
        }
        .agence-container a:hover {
            text-decoration: underline;
        }
        
        
         .search-widget {
      max-width: 600px;
      margin: 2rem auto;
      position: relative;
    }

    #search-input {
      width: 100%;
      padding: 1rem;
      font-size: 1.1rem;
      border: 2px solid #ccc;
      border-radius: 8px;
    }

    .autocomplete-results {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ccc;
      border-top: none;
      z-index: 9999;
      max-height: 300px;
      overflow-y: auto;
      border-radius: 0 0 8px 8px;
    }

    .autocomplete-item {
      padding: 0.8rem 1rem;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .autocomplete-item:hover {
      background: #f0f0f0;
    }

    @media (max-width: 600px) {
      #search-input {
        font-size: 1rem;
        padding: 0.8rem;
      }
    }
        .price-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
 
  border-radius: 50%;
}
    </style>
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .price-widget {
  
            border-radius: 10px;
            padding: 1rem;
            max-width: 100%;
            margin: 1rem auto;
            
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .price-widget::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
  background: #0d3a5c;
            border-radius: 50%;
        }

        .widget-header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .city-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            color:"0d3a5c";
            font-weight: 300;
        }

        .price-container {
  background: #caa978;            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            z-index: 2;
        }

        .price-range {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .price-min, .price-max {
            text-align: center;
            flex: 1;
        }

        .price-label {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-value {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .price-separator {
            width: 30px;
            height: 2px;
            background: rgba(255,255,255,0.5);
            margin: 0 1rem;
            border-radius: 1px;
        }

        .average-price {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .average-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .average-value {
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .currency {
            font-size: 0.8em;
            opacity: 0.9;
        }

        .data-source {
            text-align: center;
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 1rem;
            position: relative;
            z-index: 2;
        }

        .trend-indicator {
            display: inline-flex;
            align-items: center;
            margin-left: 0.5rem;
            font-size: 0.8rem;
        }

        .trend-up {
            color: #4ade80;
        }

        .trend-down {
            color: #f87171;
        }

        .trend-stable {
            color: #fbbf24;
        }

        .loading {
            text-align: center;
            padding: 2rem;
            opacity: 0.8;
        }

        .error {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fecaca;
        }

        @media (max-width: 480px) {
            .price-widget {
                margin: 1rem;
                padding: 1.5rem;
            }
            
            .city-name {
                font-size: 1.5rem;
            }
            
            .price-range {
                flex-direction: column;
                gap: 1rem;
            }
            
            .price-separator {
                width: 100%;
                height: 1px;
                margin: 0.5rem 0;
            }
            
            .average-value {
                font-size: 1.7rem;
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         
         
         .justimo-widget {
            font-family: Arial, sans-serif;
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .justimo-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 20px;
            text-align: center;
            color: #fff;
        }
        
        .justimo-header h2 {
            margin: 0 0 10px 0;
            font-size: 24px;
        }
        
        .justimo-header p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .justimo-content {
            padding: 20px;
        }
        
        .justimo-steps-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .justimo-step-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            font-size: 14px;
            font-weight: bold;
            color: #fff;
        }
        
        .justimo-step-dot.active {
            background-color: #667eea;
        }
        
        .justimo-step-dot:not(.active) {
            background-color: #ddd;
        }
        
        .justimo-form-group {
            margin-bottom: 15px;
        }
        
        .justimo-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .justimo-form-group input,
        .justimo-form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .justimo-button {
            background-color: #667eea;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
        }
        
        .justimo-button:hover {
            background-color: #5a6fd8;
        }
        
        .justimo-button.full-width {
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
        }
        
        .justimo-error {
            background-color: #fee;
            color: #c33;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #fcc;
        }
        
        .justimo-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .justimo-flex {
            display: flex;
            gap: 10px;
        }
        
        .justimo-flex-1 {
            flex: 1;
        }
        
        .justimo-dpe-buttons {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }
        
        .justimo-dpe-button {
            padding: 8px 12px;
            border: 2px solid #ddd;
            background: #fff;
            color: #333;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .justimo-dpe-button.active {
            border-color: #667eea;
            background-color: #667eea;
            color: #fff;
        }
        
        .justimo-radio-group {
            display: flex;
            gap: 20px;
        }
        
        .justimo-radio-option input {
            width: auto;
            margin-right: 5px;
        }
        
        .justimo-loading {
            text-align: center;
            padding: 40px;
        }
        
        .justimo-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .justimo-result {
            text-align: center;
            padding: 20px;
        }
        
        .justimo-estimation {
            font-size: 32px;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 20px;
            padding: 20px;
            border: 2px solid #667eea;
            border-radius: 8px;
            background-color: #f8f9ff;
        }
        
        .justimo-footer {
            text-align: center;
            padding: 10px;
            font-size: 12px;
            color: #666;
            border-top: 1px solid #eee;
        }
        
        .address-autocomplete {
            position: relative;
            flex: 1;
        }
        
        .address-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #fff;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 4px 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: 200px;
            overflow-y: auto;
        }
        
        .address-suggestion {
            padding: 10px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.2s;
        }
        
        .address-suggestion:hover {
            background-color: #f5f5f5;
        }
        
        .address-suggestion:last-child {
            border-bottom: none;
        }
        
        .hidden {
            display: none;
        }
        
        @media (max-width: 600px) {
            .justimo-grid-2 {
                grid-template-columns: 1fr;
            }
            
            .justimo-flex {
                flex-direction: column;
            }
            
            .justimo-dpe-buttons {
                justify-content: center;
            }
        }
         .wrapper {
  margin-right: auto; /* 1 */
  margin-left: auto; /* 1 */
  max-width: 1200px; /* 2 */
border-radius: 20px;
          
            color: white;
}
         
.p1 {
 
  border-radius: 20px;
  width: 1200px;
  max-width: 100%;
  max-height: 100%;
}
         
         .search-widget {
      max-width: 600px;
      margin: 0rem auto;
      position: relative;
    }

    #search-input {
      width: 100%;
      padding: 1rem;
      font-size: 1.1rem;
      border: 2px solid #2c3e50;
      border-radius: 10px;
    }

    .autocomplete-results {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ccc;
      border-top: none;
      z-index: 9999;
      max-height: 300px;
      overflow-y: auto;
      border-radius: 0 0 8px 8px;
    }

    .autocomplete-item {
      padding: 0.8rem 1rem;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .autocomplete-item:hover {
      background: #f0f0f0;
    }

    @media (max-width: 600px) {
      #search-input {
        font-size: 1rem;
        padding: 0.8rem;
      }
    }
            .hero {
  background: #ffffff;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
    </style>

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #0d3a5c;
            background-color: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
.footer-full {
  width: 100%;
  padding: 2rem 1rem;
  background-color: #0d3a5c; /* à ajuster selon ton design */
  color: white;
}
footer .container {
  max-width: 100%;
  padding: 0;
}
        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #2c5aa0;
            text-decoration: none;
        }

        .cta-header {
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        /* Hero Section */
        .hero {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  color: #333;
  padding: 15px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.cookie-banner button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background-color: #0078D7;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}


        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: #ffffff;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0d3a5c;
            margin-bottom: 1.5rem;
			 margin-top: 1.5rem;
            line-height: 1.2;
        }

        .hero-text .location {
            color: #1d89c0;
            font-weight: 600;
        }

        .hero-text p {
            font-size: 1.025rem;
            color: #5a6c7d;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #5a6c7d;
            font-weight: 500;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            background: #1d89c0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        /* Estimation Form */
        .estimation-form {
          
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            transform: translateY(-10px);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h2 {
            font-size: 1.8rem;
            color: #0d3a5c;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #34495e;
        }

        .form-group input{
width: 96%;
  padding: 15px;
  border: 2px solid #e8ecf0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
 }
        .form-group textarea {
            width: 96%;
            padding: 15px;
            border: 2px solid #e8ecf0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1d89c0;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* How it works */
        .how-it-works {
            padding: 80px 0;
            background: #f8fafc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0d3a5c;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #5a6c7d;
            max-width: 600px;
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1d89c0 0%, #1b3955 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .step h3 {
            font-size: 1.4rem;
            color: #0d3a5c;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .step p {
            color: #5a6c7d;
            line-height: 1.6;
        }

        /* Trust section */
        .trust {
            padding: 80px 0;
            background: white;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #667eea;
            transition: all 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .testimonial-text {
            font-style: italic;
            color: #5a6c7d;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: #0d3a5c;
        }

        .testimonial-location {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Partners section */
        .partners {
            padding: 80px 0;
  background: #0d3a5c;
            color: white;
        }

        .partners .section-header h2,
        .partners .section-header p {
            color: white;
        }

        .partner-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .partner-type {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .partner-type:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .partner-type h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .partner-type p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Footer */
       footer {
  width: 100%;
  margin: 0;
  padding: 0rem 20px;
  background-color: #0d3a5c; /* Couleur de fond du footer */
  color: white;
}


        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ecf0f1;
        }

        .footer-section p,
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #1d89c0;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 2rem;
            text-align: center;
            color: #95a5a6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 1.5rem;
				
            }

            .hero-features {
                justify-content: center;
                flex-wrap: wrap;
            }

            .estimation-form {
                padding: 2rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .steps {
                grid-template-columns: 1fr;
            }
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Success message */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #28a745;
            display: none;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #dc3545;
            display: none;
        }
        .justimo-header {
        width: 100%;
    max-width: 1200px;
    margin: 0 0 0 -20px;
            background: #c3cfe2;
      color: white;
      padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: visible;
      text-align: center;
    }

    .justimo-header h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
    }
         
          .justimo-header h1a {
      font-size: 28px;
             color: #0d3a5c;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .justimo-header p {
      font-size: 16px;
        color: #0d3a5c;
      opacity: 0.9;
      margin-bottom: 10px;
    }

    .justimo-header p:last-child {
      font-size: 14px;
      opacity: 0.8;
    }

    /* Contenu */
    .justimo-content {
      padding: 24px;
      background: #fff;
    }

    /* Indicateur d'étape */
    .justimo-steps {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 24px;
    }

    .justimo-step-item {
      display: flex;
      align-items: center;
    }

    .justimo-step-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e2e8f0;
      color: #64748b;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s;
    }

    .justimo-step-dot.active {
      background-color: #2289bf;
      color: white;
      transform: scale(1.1);
    }

    .justimo-step-dot.completed {
      background-color: #193a5c;
      color: white;
    }

    .justimo-step-line {
      height: 2px;
      width: 32px;
      background-color: #e2e8f0;
      margin: 0 4px;
    }

    .justimo-step-line.active {
      background-color: #193a5c;
    }

    /* Formulaires */
    .justimo-step {
      display: none;
      animation: fadeIn 0.4s ease;
    }

    .justimo-step.active {
      display: block;
    }

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

    .justimo-form-title {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 24px;
    }

    .justimo-form-group {
      margin-bottom: 16px;
    }

    .justimo-form-group label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #334155;
      margin-bottom: 6px;
    }

    .justimo-form-group input,
    .justimo-form-group select {
      width: 100%;
      padding: 12px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      font-size: 16px;
      transition: all 0.2s;
    }

    .justimo-form-group input:focus,
    .justimo-form-group select:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    .justimo-address-container {
      position: relative;
    }

    .justimo-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      max-height: 200px;
      overflow-y: auto;
      background: white;
      border: 1px solid #cbd5e1;
      border-top: none;
      border-radius: 0 0 6px 6px;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .justimo-suggestion-item {
      padding: 10px 12px;
      cursor: pointer;
      transition: background 0.2s;
      font-size: 14px;
    }

    .justimo-suggestion-item:hover {
      background: #f1f5f9;
    }

    .justimo-address-row {
      display: flex;
      gap: 8px;
    }

    .justimo-dpe-selector {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .justimo-dpe-item {
      padding: 8px 16px;
      border-radius: 6px;
      color: white;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s;
    }

    .justimo-dpe-item.selected {
      transform: scale(1.05);
      box-shadow: 0 0 0 2px white, 0 0 0 4px #3b82f6;
    }

    .justimo-dpe-a { background-color: #38a169; }
    .justimo-dpe-b { background-color: #84cc16; }
    .justimo-dpe-c { background-color: #eab308; color: #1e293b; }
    .justimo-dpe-d { background-color: #d97706; }
    .justimo-dpe-e { background-color: #ea580c; }
    .justimo-dpe-f { background-color: #dc2626; }
    .justimo-dpe-g { background-color: #991b1b; }
    .justimo-dpe-unknown { background-color: #94a3b8; color: #1e293b; }

    .justimo-radio-group {
      display: flex;
      gap: 16px;
    }

    .justimo-radio-option {
      flex: 1;
      position: relative;
    }

    .justimo-radio-option input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }

    .justimo-radio-option label {
      display: block;
      text-align: center;
      padding: 12px;
      background: #f1f5f9;
      color: #475569;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s;
    }

    .justimo-radio-option input:checked + label {
      background-color: #2289bf;
      color: white;
    }

    /* Boutons */
    .justimo-buttons {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .justimo-button {
      padding: 14px 24px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.2s;
      text-align: center;
    }

    .justimo-button-primary {
      background-color: #2289bf;
      color: white;
      flex: 1;
    }

    .justimo-button-primary:hover {
      background-color: #0f6c2e;
    }

    .justimo-button-outline {
      background-color: transparent;
      border: 1px solid #94a3b8;
      color: #475569;
    }

    .justimo-button-outline:hover {
      background-color: #f1f5f9;
    }

    /* Résultat */
    .justimo-result {
      text-align: center;
      padding: 32px 16px;
    }

    .justimo-result h3 {
      font-size: 24px;
      color: #1e293b;
      margin-bottom: 24px;
    }

    .justimo-estimation-value {
      font-size: 32px;
      font-weight: 700;
      color: #2289bf;
      margin-bottom: 16px;
    }

    .justimo-price-per-sqm {
      font-size: 18px;
      margin-bottom: 24px;
      color: #475569;
    }

    /* Loading */
    .justimo-loading {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 48px 0;
    }

    .justimo-spinner {
      width: 40px;
      height: 40px;
      border: 4px solid rgba(59, 130, 246, 0.1);
      border-radius: 50%;
      border-top-color: #2289bf;
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Erreur */
    .justimo-error {
      background-color: #fee2e2;
      border-left: 4px solid #dc2626;
      padding: 12px 16px;
      margin-bottom: 16px;
      border-radius: 4px;
      font-size: 14px;
      color: #b91c1c;
    }

    /* Footer */
    .justimo-footer {
      background: #0d3a5c;
          width: 100%;

      padding: 16px;
      text-align: center;
      color: #64748b;
      font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .justimo-header h1 {
        font-size: 24px;
      }
      
      .justimo-header p {
        font-size: 14px;
      }
      
      .justimo-content {
        padding: 16px;
      }
      
      .justimo-form-title {
        font-size: 20px;
      }
      
      .justimo-estimation-value {
        font-size: 28px;
      }
    }
.search-widget {
      max-width: 600px;
      margin: 0rem auto;
      position: relative;
    }

   #search-input {
    width: 90%;
    padding: 15px 15px;
    border: 2px solid #0d3a5c;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
   }
    .autocomplete-results {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ccc;
      border-top: none;
      z-index: 9999;
      max-height: 300px;
      overflow-y: auto;
      border-radius: 0 0 8px 8px;
    }

    .autocomplete-item {
      padding: 0.8rem 1rem;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .autocomplete-item:hover {
      background: #f0f0f0;
    }

    @media (max-width: 600px) {
      #search-input {
        font-size: 1rem;
        padding: 0.8rem;
      }
    }
  </style>