.contact-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-container h2 {
  text-align: center;
  color: #007b5e;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 15px;
}

form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: #007b5e;
  box-shadow: 0 0 4px rgba(0, 123, 94, 0.3);
}

.btn-send {
  width: 100%;
  background: #007b5e;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-send:hover {
  background: #009970;
}

/* =========== CSS MAHAKASIKA NY REPONSE NY NOTIFICATION DES CONTACT ==================*/
		.notification-container_ctc {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .notification-header_ctc {
            background: #3498db;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .badge_ctc {
            background: #e74c3c;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            margin-left: 10px;
        }
        
        .message-card_ctc {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 15px;
            transition: all 0.3s;
        }
        
        .message-card_ctc:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .message-card_ctc.urgente {
            border-left: 4px solid #e74c3c;
        }
        
        .message-card_ctc.haute {
            border-left: 4px solid #e67e22;
        }
        
        .message-card_ctc.normale {
            border-left: 4px solid #3498db;
        }
        
        .message-card_ctc.basse {
            border-left: 4px solid #95a5a6;
        }
        
        .message-header_ctc {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .message-info_ctc {
            flex-grow: 1;
        }
        
        .message-actions_ctc {
            display: flex;
            gap: 10px;
        }
        
        .btn_ctc {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary_ctc {
            background: #3498db;
            color: white;
        }
        
        .btn-success_ctc {
            background: #27ae60;
            color: white;
        }
        
        .btn-warning_ctc {
            background: #f39c12;
            color: white;
        }
        
        .priority-badge_ctc {
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            color: white;
            margin-left: 10px;
        }
        
        .priority-urgente_ctc { background: #e74c3c; }
        .priority-haute_ctc { background: #e67e22; }
        .priority-normale_ctc { background: #3498db; }
        .priority-basse_ctc { background: #95a5a6; }
        
        /* Modal */
        .modal_ctc {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .modal-content_ctc {
            background-color: white;
            margin: 5% auto;
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .close_ctc {
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .form-group_ctc {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            resize: vertical;
            min-height: 150px;
        }
        
        .empty-state_ctc {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
        }

/* =========== CSS MAHAKASIKA NY REPONSE NY NOTIFICATION DES CONTACT ==================*/